Metadata-Version: 2.1
Name: nextcord-ext-help-commands
Version: 0.0.1
Summary: An extension module for pre-built custom help commands
Home-page: https://github.com/nextcord/nextcord-ext-help-commands
Author: Nextcord Developers
License: MIT
Project-URL: Bug Tracker, https://github.com/nextcord/nextcord-ext-help-commands/issues
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
Provides-Extra: docs
Provides-Extra: menus
License-File: LICENSE

# nextcord-ext-help-commands

[![Discord server invite](https://img.shields.io/discord/881118111967883295?color=blue&label=discord)](https://discord.gg/ZebatWssCB)
[![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_commands

bot = commands.Bot(command_prefix="$", 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/ZebatWssCB)

## License

Copyright (c) 2022-Present The Nextcord Developers
