https://github.com/nextcord/nextcord-ext-help-commands
A Nextcord extension for pre-built custom help commands for prefix commands and slash commands.
https://github.com/nextcord/nextcord-ext-help-commands
discord discord-bot example extension hacktoberfest menus nextcord nextcord-ext paginated
Last synced: about 1 year ago
JSON representation
A Nextcord extension for pre-built custom help commands for prefix commands and slash commands.
- Host: GitHub
- URL: https://github.com/nextcord/nextcord-ext-help-commands
- Owner: nextcord
- License: mit
- Created: 2022-07-03T17:50:03.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-03-03T19:54:30.000Z (over 1 year ago)
- Last Synced: 2025-04-04T01:33:21.850Z (over 1 year ago)
- Topics: discord, discord-bot, example, extension, hacktoberfest, menus, nextcord, nextcord-ext, paginated
- Language: Python
- Homepage:
- Size: 55.7 KB
- Stars: 10
- Watchers: 0
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# nextcord-ext-help-commands
[](https://discord.gg/nextcord)
[](https://pypi.python.org/pypi/nextcord-ext-help-commands)
[](https://pypi.python.org/pypi/nextcord)
[](https://nextcord-ext-help-commands.readthedocs.io)
A Nextcord extension for pre-built custom help commands for prefix commands and slash commands.
## Installing
### Requirements
**Python 3.8 or higher is required**
It is necessary to first install [Nextcord](https://github.com/nextcord/nextcord)
Then install the extension by running one of the following commands:
```py
# Linux/macOS
python3 -m pip install -U nextcord-ext-help-commands
# Windows
py -3 -m pip install -U nextcord-ext-help-commands
```
To make use of pagination help commands, you must also install [nextcord-ext-menus](https://github.com/nextcord/nextcord-ext-menus).
```py
# Linux/macOS
python3 -m pip install -U "nextcord-ext-help-commands[menus]"
# Windows
py -3 -m pip install -U nextcord-ext-help-commands[menus]
```
## Basic Usage
```py
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")
```
## Links
- [Documentation](https://nextcord-ext-help-commands.readthedocs.io/en/latest/)
- [Official Discord server](https://discord.gg/nextcord)
## License
Copyright (c) 2022-Present The Nextcord Developers