├── .gitignore ├── COPYING ├── Procfile ├── README.md ├── app.json ├── bot ├── __init__.py ├── __main__.py ├── bot.py ├── get_config.py ├── helpers │ ├── custom_filter.py │ ├── delall_bot_links.py │ ├── delete_messages.py │ ├── get_messages.py │ ├── gulmnek.py │ ├── help_for_14121.py │ └── make_user_join_chat.py ├── plugins │ ├── del_all.py │ ├── del_from.py │ ├── del_selective.py │ ├── del_to.py │ ├── dmca_del.py │ └── help_text.py └── user.py ├── requirements.txt ├── runtime.txt └── sample_config.env /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.session* 2 | config.env 3 | **/__pycache__ 4 | *.log 5 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/COPYING -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python -m bot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/app.json -------------------------------------------------------------------------------- /bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/__init__.py -------------------------------------------------------------------------------- /bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/__main__.py -------------------------------------------------------------------------------- /bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/bot.py -------------------------------------------------------------------------------- /bot/get_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/get_config.py -------------------------------------------------------------------------------- /bot/helpers/custom_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/helpers/custom_filter.py -------------------------------------------------------------------------------- /bot/helpers/delall_bot_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/helpers/delall_bot_links.py -------------------------------------------------------------------------------- /bot/helpers/delete_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/helpers/delete_messages.py -------------------------------------------------------------------------------- /bot/helpers/get_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/helpers/get_messages.py -------------------------------------------------------------------------------- /bot/helpers/gulmnek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/helpers/gulmnek.py -------------------------------------------------------------------------------- /bot/helpers/help_for_14121.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/helpers/help_for_14121.py -------------------------------------------------------------------------------- /bot/helpers/make_user_join_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/helpers/make_user_join_chat.py -------------------------------------------------------------------------------- /bot/plugins/del_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/plugins/del_all.py -------------------------------------------------------------------------------- /bot/plugins/del_from.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/plugins/del_from.py -------------------------------------------------------------------------------- /bot/plugins/del_selective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/plugins/del_selective.py -------------------------------------------------------------------------------- /bot/plugins/del_to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/plugins/del_to.py -------------------------------------------------------------------------------- /bot/plugins/dmca_del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/plugins/dmca_del.py -------------------------------------------------------------------------------- /bot/plugins/help_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/plugins/help_text.py -------------------------------------------------------------------------------- /bot/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/bot/user.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.7 -------------------------------------------------------------------------------- /sample_config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/DeleteMessagesRoBot/HEAD/sample_config.env --------------------------------------------------------------------------------