├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot ├── __init__.py ├── __main__.py ├── env.py ├── filetocloud.py ├── helpers │ ├── __init__.py │ ├── display.py │ ├── file_download.py │ ├── keyboard.py │ ├── servers.py │ ├── time.py │ └── upload.py └── plugins │ ├── commands │ ├── help.py │ └── start.py │ └── utils │ ├── callback.py │ └── media_handling.py ├── requirements.txt ├── runtime.txt └── sample_config.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m bot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/app.json -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/env.py -------------------------------------------------------------------------------- /bot/filetocloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/filetocloud.py -------------------------------------------------------------------------------- /bot/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/helpers/__init__.py -------------------------------------------------------------------------------- /bot/helpers/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/helpers/display.py -------------------------------------------------------------------------------- /bot/helpers/file_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/helpers/file_download.py -------------------------------------------------------------------------------- /bot/helpers/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/helpers/keyboard.py -------------------------------------------------------------------------------- /bot/helpers/servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/helpers/servers.py -------------------------------------------------------------------------------- /bot/helpers/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/helpers/time.py -------------------------------------------------------------------------------- /bot/helpers/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/helpers/upload.py -------------------------------------------------------------------------------- /bot/plugins/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/plugins/commands/help.py -------------------------------------------------------------------------------- /bot/plugins/commands/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/plugins/commands/start.py -------------------------------------------------------------------------------- /bot/plugins/utils/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/plugins/utils/callback.py -------------------------------------------------------------------------------- /bot/plugins/utils/media_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/bot/plugins/utils/media_handling.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pyrogram 2 | TgCrypto 3 | aiohttp 4 | hurry.filesize 5 | python-dotenv -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.1 -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/TelegramFilestoCloud/HEAD/sample_config.py --------------------------------------------------------------------------------