├── .github └── CODEOWNERS ├── .gitignore ├── LICENSE ├── README.md ├── config ├── __init__.py └── sample_config.py ├── handlers ├── __init__.py ├── controls.py ├── play.py ├── queue.py ├── rm_downloads.py └── stream.py ├── helpers ├── __init__.py ├── decorators.py ├── duration.py ├── filters.py ├── queues.py └── regex.py ├── main.py ├── requirements.txt └── vcpb ├── __init__.py ├── player.py └── ytdl.py /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/config/sample_config.py -------------------------------------------------------------------------------- /handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /handlers/controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/handlers/controls.py -------------------------------------------------------------------------------- /handlers/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/handlers/play.py -------------------------------------------------------------------------------- /handlers/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/handlers/queue.py -------------------------------------------------------------------------------- /handlers/rm_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/handlers/rm_downloads.py -------------------------------------------------------------------------------- /handlers/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/handlers/stream.py -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpers/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/helpers/decorators.py -------------------------------------------------------------------------------- /helpers/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/helpers/duration.py -------------------------------------------------------------------------------- /helpers/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/helpers/filters.py -------------------------------------------------------------------------------- /helpers/queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/helpers/queues.py -------------------------------------------------------------------------------- /helpers/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/helpers/regex.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/requirements.txt -------------------------------------------------------------------------------- /vcpb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcpb/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/vcpb/player.py -------------------------------------------------------------------------------- /vcpb/ytdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callsmusic/vcpb/HEAD/vcpb/ytdl.py --------------------------------------------------------------------------------