├── .gitattributes ├── .gitignore ├── Procfile ├── README.md ├── app.json ├── main ├── __init__.py ├── __main__.py ├── bot │ ├── __init__.py │ ├── clients.py │ └── plugins │ │ ├── callback.py │ │ ├── start.py │ │ └── stream.py ├── server │ ├── __init__.py │ ├── exceptions.py │ └── stream_routes.py ├── template │ ├── dl.html │ └── req.html ├── utils │ ├── Translation.py │ ├── __init__.py │ ├── config_parser.py │ ├── custom_dl.py │ ├── file_properties.py │ ├── human_readable.py │ ├── keepalive.py │ ├── render_template.py │ └── time_format.py └── vars.py ├── requirements.txt └── runtime.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python -m main -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/app.json -------------------------------------------------------------------------------- /main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/__init__.py -------------------------------------------------------------------------------- /main/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/__main__.py -------------------------------------------------------------------------------- /main/bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/bot/__init__.py -------------------------------------------------------------------------------- /main/bot/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/bot/clients.py -------------------------------------------------------------------------------- /main/bot/plugins/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/bot/plugins/callback.py -------------------------------------------------------------------------------- /main/bot/plugins/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/bot/plugins/start.py -------------------------------------------------------------------------------- /main/bot/plugins/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/bot/plugins/stream.py -------------------------------------------------------------------------------- /main/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/server/__init__.py -------------------------------------------------------------------------------- /main/server/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/server/exceptions.py -------------------------------------------------------------------------------- /main/server/stream_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/server/stream_routes.py -------------------------------------------------------------------------------- /main/template/dl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/template/dl.html -------------------------------------------------------------------------------- /main/template/req.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/template/req.html -------------------------------------------------------------------------------- /main/utils/Translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/utils/Translation.py -------------------------------------------------------------------------------- /main/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/utils/__init__.py -------------------------------------------------------------------------------- /main/utils/config_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/utils/config_parser.py -------------------------------------------------------------------------------- /main/utils/custom_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/utils/custom_dl.py -------------------------------------------------------------------------------- /main/utils/file_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/utils/file_properties.py -------------------------------------------------------------------------------- /main/utils/human_readable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/utils/human_readable.py -------------------------------------------------------------------------------- /main/utils/keepalive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/utils/keepalive.py -------------------------------------------------------------------------------- /main/utils/render_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/utils/render_template.py -------------------------------------------------------------------------------- /main/utils/time_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/utils/time_format.py -------------------------------------------------------------------------------- /main/vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechShreyash/TG-Direct-Link-Generator/HEAD/main/vars.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | pyrogram==1.4.12 3 | python-dotenv 4 | tgcrypto 5 | aiofiles 6 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.11 2 | --------------------------------------------------------------------------------