├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── app ├── __main__.py ├── config.py ├── generate_session_string.py ├── routes.py ├── telegram.py ├── util.py └── views.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.session 2 | .idea/ 3 | __pycache__/ 4 | venv/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanvikash/teledaxapi/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python3 -m app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanvikash/teledaxapi/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanvikash/teledaxapi/HEAD/app.json -------------------------------------------------------------------------------- /app/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanvikash/teledaxapi/HEAD/app/__main__.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanvikash/teledaxapi/HEAD/app/config.py -------------------------------------------------------------------------------- /app/generate_session_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanvikash/teledaxapi/HEAD/app/generate_session_string.py -------------------------------------------------------------------------------- /app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanvikash/teledaxapi/HEAD/app/routes.py -------------------------------------------------------------------------------- /app/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanvikash/teledaxapi/HEAD/app/telegram.py -------------------------------------------------------------------------------- /app/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanvikash/teledaxapi/HEAD/app/util.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanvikash/teledaxapi/HEAD/app/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | 3 | telethon>=1.16.4 4 | cryptg 5 | python-dotenv 6 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.5 2 | --------------------------------------------------------------------------------