├── .dockerignore ├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ ├── FEATURE-REQUEST.yml │ └── OTHER.yml ├── dependabot.yml └── workflows │ ├── black.yml │ └── codeql.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── application.yml ├── avgamah ├── __init__.py ├── __main__.py ├── core │ ├── __init__.py │ ├── bot.py │ ├── client.py │ └── event_handler.py ├── modules │ ├── Admin │ │ ├── __init__.py │ │ ├── give_roles.py │ │ ├── hooks.py │ │ ├── remove_roles.py │ │ ├── roles.py │ │ └── sudo.py │ ├── Events │ │ ├── __init__.py │ │ ├── member_join_event.py │ │ ├── set_welcome_channel.py │ │ └── set_welcome_message.py │ ├── Fun │ │ ├── __init__.py │ │ ├── cat.py │ │ ├── cursedcomments.py │ │ ├── dog.py │ │ ├── joke.py │ │ ├── memes.py │ │ └── quiz.py │ ├── Misc │ │ ├── __init__.py │ │ ├── activities.py │ │ ├── avatar.py │ │ ├── botinfo.py │ │ ├── hello.py │ │ ├── ipinfo.py │ │ ├── ping.py │ │ ├── rashifal.py │ │ ├── rtfm.py │ │ ├── serverinfo.py │ │ ├── truth_or_dare.py │ │ ├── urban.py │ │ ├── userinfo.py │ │ └── weather.py │ ├── Moderation │ │ ├── __init__.py │ │ ├── ban.py │ │ ├── kick.py │ │ ├── mute.py │ │ ├── purge.py │ │ ├── selfmute.py │ │ ├── slowmode.py │ │ ├── unban.py │ │ ├── unmute.py │ │ ├── warn.py │ │ └── warnings.py │ ├── Music │ │ ├── __init__.py │ │ ├── clear.py │ │ ├── join.py │ │ ├── leave.py │ │ ├── loop.py │ │ ├── lyrics.py │ │ ├── move_song.py │ │ ├── now_playing.py │ │ ├── pause.py │ │ ├── play.py │ │ ├── queue.py │ │ ├── remove_song.py │ │ ├── resume.py │ │ ├── seek.py │ │ ├── shuffle.py │ │ ├── skip.py │ │ ├── stop.py │ │ └── volume.py │ ├── NSFW │ │ ├── __init__.py │ │ ├── ass.py │ │ ├── boobs.py │ │ ├── hentai.py │ │ ├── nudes.py │ │ └── pussy.py │ └── Utilities │ │ ├── __init__.py │ │ ├── colors.py │ │ ├── embeds.py │ │ ├── emojis.py │ │ ├── free_courses.py │ │ ├── suggestions.py │ │ └── tickets.py └── utils │ ├── Cache │ ├── rashifal_cache.py │ └── reddit_cache.py │ ├── activity.py │ ├── buttons.py │ ├── courses.py │ ├── fuzzy.py │ ├── pagination.py │ ├── permissions.py │ ├── rtfm.py │ ├── spotify.py │ ├── time.py │ └── utilities.py ├── code_of_conduct.md ├── config ├── __init__.py ├── bot.py ├── database.py ├── lavalink.py ├── reddit.py └── spotify.py ├── docker-compose.yml ├── entrypoint.sh ├── models.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── tortoise_config.py └── tortoise_config.py.example /.dockerignore: -------------------------------------------------------------------------------- 1 | aerich.ini 2 | migrations/ 3 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/OTHER.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/.github/ISSUE_TEMPLATE/OTHER.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/README.md -------------------------------------------------------------------------------- /application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/application.yml -------------------------------------------------------------------------------- /avgamah/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/__init__.py -------------------------------------------------------------------------------- /avgamah/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/__main__.py -------------------------------------------------------------------------------- /avgamah/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/core/__init__.py -------------------------------------------------------------------------------- /avgamah/core/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/core/bot.py -------------------------------------------------------------------------------- /avgamah/core/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/core/client.py -------------------------------------------------------------------------------- /avgamah/core/event_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/core/event_handler.py -------------------------------------------------------------------------------- /avgamah/modules/Admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Admin/__init__.py -------------------------------------------------------------------------------- /avgamah/modules/Admin/give_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Admin/give_roles.py -------------------------------------------------------------------------------- /avgamah/modules/Admin/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Admin/hooks.py -------------------------------------------------------------------------------- /avgamah/modules/Admin/remove_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Admin/remove_roles.py -------------------------------------------------------------------------------- /avgamah/modules/Admin/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Admin/roles.py -------------------------------------------------------------------------------- /avgamah/modules/Admin/sudo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Admin/sudo.py -------------------------------------------------------------------------------- /avgamah/modules/Events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Events/__init__.py -------------------------------------------------------------------------------- /avgamah/modules/Events/member_join_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Events/member_join_event.py -------------------------------------------------------------------------------- /avgamah/modules/Events/set_welcome_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Events/set_welcome_channel.py -------------------------------------------------------------------------------- /avgamah/modules/Events/set_welcome_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Events/set_welcome_message.py -------------------------------------------------------------------------------- /avgamah/modules/Fun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Fun/__init__.py -------------------------------------------------------------------------------- /avgamah/modules/Fun/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Fun/cat.py -------------------------------------------------------------------------------- /avgamah/modules/Fun/cursedcomments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Fun/cursedcomments.py -------------------------------------------------------------------------------- /avgamah/modules/Fun/dog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Fun/dog.py -------------------------------------------------------------------------------- /avgamah/modules/Fun/joke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Fun/joke.py -------------------------------------------------------------------------------- /avgamah/modules/Fun/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Fun/memes.py -------------------------------------------------------------------------------- /avgamah/modules/Fun/quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Fun/quiz.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/__init__.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/activities.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/avatar.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/botinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/botinfo.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/hello.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/ipinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/ipinfo.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/ping.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/rashifal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/rashifal.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/rtfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/rtfm.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/serverinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/serverinfo.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/truth_or_dare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/truth_or_dare.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/urban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/urban.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/userinfo.py -------------------------------------------------------------------------------- /avgamah/modules/Misc/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Misc/weather.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/__init__.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/ban.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/kick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/kick.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/mute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/mute.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/purge.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/selfmute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/selfmute.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/slowmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/slowmode.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/unban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/unban.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/unmute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/unmute.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/warn.py -------------------------------------------------------------------------------- /avgamah/modules/Moderation/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Moderation/warnings.py -------------------------------------------------------------------------------- /avgamah/modules/Music/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/__init__.py -------------------------------------------------------------------------------- /avgamah/modules/Music/clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/clear.py -------------------------------------------------------------------------------- /avgamah/modules/Music/join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/join.py -------------------------------------------------------------------------------- /avgamah/modules/Music/leave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/leave.py -------------------------------------------------------------------------------- /avgamah/modules/Music/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/loop.py -------------------------------------------------------------------------------- /avgamah/modules/Music/lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/lyrics.py -------------------------------------------------------------------------------- /avgamah/modules/Music/move_song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/move_song.py -------------------------------------------------------------------------------- /avgamah/modules/Music/now_playing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/now_playing.py -------------------------------------------------------------------------------- /avgamah/modules/Music/pause.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/pause.py -------------------------------------------------------------------------------- /avgamah/modules/Music/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/play.py -------------------------------------------------------------------------------- /avgamah/modules/Music/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/queue.py -------------------------------------------------------------------------------- /avgamah/modules/Music/remove_song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/remove_song.py -------------------------------------------------------------------------------- /avgamah/modules/Music/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/resume.py -------------------------------------------------------------------------------- /avgamah/modules/Music/seek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/seek.py -------------------------------------------------------------------------------- /avgamah/modules/Music/shuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/shuffle.py -------------------------------------------------------------------------------- /avgamah/modules/Music/skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/skip.py -------------------------------------------------------------------------------- /avgamah/modules/Music/stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/stop.py -------------------------------------------------------------------------------- /avgamah/modules/Music/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Music/volume.py -------------------------------------------------------------------------------- /avgamah/modules/NSFW/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /avgamah/modules/NSFW/ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/NSFW/ass.py -------------------------------------------------------------------------------- /avgamah/modules/NSFW/boobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/NSFW/boobs.py -------------------------------------------------------------------------------- /avgamah/modules/NSFW/hentai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/NSFW/hentai.py -------------------------------------------------------------------------------- /avgamah/modules/NSFW/nudes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/NSFW/nudes.py -------------------------------------------------------------------------------- /avgamah/modules/NSFW/pussy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/NSFW/pussy.py -------------------------------------------------------------------------------- /avgamah/modules/Utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Utilities/__init__.py -------------------------------------------------------------------------------- /avgamah/modules/Utilities/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Utilities/colors.py -------------------------------------------------------------------------------- /avgamah/modules/Utilities/embeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Utilities/embeds.py -------------------------------------------------------------------------------- /avgamah/modules/Utilities/emojis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Utilities/emojis.py -------------------------------------------------------------------------------- /avgamah/modules/Utilities/free_courses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Utilities/free_courses.py -------------------------------------------------------------------------------- /avgamah/modules/Utilities/suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Utilities/suggestions.py -------------------------------------------------------------------------------- /avgamah/modules/Utilities/tickets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/modules/Utilities/tickets.py -------------------------------------------------------------------------------- /avgamah/utils/Cache/rashifal_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/Cache/rashifal_cache.py -------------------------------------------------------------------------------- /avgamah/utils/Cache/reddit_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/Cache/reddit_cache.py -------------------------------------------------------------------------------- /avgamah/utils/activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/activity.py -------------------------------------------------------------------------------- /avgamah/utils/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/buttons.py -------------------------------------------------------------------------------- /avgamah/utils/courses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/courses.py -------------------------------------------------------------------------------- /avgamah/utils/fuzzy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/fuzzy.py -------------------------------------------------------------------------------- /avgamah/utils/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/pagination.py -------------------------------------------------------------------------------- /avgamah/utils/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/permissions.py -------------------------------------------------------------------------------- /avgamah/utils/rtfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/rtfm.py -------------------------------------------------------------------------------- /avgamah/utils/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/spotify.py -------------------------------------------------------------------------------- /avgamah/utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/time.py -------------------------------------------------------------------------------- /avgamah/utils/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/avgamah/utils/utilities.py -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/config/bot.py -------------------------------------------------------------------------------- /config/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/config/database.py -------------------------------------------------------------------------------- /config/lavalink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/config/lavalink.py -------------------------------------------------------------------------------- /config/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/config/reddit.py -------------------------------------------------------------------------------- /config/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/config/spotify.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/models.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/requirements.txt -------------------------------------------------------------------------------- /tortoise_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/tortoise_config.py -------------------------------------------------------------------------------- /tortoise_config.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenishantsapkota/Avgamah/HEAD/tortoise_config.py.example --------------------------------------------------------------------------------