Syntax maker for discord.py's command
Project description
dpy-syntaxer
Syntax maker for discord.py's command.
How to use
python3 -m pip install dpy-syntaxer
from typing import Optional
from discord.ext import commands, syntaxer
@commands.command()
async def command(ctx, arg1: Optional[int], arg2, *, arg3):
"""
Command description
arg_first: Description of arg1
arg_second: Description of arg2
arg_third: Description of arg3
"""
pass
syntax = syntaxer.Syntax(command)
str(syntax)
# => 'command <arg_first> <arg_second> <arg_third'
syntax[0]
# => CommandName(name='command', parent=None)
syntax[1]
# => CommandArgument(name='arg_first', required=False, description='Description of arg1', format='[arg_first]', flag=<ArgumentType.optional: 2>, default=<class 'inspect._empty'>)
syntax[2]
# => CommandArgument(name='arg_second', required=True, description='Description of arg2', format='<arg_second>', flag=<ArgumentType.required: 1>, default=None)
syntax[3]
# => CommandArgument(name='arg_third', required=True, description='Description of arg3', format='<arg_third', flag=<ArgumentType.kwarg|required: 9>, default=None)
Please read the documentation for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file dpy_syntaxer-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: dpy_syntaxer-1.1.0-py3-none-any.whl
- Upload date:
- Size: 4.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/54.1.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78ac9554c7126d91ae4acbd6dbd061c4b802a93f81db651aa06dcc5168700188 |
|
MD5 | 0212d95efa06578fea5359bafa7c00ea |
|
BLAKE2b-256 | e1acf899e555cfea846b93d183bd8aceac08200476027fe612dd57978055fe4f |