Skip to content

A nextcord extension for a collection of help command implementations

License

Notifications You must be signed in to change notification settings

DenverCoderOne/nextcord-ext-help-commands

 
 

Repository files navigation

nextcord-ext-help-commands

Discord server invite PyPI version info PyPI supported Python versions Nextcord-ext-help-commands Documentation

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

Then install the extension by running one of the following commands:

# 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.

# 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

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

License

Copyright (c) 2022-Present The Nextcord Developers

About

A nextcord extension for a collection of help command implementations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.6%
  • Shell 0.4%