├── .deepsource.toml ├── Aptfile ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── VideoxD ├── Handlers │ ├── extras.py │ ├── play.py │ ├── private.py │ ├── restart.py │ └── update.py ├── __init__.py ├── __main__.py └── functions.py ├── app.json ├── config.py ├── heroku.yml ├── img.jpg ├── misc.py ├── requirements.txt ├── runtime.txt └── sample.env /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- 1 | pv -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m VideoxD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/README.md -------------------------------------------------------------------------------- /VideoxD/Handlers/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/VideoxD/Handlers/extras.py -------------------------------------------------------------------------------- /VideoxD/Handlers/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/VideoxD/Handlers/play.py -------------------------------------------------------------------------------- /VideoxD/Handlers/private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/VideoxD/Handlers/private.py -------------------------------------------------------------------------------- /VideoxD/Handlers/restart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/VideoxD/Handlers/restart.py -------------------------------------------------------------------------------- /VideoxD/Handlers/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/VideoxD/Handlers/update.py -------------------------------------------------------------------------------- /VideoxD/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/VideoxD/__init__.py -------------------------------------------------------------------------------- /VideoxD/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/VideoxD/__main__.py -------------------------------------------------------------------------------- /VideoxD/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/VideoxD/functions.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/app.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/config.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/heroku.yml -------------------------------------------------------------------------------- /img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/img.jpg -------------------------------------------------------------------------------- /misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/misc.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.0 2 | -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axrav/VideoStreamBot/HEAD/sample.env --------------------------------------------------------------------------------