├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── discordSuperUtils ├── __init__.py ├── antispam.py ├── assets │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── dnd.png │ ├── font.ttf │ ├── idle.png │ ├── offline.png │ ├── online.png │ ├── spotify_black.png │ ├── spotify_white.png │ └── streaming.png ├── ban.py ├── base.py ├── birthday.py ├── client.py ├── commandhinter.py ├── convertors.py ├── database.py ├── economy.py ├── fivem.py ├── imaging.py ├── infractions.py ├── invitetracker.py ├── kick.py ├── leveling.py ├── messagefilter.py ├── modmail.py ├── music │ ├── __init__.py │ ├── constants.py │ ├── enums.py │ ├── exceptions.py │ ├── lavalink │ │ ├── __init__.py │ │ ├── equalizer.py │ │ ├── lavalink.py │ │ └── player.py │ ├── music.py │ ├── player.py │ ├── playlist.py │ ├── queue.py │ └── utils.py ├── mute.py ├── paginator.py ├── prefix.py ├── punishments.py ├── reactionroles.py ├── slash_client.py ├── spotify.py ├── template.py ├── twitch.py └── youtube.py ├── docs ├── Makefile ├── conf.py ├── index.rst ├── installation.rst ├── make.bat └── source │ └── discordSuperUtils.rst ├── examples ├── advance_music_cog.py ├── antispam.py ├── birthday.py ├── command_hinter.py ├── database.py ├── economy.py ├── fivem.py ├── imaging.py ├── invitetracker.py ├── lavalinkmusic.py ├── leveling.py ├── leveling_cog.py ├── message_filter.py ├── moderation.py ├── modmail.py ├── music.py ├── music_cog.py ├── paginator.py ├── prefix.py ├── reaction_roles.py ├── template.py └── twitch.py ├── requirements.txt ├── setup.py └── tests ├── database.py ├── gather.py ├── spotify_fetching.py ├── tester.py ├── time_converts.py └── youtube.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/README.md -------------------------------------------------------------------------------- /discordSuperUtils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/__init__.py -------------------------------------------------------------------------------- /discordSuperUtils/antispam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/antispam.py -------------------------------------------------------------------------------- /discordSuperUtils/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/1.png -------------------------------------------------------------------------------- /discordSuperUtils/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/2.png -------------------------------------------------------------------------------- /discordSuperUtils/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/3.png -------------------------------------------------------------------------------- /discordSuperUtils/assets/dnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/dnd.png -------------------------------------------------------------------------------- /discordSuperUtils/assets/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/font.ttf -------------------------------------------------------------------------------- /discordSuperUtils/assets/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/idle.png -------------------------------------------------------------------------------- /discordSuperUtils/assets/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/offline.png -------------------------------------------------------------------------------- /discordSuperUtils/assets/online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/online.png -------------------------------------------------------------------------------- /discordSuperUtils/assets/spotify_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/spotify_black.png -------------------------------------------------------------------------------- /discordSuperUtils/assets/spotify_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/spotify_white.png -------------------------------------------------------------------------------- /discordSuperUtils/assets/streaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/assets/streaming.png -------------------------------------------------------------------------------- /discordSuperUtils/ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/ban.py -------------------------------------------------------------------------------- /discordSuperUtils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/base.py -------------------------------------------------------------------------------- /discordSuperUtils/birthday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/birthday.py -------------------------------------------------------------------------------- /discordSuperUtils/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/client.py -------------------------------------------------------------------------------- /discordSuperUtils/commandhinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/commandhinter.py -------------------------------------------------------------------------------- /discordSuperUtils/convertors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/convertors.py -------------------------------------------------------------------------------- /discordSuperUtils/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/database.py -------------------------------------------------------------------------------- /discordSuperUtils/economy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/economy.py -------------------------------------------------------------------------------- /discordSuperUtils/fivem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/fivem.py -------------------------------------------------------------------------------- /discordSuperUtils/imaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/imaging.py -------------------------------------------------------------------------------- /discordSuperUtils/infractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/infractions.py -------------------------------------------------------------------------------- /discordSuperUtils/invitetracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/invitetracker.py -------------------------------------------------------------------------------- /discordSuperUtils/kick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/kick.py -------------------------------------------------------------------------------- /discordSuperUtils/leveling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/leveling.py -------------------------------------------------------------------------------- /discordSuperUtils/messagefilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/messagefilter.py -------------------------------------------------------------------------------- /discordSuperUtils/modmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/modmail.py -------------------------------------------------------------------------------- /discordSuperUtils/music/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/__init__.py -------------------------------------------------------------------------------- /discordSuperUtils/music/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/constants.py -------------------------------------------------------------------------------- /discordSuperUtils/music/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/enums.py -------------------------------------------------------------------------------- /discordSuperUtils/music/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/exceptions.py -------------------------------------------------------------------------------- /discordSuperUtils/music/lavalink/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/lavalink/__init__.py -------------------------------------------------------------------------------- /discordSuperUtils/music/lavalink/equalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/lavalink/equalizer.py -------------------------------------------------------------------------------- /discordSuperUtils/music/lavalink/lavalink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/lavalink/lavalink.py -------------------------------------------------------------------------------- /discordSuperUtils/music/lavalink/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/lavalink/player.py -------------------------------------------------------------------------------- /discordSuperUtils/music/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/music.py -------------------------------------------------------------------------------- /discordSuperUtils/music/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/player.py -------------------------------------------------------------------------------- /discordSuperUtils/music/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/playlist.py -------------------------------------------------------------------------------- /discordSuperUtils/music/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/queue.py -------------------------------------------------------------------------------- /discordSuperUtils/music/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/music/utils.py -------------------------------------------------------------------------------- /discordSuperUtils/mute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/mute.py -------------------------------------------------------------------------------- /discordSuperUtils/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/paginator.py -------------------------------------------------------------------------------- /discordSuperUtils/prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/prefix.py -------------------------------------------------------------------------------- /discordSuperUtils/punishments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/punishments.py -------------------------------------------------------------------------------- /discordSuperUtils/reactionroles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/reactionroles.py -------------------------------------------------------------------------------- /discordSuperUtils/slash_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/slash_client.py -------------------------------------------------------------------------------- /discordSuperUtils/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/spotify.py -------------------------------------------------------------------------------- /discordSuperUtils/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/template.py -------------------------------------------------------------------------------- /discordSuperUtils/twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/twitch.py -------------------------------------------------------------------------------- /discordSuperUtils/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/discordSuperUtils/youtube.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/discordSuperUtils.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/advance_music_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/advance_music_cog.py -------------------------------------------------------------------------------- /examples/antispam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/antispam.py -------------------------------------------------------------------------------- /examples/birthday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/birthday.py -------------------------------------------------------------------------------- /examples/command_hinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/command_hinter.py -------------------------------------------------------------------------------- /examples/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/database.py -------------------------------------------------------------------------------- /examples/economy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/economy.py -------------------------------------------------------------------------------- /examples/fivem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/fivem.py -------------------------------------------------------------------------------- /examples/imaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/imaging.py -------------------------------------------------------------------------------- /examples/invitetracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/invitetracker.py -------------------------------------------------------------------------------- /examples/lavalinkmusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/lavalinkmusic.py -------------------------------------------------------------------------------- /examples/leveling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/leveling.py -------------------------------------------------------------------------------- /examples/leveling_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/leveling_cog.py -------------------------------------------------------------------------------- /examples/message_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/message_filter.py -------------------------------------------------------------------------------- /examples/moderation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/moderation.py -------------------------------------------------------------------------------- /examples/modmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/modmail.py -------------------------------------------------------------------------------- /examples/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/music.py -------------------------------------------------------------------------------- /examples/music_cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/music_cog.py -------------------------------------------------------------------------------- /examples/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/paginator.py -------------------------------------------------------------------------------- /examples/prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/prefix.py -------------------------------------------------------------------------------- /examples/reaction_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/reaction_roles.py -------------------------------------------------------------------------------- /examples/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/template.py -------------------------------------------------------------------------------- /examples/twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/examples/twitch.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/setup.py -------------------------------------------------------------------------------- /tests/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/tests/database.py -------------------------------------------------------------------------------- /tests/gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/tests/gather.py -------------------------------------------------------------------------------- /tests/spotify_fetching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/tests/spotify_fetching.py -------------------------------------------------------------------------------- /tests/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/tests/tester.py -------------------------------------------------------------------------------- /tests/time_converts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/tests/time_converts.py -------------------------------------------------------------------------------- /tests/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/discordsuperutils/discord-super-utils/HEAD/tests/youtube.py --------------------------------------------------------------------------------