├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.json ├── cache ├── __init__.py └── admins.py ├── callsmusic ├── __init__.py ├── callsmusic.py └── queues │ ├── __init__.py │ └── queues.py ├── config.py ├── converter ├── __init__.py └── converter.py ├── downloaders ├── __init__.py └── youtube.py ├── example.env ├── handlers ├── __init__.py ├── admins.py ├── chat_member_updated.py ├── helper.py ├── inline.py ├── play.py ├── private.py └── songs.py ├── helpers ├── __init__.py ├── admins.py ├── decorators.py ├── errors.py ├── filters.py └── gets.py ├── heroku.yml ├── main.py ├── requirements.txt └── str.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/app.json -------------------------------------------------------------------------------- /cache/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cache/admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/cache/admins.py -------------------------------------------------------------------------------- /callsmusic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/callsmusic/__init__.py -------------------------------------------------------------------------------- /callsmusic/callsmusic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/callsmusic/callsmusic.py -------------------------------------------------------------------------------- /callsmusic/queues/__init__.py: -------------------------------------------------------------------------------- 1 | from .queues import put, get, is_empty, task_done, clear 2 | -------------------------------------------------------------------------------- /callsmusic/queues/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/callsmusic/queues/queues.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/config.py -------------------------------------------------------------------------------- /converter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/converter/__init__.py -------------------------------------------------------------------------------- /converter/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/converter/converter.py -------------------------------------------------------------------------------- /downloaders/__init__.py: -------------------------------------------------------------------------------- 1 | from .youtube import download 2 | -------------------------------------------------------------------------------- /downloaders/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/downloaders/youtube.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/example.env -------------------------------------------------------------------------------- /handlers/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /handlers/admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/handlers/admins.py -------------------------------------------------------------------------------- /handlers/chat_member_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/handlers/chat_member_updated.py -------------------------------------------------------------------------------- /handlers/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/handlers/helper.py -------------------------------------------------------------------------------- /handlers/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/handlers/inline.py -------------------------------------------------------------------------------- /handlers/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/handlers/play.py -------------------------------------------------------------------------------- /handlers/private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/handlers/private.py -------------------------------------------------------------------------------- /handlers/songs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/handlers/songs.py -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /helpers/admins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/helpers/admins.py -------------------------------------------------------------------------------- /helpers/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/helpers/decorators.py -------------------------------------------------------------------------------- /helpers/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/helpers/errors.py -------------------------------------------------------------------------------- /helpers/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/helpers/filters.py -------------------------------------------------------------------------------- /helpers/gets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/helpers/gets.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/heroku.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheVaders/vc_bot/HEAD/str.py --------------------------------------------------------------------------------