# Справка по классам команд

Это классы, которые вы можете использовать или создавать подклассы для справочных команд.

Вы можете использовать их следующим образом:

```python
from discord.ext import commands

from jishaku.help_command import MinimalPaginatorHelp

bot = commands.Bot('?', help_command=MinimalPaginatorHelp())
```

```python
class jishaku.help_command.DefaultPaginatorHelp(*args: Any, **kwargs: Any)
```

A subclass of `commands.DefaultHelpCommand` that uses a PaginatorInterface for pages.

```
await send_pages()
```

Эта функция является сопрограммой.

Вспомогательная утилита для отправки вывода страницы из пагинатора в пункт назначения.

```python
class jishaku.help_command.DefaultEmbedPaginatorHelp(*args: Any, **kwargs: Any)
```

Подкласс команд. DefaultHelpCommand, который использует PaginatorEmbedInterface для страниц.

```python
await send_pages()
```

Эта функция является сопрограммой.

Вспомогательная утилита для отправки вывода страницы из пагинатора в пункт назначения.

```python
class jishaku.help_command.MinimalPaginatorHelp(*args: Any, **kwargs: Any)
```

Подкласс команд. MinimalHelpCommand, который использует PaginatorInterface для страниц.

```python
await send_pages()
```

Эта функция является сопрограммой. Вспомогательная утилита для отправки вывода страницы из пагинатора в пункт назначения.

```python
class jishaku.help_command.MinimalEmbedPaginatorHelp(*args: Any, **kwargs: Any)
```

Подкласс команд. MinimalHelpCommand, который использует PaginatorEmbedInterface для страниц.

```python
await send_pages()
```

Эта функция является сопрограммой.

Вспомогательная утилита для отправки вывода страницы из пагинатора в пункт назначения.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mayaais-organization.gitbook.io/dobro-pozhalovat/spravka-po-klassam-komand.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
