Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 months 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 (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-29T21:34:52.000Z (6 months ago)
- Last Synced: 2024-06-22T04:39:17.480Z (4 months 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
[![Discord server invite](https://img.shields.io/discord/881118111967883295?color=blue&label=discord)](https://discord.gg/nextcord)
[![PyPI version info](https://img.shields.io/pypi/v/nextcord-ext-help-commands.svg)](https://pypi.python.org/pypi/nextcord-ext-help-commands)
[![PyPI supported Python versions](https://img.shields.io/pypi/pyversions/nextcord.svg)](https://pypi.python.org/pypi/nextcord)
[![Nextcord-ext-help-commands Documentation](https://img.shields.io/readthedocs/nextcord-ext-help-commands.svg)](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_commandsintents = nextcord.Intents.default()
intents.message_content = Truebot = 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