├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── bot.py ├── library ├── buttons.py ├── display_progress.py ├── extract.py └── info.py ├── plugins ├── callback.py ├── commands.py ├── inline.py ├── thumbail.py ├── youtube_dl_button.py └── youtube_dl_echo.py ├── presets.py ├── requirements.txt ├── runtime.txt └── sample_config.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/bot.py -------------------------------------------------------------------------------- /library/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/library/buttons.py -------------------------------------------------------------------------------- /library/display_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/library/display_progress.py -------------------------------------------------------------------------------- /library/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/library/extract.py -------------------------------------------------------------------------------- /library/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/library/info.py -------------------------------------------------------------------------------- /plugins/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/plugins/callback.py -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /plugins/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/plugins/inline.py -------------------------------------------------------------------------------- /plugins/thumbail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/plugins/thumbail.py -------------------------------------------------------------------------------- /plugins/youtube_dl_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/plugins/youtube_dl_button.py -------------------------------------------------------------------------------- /plugins/youtube_dl_echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/plugins/youtube_dl_echo.py -------------------------------------------------------------------------------- /presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/presets.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.7 -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishivam1/ytdl/HEAD/sample_config.py --------------------------------------------------------------------------------