Skip to content
Awayume edited this page Apr 23, 2023 · 2 revisions

Welcome to the discord-rich-help.py wiki!

PyPI version info PyPI supported Python versions

discord-rich-help.py is 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

Clone this wiki locally