├── .gitignore ├── LEARN.md ├── LICENSE ├── README.md ├── Settings.py ├── __init__.py ├── cogs ├── __init__.py ├── administration.py ├── auth.py └── voice.py ├── components ├── __init__.py ├── embed_help.py ├── view_playlists.py └── view_song.py ├── main.py ├── piar.md ├── requirements.txt ├── service ├── __init__.py ├── player.py └── song_queue.py ├── source ├── __init__.py ├── actions.py ├── answers.py └── img │ ├── 2fa.png │ ├── auth1.png │ ├── auth2.png │ ├── auth3.png │ ├── captcha.png │ ├── invite.png │ ├── register.png │ ├── res.png │ ├── saa.png │ └── saq.png └── utils ├── __init__.py ├── auth_handlers.py └── button_change.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | __pycache__ 3 | /logs 4 | /Settings.py 5 | example.py -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/LEARN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/README.md -------------------------------------------------------------------------------- /Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/Settings.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/__init__.py -------------------------------------------------------------------------------- /cogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/cogs/__init__.py -------------------------------------------------------------------------------- /cogs/administration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/cogs/administration.py -------------------------------------------------------------------------------- /cogs/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/cogs/auth.py -------------------------------------------------------------------------------- /cogs/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/cogs/voice.py -------------------------------------------------------------------------------- /components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/components/__init__.py -------------------------------------------------------------------------------- /components/embed_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/components/embed_help.py -------------------------------------------------------------------------------- /components/view_playlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/components/view_playlists.py -------------------------------------------------------------------------------- /components/view_song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/components/view_song.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/main.py -------------------------------------------------------------------------------- /piar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/piar.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/requirements.txt -------------------------------------------------------------------------------- /service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/service/__init__.py -------------------------------------------------------------------------------- /service/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/service/player.py -------------------------------------------------------------------------------- /service/song_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/service/song_queue.py -------------------------------------------------------------------------------- /source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/__init__.py -------------------------------------------------------------------------------- /source/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/actions.py -------------------------------------------------------------------------------- /source/answers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/answers.py -------------------------------------------------------------------------------- /source/img/2fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/img/2fa.png -------------------------------------------------------------------------------- /source/img/auth1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/img/auth1.png -------------------------------------------------------------------------------- /source/img/auth2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/img/auth2.png -------------------------------------------------------------------------------- /source/img/auth3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/img/auth3.png -------------------------------------------------------------------------------- /source/img/captcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/img/captcha.png -------------------------------------------------------------------------------- /source/img/invite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/img/invite.png -------------------------------------------------------------------------------- /source/img/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/img/register.png -------------------------------------------------------------------------------- /source/img/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/img/res.png -------------------------------------------------------------------------------- /source/img/saa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/img/saa.png -------------------------------------------------------------------------------- /source/img/saq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/source/img/saq.png -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/auth_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/utils/auth_handlers.py -------------------------------------------------------------------------------- /utils/button_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PB2204/KaiSa/HEAD/utils/button_change.py --------------------------------------------------------------------------------