├── CONTRIBUTING.md ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── requirements.txt ├── runtime.txt └── tg_bot ├── __init__.py ├── __main__.py ├── modules ├── __init__.py ├── admin.py ├── afk.py ├── antiflood.py ├── backups.py ├── bans.py ├── blacklist.py ├── connection.py ├── cust_filters.py ├── disable.py ├── extras.py ├── global_bans.py ├── global_kick.py ├── global_mutes.py ├── helper_funcs │ ├── chat_status.py │ ├── extraction.py │ ├── filters.py │ ├── handlers.py │ ├── misc.py │ ├── msg_types.py │ └── string_handling.py ├── keyboard.py ├── locks.py ├── log_channel.py ├── misc.py ├── msg_deleting.py ├── muting.py ├── notes.py ├── reactions.py ├── remote_cmds.py ├── reporting.py ├── rss.py ├── rules.py ├── sed.py ├── special.py ├── sql │ ├── __init__.py │ ├── afk_sql.py │ ├── antiflood_sql.py │ ├── blacklist_sql.py │ ├── connection_sql.py │ ├── cust_filters_sql.py │ ├── disable_sql.py │ ├── global_bans_sql.py │ ├── global_mutes_sql.py │ ├── locks_sql.py │ ├── log_channel_sql.py │ ├── notes_sql.py │ ├── reporting_sql.py │ ├── rss_sql.py │ ├── rules_sql.py │ ├── userinfo_sql.py │ ├── users_sql.py │ ├── warns_sql.py │ └── welcome_sql.py ├── translation.py ├── translator.py ├── tts.py ├── ud.py ├── userinfo.py ├── users.py ├── warns.py ├── welcome.py └── zalgo.py └── sample_config.py /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python3 -m tg_bot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/app.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.6 2 | -------------------------------------------------------------------------------- /tg_bot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/__init__.py -------------------------------------------------------------------------------- /tg_bot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/__main__.py -------------------------------------------------------------------------------- /tg_bot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/__init__.py -------------------------------------------------------------------------------- /tg_bot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/admin.py -------------------------------------------------------------------------------- /tg_bot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/afk.py -------------------------------------------------------------------------------- /tg_bot/modules/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/antiflood.py -------------------------------------------------------------------------------- /tg_bot/modules/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/backups.py -------------------------------------------------------------------------------- /tg_bot/modules/bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/bans.py -------------------------------------------------------------------------------- /tg_bot/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/blacklist.py -------------------------------------------------------------------------------- /tg_bot/modules/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/connection.py -------------------------------------------------------------------------------- /tg_bot/modules/cust_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/cust_filters.py -------------------------------------------------------------------------------- /tg_bot/modules/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/disable.py -------------------------------------------------------------------------------- /tg_bot/modules/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/extras.py -------------------------------------------------------------------------------- /tg_bot/modules/global_bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/global_bans.py -------------------------------------------------------------------------------- /tg_bot/modules/global_kick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/global_kick.py -------------------------------------------------------------------------------- /tg_bot/modules/global_mutes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/global_mutes.py -------------------------------------------------------------------------------- /tg_bot/modules/helper_funcs/chat_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/helper_funcs/chat_status.py -------------------------------------------------------------------------------- /tg_bot/modules/helper_funcs/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/helper_funcs/extraction.py -------------------------------------------------------------------------------- /tg_bot/modules/helper_funcs/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/helper_funcs/filters.py -------------------------------------------------------------------------------- /tg_bot/modules/helper_funcs/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/helper_funcs/handlers.py -------------------------------------------------------------------------------- /tg_bot/modules/helper_funcs/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/helper_funcs/misc.py -------------------------------------------------------------------------------- /tg_bot/modules/helper_funcs/msg_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/helper_funcs/msg_types.py -------------------------------------------------------------------------------- /tg_bot/modules/helper_funcs/string_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/helper_funcs/string_handling.py -------------------------------------------------------------------------------- /tg_bot/modules/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/keyboard.py -------------------------------------------------------------------------------- /tg_bot/modules/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/locks.py -------------------------------------------------------------------------------- /tg_bot/modules/log_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/log_channel.py -------------------------------------------------------------------------------- /tg_bot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/misc.py -------------------------------------------------------------------------------- /tg_bot/modules/msg_deleting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/msg_deleting.py -------------------------------------------------------------------------------- /tg_bot/modules/muting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/muting.py -------------------------------------------------------------------------------- /tg_bot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/notes.py -------------------------------------------------------------------------------- /tg_bot/modules/reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/reactions.py -------------------------------------------------------------------------------- /tg_bot/modules/remote_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/remote_cmds.py -------------------------------------------------------------------------------- /tg_bot/modules/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/reporting.py -------------------------------------------------------------------------------- /tg_bot/modules/rss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/rss.py -------------------------------------------------------------------------------- /tg_bot/modules/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/rules.py -------------------------------------------------------------------------------- /tg_bot/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sed.py -------------------------------------------------------------------------------- /tg_bot/modules/special.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/special.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/__init__.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/afk_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/afk_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/antiflood_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/blacklist_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/connection_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/connection_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/cust_filters_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/cust_filters_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/disable_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/disable_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/global_bans_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/global_bans_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/global_mutes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/global_mutes_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/locks_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/locks_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/log_channel_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/log_channel_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/notes_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/reporting_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/reporting_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/rss_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/rss_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/rules_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/rules_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/userinfo_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/userinfo_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/users_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/users_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/warns_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/sql/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/sql/welcome_sql.py -------------------------------------------------------------------------------- /tg_bot/modules/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/translation.py -------------------------------------------------------------------------------- /tg_bot/modules/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/translator.py -------------------------------------------------------------------------------- /tg_bot/modules/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/tts.py -------------------------------------------------------------------------------- /tg_bot/modules/ud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/ud.py -------------------------------------------------------------------------------- /tg_bot/modules/userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/userinfo.py -------------------------------------------------------------------------------- /tg_bot/modules/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/users.py -------------------------------------------------------------------------------- /tg_bot/modules/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/warns.py -------------------------------------------------------------------------------- /tg_bot/modules/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/welcome.py -------------------------------------------------------------------------------- /tg_bot/modules/zalgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/modules/zalgo.py -------------------------------------------------------------------------------- /tg_bot/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGExplore/Marie-2.0-English/HEAD/tg_bot/sample_config.py --------------------------------------------------------------------------------