├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── Adarsh ├── __init__.py ├── __main__.py ├── bot │ ├── __init__.py │ ├── clients.py │ └── plugins │ │ ├── admin.py │ │ ├── extra.py │ │ ├── start_help.py │ │ └── stream.py ├── server │ ├── __init__.py │ ├── exceptions.py │ └── stream_routes.py ├── template │ ├── dl.html │ └── req.html ├── utils │ ├── @Aadhi000 │ ├── __init__.py │ ├── broadcast_helper.py │ ├── config_parser.py │ ├── custom_dl.py │ ├── database.py │ ├── file_properties.py │ ├── file_size.py │ ├── human_readable.py │ ├── keepalive.py │ ├── render_template.py │ └── time_format.py └── vars.py ├── LICENSE ├── Procfile ├── README.MD ├── app.json ├── png └── opus.png ├── requirements.txt └── utils_bot.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Adarsh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/__init__.py -------------------------------------------------------------------------------- /Adarsh/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/__main__.py -------------------------------------------------------------------------------- /Adarsh/bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/bot/__init__.py -------------------------------------------------------------------------------- /Adarsh/bot/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/bot/clients.py -------------------------------------------------------------------------------- /Adarsh/bot/plugins/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/bot/plugins/admin.py -------------------------------------------------------------------------------- /Adarsh/bot/plugins/extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/bot/plugins/extra.py -------------------------------------------------------------------------------- /Adarsh/bot/plugins/start_help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/bot/plugins/start_help.py -------------------------------------------------------------------------------- /Adarsh/bot/plugins/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/bot/plugins/stream.py -------------------------------------------------------------------------------- /Adarsh/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/server/__init__.py -------------------------------------------------------------------------------- /Adarsh/server/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/server/exceptions.py -------------------------------------------------------------------------------- /Adarsh/server/stream_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/server/stream_routes.py -------------------------------------------------------------------------------- /Adarsh/template/dl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/template/dl.html -------------------------------------------------------------------------------- /Adarsh/template/req.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/template/req.html -------------------------------------------------------------------------------- /Adarsh/utils/@Aadhi000: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Adarsh/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # (c) adarsh-goel 2 | -------------------------------------------------------------------------------- /Adarsh/utils/broadcast_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/utils/broadcast_helper.py -------------------------------------------------------------------------------- /Adarsh/utils/config_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/utils/config_parser.py -------------------------------------------------------------------------------- /Adarsh/utils/custom_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/utils/custom_dl.py -------------------------------------------------------------------------------- /Adarsh/utils/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/utils/database.py -------------------------------------------------------------------------------- /Adarsh/utils/file_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/utils/file_properties.py -------------------------------------------------------------------------------- /Adarsh/utils/file_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/utils/file_size.py -------------------------------------------------------------------------------- /Adarsh/utils/human_readable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/utils/human_readable.py -------------------------------------------------------------------------------- /Adarsh/utils/keepalive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/utils/keepalive.py -------------------------------------------------------------------------------- /Adarsh/utils/render_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/utils/render_template.py -------------------------------------------------------------------------------- /Adarsh/utils/time_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/utils/time_format.py -------------------------------------------------------------------------------- /Adarsh/vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/Adarsh/vars.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python -m Adarsh 2 | 3 | -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/README.MD -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/app.json -------------------------------------------------------------------------------- /png/opus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/png/opus.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KWICBOTS/kwichighspeedbot/HEAD/utils_bot.py --------------------------------------------------------------------------------