├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── Script.py ├── TechVJ ├── TechVJ ├── __init__.py ├── bot │ ├── TechVJ │ ├── __init__.py │ └── clients.py ├── server │ ├── TechVJ │ └── exceptions.py ├── template │ ├── TechVJ │ ├── dl.html │ └── req.html └── util │ ├── TechVJ │ ├── config_parser.py │ ├── custom_dl.py │ ├── file_properties.py │ ├── file_size.py │ ├── human_readable.py │ ├── keepalive.py │ ├── render_template.py │ └── time_format.py ├── bot.py ├── database └── users_chats_db.py ├── info.py ├── logging.conf ├── plugins ├── __init__.py ├── broadcast.py ├── route.py └── start.py ├── requirements.txt ├── runtime.txt └── utils.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python -m Adarsh 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/README.md -------------------------------------------------------------------------------- /Script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/Script.py -------------------------------------------------------------------------------- /TechVJ/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TechVJ/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/__init__.py -------------------------------------------------------------------------------- /TechVJ/bot/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TechVJ/bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/bot/__init__.py -------------------------------------------------------------------------------- /TechVJ/bot/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/bot/clients.py -------------------------------------------------------------------------------- /TechVJ/server/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TechVJ/server/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/server/exceptions.py -------------------------------------------------------------------------------- /TechVJ/template/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TechVJ/template/dl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/template/dl.html -------------------------------------------------------------------------------- /TechVJ/template/req.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/template/req.html -------------------------------------------------------------------------------- /TechVJ/util/TechVJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TechVJ/util/config_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/util/config_parser.py -------------------------------------------------------------------------------- /TechVJ/util/custom_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/util/custom_dl.py -------------------------------------------------------------------------------- /TechVJ/util/file_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/util/file_properties.py -------------------------------------------------------------------------------- /TechVJ/util/file_size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/util/file_size.py -------------------------------------------------------------------------------- /TechVJ/util/human_readable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/util/human_readable.py -------------------------------------------------------------------------------- /TechVJ/util/keepalive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/util/keepalive.py -------------------------------------------------------------------------------- /TechVJ/util/render_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/util/render_template.py -------------------------------------------------------------------------------- /TechVJ/util/time_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/TechVJ/util/time_format.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/bot.py -------------------------------------------------------------------------------- /database/users_chats_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/database/users_chats_db.py -------------------------------------------------------------------------------- /info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/info.py -------------------------------------------------------------------------------- /logging.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/logging.conf -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/plugins/__init__.py -------------------------------------------------------------------------------- /plugins/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/plugins/broadcast.py -------------------------------------------------------------------------------- /plugins/route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/plugins/route.py -------------------------------------------------------------------------------- /plugins/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/plugins/start.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.8 2 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/FileToLink/HEAD/utils.py --------------------------------------------------------------------------------