├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── bot.py ├── config.py ├── database ├── Tech_VJ ├── access.py ├── adduser.py ├── database.py └── users_chats_db.py ├── helper_funcs ├── TECH_VJ ├── display_progress.py ├── help_Nekmo_ffmpeg.py └── help_uploadbot.py ├── plugins ├── Tech_VJ ├── admin.py ├── broadcast.py ├── buttons.py ├── callback.py ├── custom_thumbnail.py ├── dl_button.py ├── forcesub.py ├── help_text.py ├── youtube_dl_button.py └── youtube_dl_echo.py ├── requirements.txt ├── runtime.txt ├── translation.py └── utils.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/app.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/config.py -------------------------------------------------------------------------------- /database/Tech_VJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/database/access.py -------------------------------------------------------------------------------- /database/adduser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/database/adduser.py -------------------------------------------------------------------------------- /database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/database/database.py -------------------------------------------------------------------------------- /database/users_chats_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/database/users_chats_db.py -------------------------------------------------------------------------------- /helper_funcs/TECH_VJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /helper_funcs/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/helper_funcs/display_progress.py -------------------------------------------------------------------------------- /helper_funcs/help_Nekmo_ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/helper_funcs/help_Nekmo_ffmpeg.py -------------------------------------------------------------------------------- /helper_funcs/help_uploadbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/helper_funcs/help_uploadbot.py -------------------------------------------------------------------------------- /plugins/Tech_VJ: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plugins/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/plugins/admin.py -------------------------------------------------------------------------------- /plugins/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/plugins/broadcast.py -------------------------------------------------------------------------------- /plugins/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/plugins/buttons.py -------------------------------------------------------------------------------- /plugins/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/plugins/callback.py -------------------------------------------------------------------------------- /plugins/custom_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/plugins/custom_thumbnail.py -------------------------------------------------------------------------------- /plugins/dl_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/plugins/dl_button.py -------------------------------------------------------------------------------- /plugins/forcesub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/plugins/forcesub.py -------------------------------------------------------------------------------- /plugins/help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/plugins/help_text.py -------------------------------------------------------------------------------- /plugins/youtube_dl_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/plugins/youtube_dl_button.py -------------------------------------------------------------------------------- /plugins/youtube_dl_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/plugins/youtube_dl_echo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.11.2 2 | -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/translation.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VJBots/VJ-Url-Uploader-Bot/HEAD/utils.py --------------------------------------------------------------------------------