├── .gitignore ├── GenerateStringSession.py ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── requirements.txt ├── runtime.txt ├── setup.py └── tgfilestream ├── __init__.py ├── __main__.py ├── config.py ├── log.py ├── paralleltransfer.py ├── telegram.py ├── util.py └── web_routes.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/.gitignore -------------------------------------------------------------------------------- /GenerateStringSession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/GenerateStringSession.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python3 -m tgfilestream 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/app.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | yarl 3 | telethon==1.15.0 4 | cryptg 5 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.6 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/setup.py -------------------------------------------------------------------------------- /tgfilestream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/tgfilestream/__init__.py -------------------------------------------------------------------------------- /tgfilestream/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/tgfilestream/__main__.py -------------------------------------------------------------------------------- /tgfilestream/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/tgfilestream/config.py -------------------------------------------------------------------------------- /tgfilestream/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/tgfilestream/log.py -------------------------------------------------------------------------------- /tgfilestream/paralleltransfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/tgfilestream/paralleltransfer.py -------------------------------------------------------------------------------- /tgfilestream/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/tgfilestream/telegram.py -------------------------------------------------------------------------------- /tgfilestream/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/tgfilestream/util.py -------------------------------------------------------------------------------- /tgfilestream/web_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/TG-Files-to-Link/HEAD/tgfilestream/web_routes.py --------------------------------------------------------------------------------