├── .github ├── CODEOWNERS ├── linters │ └── .python-black └── workflows │ ├── analyze.yml │ ├── build.yml │ ├── lint.yml │ ├── release.yml │ └── stale.yml ├── .gitignore ├── LICENSE ├── README.rst ├── discord └── ext │ └── alternatives │ ├── __init__.py │ ├── _common.py │ ├── asset_converter.py │ ├── binary_checks.py │ ├── bot_send_help.py │ ├── category_channel.py │ ├── class_commands.py │ ├── command_piping.py │ ├── command_suffix.py │ ├── converter_dict.py │ ├── dict_converter.py │ ├── fix_4098.py │ ├── guild_converter.py │ ├── inline_bot_commands.py │ ├── int_map.py │ ├── jump_url.py │ ├── literal_converter.py │ ├── material_colors.py │ ├── material_colours.py │ ├── menus_remove_reaction.py │ ├── message_eq.py │ ├── messageable_wait_for.py │ ├── object_contains.py │ ├── role.py │ ├── silent_delete.py │ ├── specific_error_handler.py │ ├── subcommand_error.py │ └── webhook_channel.py ├── requirements.txt └── setup.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/linters/.python-black: -------------------------------------------------------------------------------- 1 | [tool.black] 2 | line-length = 100 3 | -------------------------------------------------------------------------------- /.github/workflows/analyze.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/.github/workflows/analyze.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/README.rst -------------------------------------------------------------------------------- /discord/ext/alternatives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/__init__.py -------------------------------------------------------------------------------- /discord/ext/alternatives/_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/_common.py -------------------------------------------------------------------------------- /discord/ext/alternatives/asset_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/asset_converter.py -------------------------------------------------------------------------------- /discord/ext/alternatives/binary_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/binary_checks.py -------------------------------------------------------------------------------- /discord/ext/alternatives/bot_send_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/bot_send_help.py -------------------------------------------------------------------------------- /discord/ext/alternatives/category_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/category_channel.py -------------------------------------------------------------------------------- /discord/ext/alternatives/class_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/class_commands.py -------------------------------------------------------------------------------- /discord/ext/alternatives/command_piping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/command_piping.py -------------------------------------------------------------------------------- /discord/ext/alternatives/command_suffix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/command_suffix.py -------------------------------------------------------------------------------- /discord/ext/alternatives/converter_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/converter_dict.py -------------------------------------------------------------------------------- /discord/ext/alternatives/dict_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/dict_converter.py -------------------------------------------------------------------------------- /discord/ext/alternatives/fix_4098.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/fix_4098.py -------------------------------------------------------------------------------- /discord/ext/alternatives/guild_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/guild_converter.py -------------------------------------------------------------------------------- /discord/ext/alternatives/inline_bot_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/inline_bot_commands.py -------------------------------------------------------------------------------- /discord/ext/alternatives/int_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/int_map.py -------------------------------------------------------------------------------- /discord/ext/alternatives/jump_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/jump_url.py -------------------------------------------------------------------------------- /discord/ext/alternatives/literal_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/literal_converter.py -------------------------------------------------------------------------------- /discord/ext/alternatives/material_colors.py: -------------------------------------------------------------------------------- 1 | from discord.ext.alternatives.material_colours import * 2 | -------------------------------------------------------------------------------- /discord/ext/alternatives/material_colours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/material_colours.py -------------------------------------------------------------------------------- /discord/ext/alternatives/menus_remove_reaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/menus_remove_reaction.py -------------------------------------------------------------------------------- /discord/ext/alternatives/message_eq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/message_eq.py -------------------------------------------------------------------------------- /discord/ext/alternatives/messageable_wait_for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/messageable_wait_for.py -------------------------------------------------------------------------------- /discord/ext/alternatives/object_contains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/object_contains.py -------------------------------------------------------------------------------- /discord/ext/alternatives/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/role.py -------------------------------------------------------------------------------- /discord/ext/alternatives/silent_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/silent_delete.py -------------------------------------------------------------------------------- /discord/ext/alternatives/specific_error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/specific_error_handler.py -------------------------------------------------------------------------------- /discord/ext/alternatives/subcommand_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/subcommand_error.py -------------------------------------------------------------------------------- /discord/ext/alternatives/webhook_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/discord/ext/alternatives/webhook_channel.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ext-Creators/discord-ext-alternatives/HEAD/setup.py --------------------------------------------------------------------------------