-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Awayume edited this page Apr 23, 2023
·
2 revisions
discord-rich-help.py is an extension which makes a rich-help command for discord.py
- Supports both message and slash commands.
Python 3.8 or higher is required
# Linux/MacOS
python3 -m pip install -U discord-rich-help.py
# Windows
py -3 -m pip install -U discord-rich-help.py
import discord
from discord.ext import commands
from discord_rich_help import RichHelpCommand
intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix='?', intents=intents, help_command=RichHelpCommand())
bot.run('token')
Copyright (c) 2023 PescadoGames. All Rights Reserved.