├── LICENSE ├── Procfile ├── README.md ├── Script.py ├── TechVJ ├── __init__.py ├── bot │ ├── TechVJ │ ├── __init__.py │ └── clients.py ├── server │ ├── TechVJ │ ├── __init__.py │ ├── exceptions.py │ └── stream_routes.py ├── template │ ├── TechVJ │ ├── dl.html │ └── req.html └── utils │ ├── TechVJ │ ├── config_parser.py │ ├── custom_dl.py │ ├── file_properties.py │ ├── file_size.py │ ├── human_readable.py │ ├── keepalive.py │ ├── render_template.py │ └── time_format.py ├── app.py ├── bot.py ├── clone_plugins ├── TechVJ ├── broadcast.py ├── commands.py ├── dbusers.py ├── genlink.py └── users_api.py ├── config.py ├── logging.conf ├── plugins ├── TechVJ ├── broadcast.py ├── clone.py ├── commands.py ├── database.py ├── dbusers.py ├── genlink.py └── users_api.py ├── requirements.txt ├── run cmd.txt └── runtime.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/README.md -------------------------------------------------------------------------------- /Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/Script.py -------------------------------------------------------------------------------- /TechVJ/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/__init__.py -------------------------------------------------------------------------------- /TechVJ/bot/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TechVJ/bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/bot/__init__.py -------------------------------------------------------------------------------- /TechVJ/bot/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/bot/clients.py -------------------------------------------------------------------------------- /TechVJ/server/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TechVJ/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/server/__init__.py -------------------------------------------------------------------------------- /TechVJ/server/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/server/exceptions.py -------------------------------------------------------------------------------- /TechVJ/server/stream_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/server/stream_routes.py -------------------------------------------------------------------------------- /TechVJ/template/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TechVJ/template/dl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/template/dl.html -------------------------------------------------------------------------------- /TechVJ/template/req.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/template/req.html -------------------------------------------------------------------------------- /TechVJ/utils/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TechVJ/utils/config_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/utils/config_parser.py -------------------------------------------------------------------------------- /TechVJ/utils/custom_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/utils/custom_dl.py -------------------------------------------------------------------------------- /TechVJ/utils/file_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/utils/file_properties.py -------------------------------------------------------------------------------- /TechVJ/utils/file_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/utils/file_size.py -------------------------------------------------------------------------------- /TechVJ/utils/human_readable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/utils/human_readable.py -------------------------------------------------------------------------------- /TechVJ/utils/keepalive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/utils/keepalive.py -------------------------------------------------------------------------------- /TechVJ/utils/render_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/utils/render_template.py -------------------------------------------------------------------------------- /TechVJ/utils/time_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/TechVJ/utils/time_format.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/app.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/bot.py -------------------------------------------------------------------------------- /clone_plugins/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /clone_plugins/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/clone_plugins/broadcast.py -------------------------------------------------------------------------------- /clone_plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/clone_plugins/commands.py -------------------------------------------------------------------------------- /clone_plugins/dbusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/clone_plugins/dbusers.py -------------------------------------------------------------------------------- /clone_plugins/genlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/clone_plugins/genlink.py -------------------------------------------------------------------------------- /clone_plugins/users_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/clone_plugins/users_api.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/config.py -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/logging.conf -------------------------------------------------------------------------------- /plugins/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/plugins/broadcast.py -------------------------------------------------------------------------------- /plugins/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/plugins/clone.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /plugins/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/plugins/database.py -------------------------------------------------------------------------------- /plugins/dbusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/plugins/dbusers.py -------------------------------------------------------------------------------- /plugins/genlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/plugins/genlink.py -------------------------------------------------------------------------------- /plugins/users_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/plugins/users_api.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechHeroYT/file-store-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run cmd.txt: -------------------------------------------------------------------------------- 1 | gunicorn app:app & python3 bot.py 2 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.8 2 | --------------------------------------------------------------------------------