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')