first commit

This commit is contained in:
Avanpost 2024-11-05 14:57:38 +00:00
commit 988afb33e3
Signed by: avanpost20
GPG key ID: C879DD866453B55E
73 changed files with 8407 additions and 0 deletions

110
docs/ext/commands/api.rst Normal file
View file

@ -0,0 +1,110 @@
.. currentmodule:: next
API Reference
===============
CommandsClient
~~~~~~~~~~~~~~~
.. autoclass:: next.ext.commands.CommandsClient
:members:
Context
~~~~~~~~
.. autoclass:: next.ext.commands.Context
:members:
Command
~~~~~~~~
.. autoclass:: next.ext.commands.Command
:members:
Cog
~~~~
.. autoclass:: next.ext.commands.Cog
:members:
command
~~~~~~~~
.. autodecorator:: next.ext.commands.command
check
~~~~~~
.. autodecorator:: next.ext.commands.check
is_bot_owner
~~~~~~~~~~~~~
.. autodecorator:: next.ext.commands.is_bot_owner
is_server_owner
~~~~~~~~~~~~~~~~
.. autodecorator:: next.ext.commands.is_server_owner
Exceptions
===========
CommandError
~~~~~~~~~~~~~
.. autoexception:: next.ext.commands.CommandError
:members:
CommandNotFound
~~~~~~~~~~~~~~~~
.. autoexception:: next.ext.commands.CommandNotFound
:members:
NoClosingQuote
~~~~~~~~~~~~~~~
.. autoexception:: next.ext.commands.NoClosingQuote
:members:
CheckError
~~~~~~~~~~~
.. autoexception:: next.ext.commands.CheckError
:members:
NotBotOwner
~~~~~~~~~~~~
.. autoexception:: next.ext.commands.NotBotOwner
:members:
NotServerOwner
~~~~~~~~~~~~~~~
.. autoexception:: next.ext.commands.NotServerOwner
:members:
ServerOnly
~~~~~~~~~~~
.. autoexception:: next.ext.commands.ServerOnly
:members:
ConverterError
~~~~~~~~~~~~~~~
.. autoexception:: next.ext.commands.ConverterError
:members:
InvalidLiteralArgument
~~~~~~~~~~~~~~~~~~~~~~~
.. autoexception:: next.ext.commands.InvalidLiteralArgument
:members:
BadBoolArgument
~~~~~~~~~~~~~~~~
.. autoexception:: next.ext.commands.BadBoolArgument
:members:
CategoryConverterError
~~~~~~~~~~~~~~~~~~~~~~~
.. autoexception:: next.ext.commands.CategoryConverterError
:members:
UserConverterError
~~~~~~~~~~~~~~~~~~~
.. autoexception:: next.ext.commands.UserConverterError
:members:
MemberConverterError
~~~~~~~~~~~~~~~~~~~~~
.. autoexception:: next.ext.commands.MemberConverterError
:members:

View file

@ -0,0 +1,9 @@
.. next_ext_commands:
``next.ext.commands`` - Command Framework
============================================
.. toctree::
:maxdepth: 1
api