A dynamically generated help command for interactions.py that allows for >100 character command descriptions
Install via pypi
pip install interactions-dynamic-helpThen load the extension into your bot
from interactions import Client
bot = Client()
...
bot.load_extension("interactions.ext.dynhelp")
bot.start("Token")Longer description is done with a docstring.
If you are using a docstring longer than 100 chars, you MUST provide a description in the slash_command, otherwise the docstring will be used as the description
from interactions import Client, slash_command
bot = Client()
@slash_command(
name="test",
description="This is a test command",
)
async def test(ctx):
"""This is a test command (parsed as a short description and ignored if a long description is provided)
This is a longer description that will be used in the help command and is longer than 100 chars
- this is parsed as part of the long description
"""
await ctx.respond("Test")
bot.load_extension("interactions.ext.dynhelp")
bot.start("Token")You can specify to combine the short and long description by adding combine=True to the decorator
bot.load_extension("interactions.ext.dynhelp", combine=True)By defualt the ctx and bot parameters are skipped, but you can skip more by adding skip_coms adn skip_opts to
the decorator
bot.load_extension("interactions.ext.dynhelp", skip_coms=["test"], skip_opts=["test"])These can be added by adding paginator_args to the decorator, your args will be added to the default args which are
{
"ephemeral": true,
"delete_after": 60
}bot.load_extension("interactions.ext.dynhelp", paginator_args={"timeout": 60})