├── COPYING ├── Procfile ├── README.md ├── app.json ├── bot.py ├── helper_funcs ├── chat_base.py ├── display_progress.py ├── help_Nekmo_ffmpeg.py └── help_uploadbot.py ├── plugins ├── cb_buttons.py ├── custom_thumbnail.py ├── dl_button.py ├── help_text.py ├── youtube_dl_button.py └── youtube_dl_echo.py ├── requirements.txt ├── runtime.txt ├── sample_config.py └── translation.py /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/COPYING -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/bot.py -------------------------------------------------------------------------------- /helper_funcs/chat_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/helper_funcs/chat_base.py -------------------------------------------------------------------------------- /helper_funcs/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/helper_funcs/display_progress.py -------------------------------------------------------------------------------- /helper_funcs/help_Nekmo_ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/helper_funcs/help_Nekmo_ffmpeg.py -------------------------------------------------------------------------------- /helper_funcs/help_uploadbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/helper_funcs/help_uploadbot.py -------------------------------------------------------------------------------- /plugins/cb_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/plugins/cb_buttons.py -------------------------------------------------------------------------------- /plugins/custom_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/plugins/custom_thumbnail.py -------------------------------------------------------------------------------- /plugins/dl_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/plugins/dl_button.py -------------------------------------------------------------------------------- /plugins/help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/plugins/help_text.py -------------------------------------------------------------------------------- /plugins/youtube_dl_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/plugins/youtube_dl_button.py -------------------------------------------------------------------------------- /plugins/youtube_dl_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/plugins/youtube_dl_echo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.0 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/sample_config.py -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4nuu/URL-UPLOADER-TG/HEAD/translation.py --------------------------------------------------------------------------------