This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from discord.ext import commands | |
from discord import app_commands | |
import discord | |
intents = discord.Intents.default() | |
intents.message_content = True # Ignore this line if you're not using prefix commands. | |
# You could use a client here instead, if you don't want to use prefix/hybrid commands. | |
bot = commands.Bot(intents=intents, command_prefix="!") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from discord.ext import commands | |
import discord | |
import asyncio | |
__all__ = ("Paginator",) | |
class Paginator: | |
def __init__( | |
self, |