├── .gitignore ├── .idea └── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot ├── __init__.py ├── __main__.py ├── env.py ├── helpers │ ├── __init__.py │ ├── display.py │ ├── download_file.py │ ├── extract_file_info.py │ ├── file_send.py │ ├── linktofile.txt │ ├── remove_file.py │ ├── status.py │ ├── time.py │ └── tools.py ├── linktofile.py └── plugins │ ├── commands │ └── command.py │ └── utils │ └── incoming_message_handler.py ├── pyproject.toml ├── requirements.txt ├── test-requirements.txt └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m bot 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/app.json -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- 1 | from .linktofile import TG 2 | 3 | if __name__ == "__main__": 4 | TG().run() 5 | -------------------------------------------------------------------------------- /bot/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/env.py -------------------------------------------------------------------------------- /bot/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/helpers/__init__.py -------------------------------------------------------------------------------- /bot/helpers/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/helpers/display.py -------------------------------------------------------------------------------- /bot/helpers/download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/helpers/download_file.py -------------------------------------------------------------------------------- /bot/helpers/extract_file_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/helpers/extract_file_info.py -------------------------------------------------------------------------------- /bot/helpers/file_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/helpers/file_send.py -------------------------------------------------------------------------------- /bot/helpers/linktofile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bot/helpers/remove_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/helpers/remove_file.py -------------------------------------------------------------------------------- /bot/helpers/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/helpers/status.py -------------------------------------------------------------------------------- /bot/helpers/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/helpers/time.py -------------------------------------------------------------------------------- /bot/helpers/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/helpers/tools.py -------------------------------------------------------------------------------- /bot/linktofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/linktofile.py -------------------------------------------------------------------------------- /bot/plugins/commands/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/plugins/commands/command.py -------------------------------------------------------------------------------- /bot/plugins/utils/incoming_message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/bot/plugins/utils/incoming_message_handler.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/requirements.txt -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhint/Telegram-URL-Upload/HEAD/tox.ini --------------------------------------------------------------------------------