├── .gitignore ├── .readthedocs.yml ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _static │ └── css │ │ └── general.css ├── conf.py ├── converters.rst ├── errors.rst ├── examples.rst ├── general-utility.rst ├── help-command.rst ├── images │ ├── customize_menu_help.png │ ├── customize_pagination_view.png │ ├── default_menu_help.png │ ├── default_paginate_help.png │ ├── hybridhelp.png │ ├── pagination_view.png │ └── separators_example.png ├── index.rst ├── make.bat └── views.rst ├── examples └── live-bot │ ├── cogs │ ├── admin.py │ ├── error_handler.py │ ├── fun.py │ └── useful.py │ ├── main.py │ └── utils │ ├── help_command.py │ └── pagination.py ├── requirements.txt ├── setup.py └── starlight ├── __init__.py ├── star_commands ├── __init__.py ├── converter.py ├── core.py ├── errors.py ├── help_command │ ├── command.py │ ├── injector.py │ └── view.py └── views │ ├── pagination.py │ └── utils.py └── utils ├── general.py └── search.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/_static/css/general.css -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/converters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/converters.rst -------------------------------------------------------------------------------- /docs/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/errors.rst -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/general-utility.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/general-utility.rst -------------------------------------------------------------------------------- /docs/help-command.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/help-command.rst -------------------------------------------------------------------------------- /docs/images/customize_menu_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/images/customize_menu_help.png -------------------------------------------------------------------------------- /docs/images/customize_pagination_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/images/customize_pagination_view.png -------------------------------------------------------------------------------- /docs/images/default_menu_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/images/default_menu_help.png -------------------------------------------------------------------------------- /docs/images/default_paginate_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/images/default_paginate_help.png -------------------------------------------------------------------------------- /docs/images/hybridhelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/images/hybridhelp.png -------------------------------------------------------------------------------- /docs/images/pagination_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/images/pagination_view.png -------------------------------------------------------------------------------- /docs/images/separators_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/images/separators_example.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/docs/views.rst -------------------------------------------------------------------------------- /examples/live-bot/cogs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/examples/live-bot/cogs/admin.py -------------------------------------------------------------------------------- /examples/live-bot/cogs/error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/examples/live-bot/cogs/error_handler.py -------------------------------------------------------------------------------- /examples/live-bot/cogs/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/examples/live-bot/cogs/fun.py -------------------------------------------------------------------------------- /examples/live-bot/cogs/useful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/examples/live-bot/cogs/useful.py -------------------------------------------------------------------------------- /examples/live-bot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/examples/live-bot/main.py -------------------------------------------------------------------------------- /examples/live-bot/utils/help_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/examples/live-bot/utils/help_command.py -------------------------------------------------------------------------------- /examples/live-bot/utils/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/examples/live-bot/utils/pagination.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | discord.py >= 2.1.0 2 | sphinx_rtd_dark_mode >= 1.2.4 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/setup.py -------------------------------------------------------------------------------- /starlight/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/__init__.py -------------------------------------------------------------------------------- /starlight/star_commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/star_commands/__init__.py -------------------------------------------------------------------------------- /starlight/star_commands/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/star_commands/converter.py -------------------------------------------------------------------------------- /starlight/star_commands/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/star_commands/core.py -------------------------------------------------------------------------------- /starlight/star_commands/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/star_commands/errors.py -------------------------------------------------------------------------------- /starlight/star_commands/help_command/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/star_commands/help_command/command.py -------------------------------------------------------------------------------- /starlight/star_commands/help_command/injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/star_commands/help_command/injector.py -------------------------------------------------------------------------------- /starlight/star_commands/help_command/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/star_commands/help_command/view.py -------------------------------------------------------------------------------- /starlight/star_commands/views/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/star_commands/views/pagination.py -------------------------------------------------------------------------------- /starlight/star_commands/views/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/star_commands/views/utils.py -------------------------------------------------------------------------------- /starlight/utils/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/utils/general.py -------------------------------------------------------------------------------- /starlight/utils/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InterStella0/starlight-dpy/HEAD/starlight/utils/search.py --------------------------------------------------------------------------------