├── .gitattributes ├── .gitignore ├── COPYING ├── Procfile ├── README.md ├── app.json ├── bot.py ├── database ├── __init__.py ├── blacklist.py └── userchats.py ├── helpers ├── download_uplaod_helper.py └── files_spliiting.py ├── plugins ├── admin_folder_delete.py ├── blacklist.py ├── broadcast.py ├── caption.py ├── custom_thumbnail.py ├── help_text.py └── megadl.py ├── requirements.txt ├── runtime.txt ├── sample_config.py └── translation.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/COPYING -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/bot.py -------------------------------------------------------------------------------- /database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/database/__init__.py -------------------------------------------------------------------------------- /database/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/database/blacklist.py -------------------------------------------------------------------------------- /database/userchats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/database/userchats.py -------------------------------------------------------------------------------- /helpers/download_uplaod_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/helpers/download_uplaod_helper.py -------------------------------------------------------------------------------- /helpers/files_spliiting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/helpers/files_spliiting.py -------------------------------------------------------------------------------- /plugins/admin_folder_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/plugins/admin_folder_delete.py -------------------------------------------------------------------------------- /plugins/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/plugins/blacklist.py -------------------------------------------------------------------------------- /plugins/broadcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/plugins/broadcast.py -------------------------------------------------------------------------------- /plugins/caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/plugins/caption.py -------------------------------------------------------------------------------- /plugins/custom_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/plugins/custom_thumbnail.py -------------------------------------------------------------------------------- /plugins/help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/plugins/help_text.py -------------------------------------------------------------------------------- /plugins/megadl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/plugins/megadl.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.6 2 | -------------------------------------------------------------------------------- /sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/sample_config.py -------------------------------------------------------------------------------- /translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TharukRenuja/mega-link-downloader-bot/HEAD/translation.py --------------------------------------------------------------------------------