Documentation for nextcord-ext-help-commands#

Discord server invite PyPI version info PyPI supported Python versions

A Nextcord extension for pre-built custom help commands for prefix commands and slash commands.

Installing#

pip install -U nextcord-ext-help-commands

To use pagination help commands:

pip install -U nextcord-ext-help-commands[menus]

Basic usage#

from nextcord.ext import commands
from nextcord.ext import help_commands

intents = nextcord.Intents.default()
intents.message_content = True

bot = commands.Bot(
   command_prefix="$",
   intents=intents,
   help_command=help_commands.PaginatedHelpCommand(),
)

bot.run("token")

Contents#

License#

Copyright (c) 2022-Present The Nextcord Developers