commands.help_commands module

Help command for displaying available bot commands and their usage.

This module provides a comprehensive help system that categorizes commands and provides detailed usage information for users.

commands.help_commands.create_help_embed(category='all', guild_name='Server')[source]

Create a help embed for the specified category.

Parameters:
  • category (str) – Command category to show (“all” for all categories)

  • guild_name (str) – Name of the Discord server

Returns:

Formatted help embed

Return type:

discord.Embed

commands.help_commands.setup_help_commands(bot)[source]

Set up help commands for the bot.

commands.help_commands.get_command_info(command_name)[source]

Get detailed information about a specific command.

Parameters:

command_name (str) – Name of the command to get info for

Returns:

Command information or None if not found

Return type:

dict

commands.help_commands.get_total_command_count()[source]

Get the total number of commands available.

Return type:

int