├── .gitignore ├── LICENSE ├── README.md ├── images ├── example-app.gif ├── example-emoji.gif └── example.gif ├── poetry.lock ├── pretty_help ├── __init__.py ├── abc_menu.py ├── app_menu.py ├── emoji_menu.py └── pretty_help.py ├── pyproject.toml └── tests ├── .env.example ├── __init__.py └── test_pretty_help.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/README.md -------------------------------------------------------------------------------- /images/example-app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/images/example-app.gif -------------------------------------------------------------------------------- /images/example-emoji.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/images/example-emoji.gif -------------------------------------------------------------------------------- /images/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/images/example.gif -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/poetry.lock -------------------------------------------------------------------------------- /pretty_help/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/pretty_help/__init__.py -------------------------------------------------------------------------------- /pretty_help/abc_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/pretty_help/abc_menu.py -------------------------------------------------------------------------------- /pretty_help/app_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/pretty_help/app_menu.py -------------------------------------------------------------------------------- /pretty_help/emoji_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/pretty_help/emoji_menu.py -------------------------------------------------------------------------------- /pretty_help/pretty_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/pretty_help/pretty_help.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/.env.example: -------------------------------------------------------------------------------- 1 | TOKEN= 2 | GUILD_ID= -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_pretty_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasuallyCalm/discord-pretty-help/HEAD/tests/test_pretty_help.py --------------------------------------------------------------------------------