Skip to content

PescadoGames/discord-rich-help.py

Repository files navigation

discord-rich-help.py

PyPI version info PyPI supported Python versions

An extension which makes a rich-help command for discord.py

Key Features

  • Supports both message and slash commands.

Installing

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

Bot Example

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

Links