├── .gitattributes ├── .gitignore ├── DewmiBot ├── __init__.py ├── __main__.py ├── elevated_users.json ├── events.py ├── modules │ ├── ForceSubscribe.py │ ├── MoreTools.py │ ├── __init__.py │ ├── admin.py │ ├── afk.py │ ├── anime.py │ ├── animequotes.py │ ├── animequotesstring.py │ ├── antiflood.py │ ├── approve.py │ ├── backups.py │ ├── bans.py │ ├── blacklist.py │ ├── blacklist_stickers.py │ ├── blacklistusers.py │ ├── callback.py │ ├── chatbot.py │ ├── cleaner.py │ ├── config.yml │ ├── connection.py │ ├── covid.py │ ├── currency_converter.py │ ├── cust_filters.py │ ├── dbcleanup.py │ ├── debug.py │ ├── dev.py │ ├── disable.py │ ├── disasters.py │ ├── eval.py │ ├── feds.py │ ├── get_common_chats.py │ ├── gettime.py │ ├── global_bans.py │ ├── gps.py │ ├── grammer.py │ ├── gsearch.py │ ├── gtranslator.py │ ├── helper_funcs │ │ ├── admin_rights.py │ │ ├── alternate.py │ │ ├── chat_status.py │ │ ├── extraction.py │ │ ├── filters.py │ │ ├── fun_strings.py │ │ ├── handlers.py │ │ ├── misc.py │ │ ├── msg_types.py │ │ ├── readable_time.py │ │ ├── regex_helper.py │ │ ├── string_handling.py │ │ └── telethn │ │ │ ├── __init__.py │ │ │ └── chatstatus.py │ ├── imdb.py │ ├── locks.py │ ├── log_channel.py │ ├── math.py │ ├── meme.py │ ├── memes.py │ ├── misc.py │ ├── modules.py │ ├── music.py │ ├── muting.py │ ├── notes.py │ ├── phone.py │ ├── ping.py │ ├── plet.py │ ├── purge.py │ ├── qoutly.py │ ├── reactions.py │ ├── remote_cmds.py │ ├── reporting.py │ ├── reverse.py │ ├── rules.py │ ├── send.py │ ├── shell.py │ ├── songs.py │ ├── speed_test.py │ ├── sql │ │ ├── __init__.py │ │ ├── afk_sql.py │ │ ├── antiarabic_sql.py │ │ ├── antiflood_sql.py │ │ ├── approve_sql.py │ │ ├── blacklist_sql.py │ │ ├── blacklistusers_sql.py │ │ ├── blsticker_sql.py │ │ ├── chatbot_sql.py │ │ ├── cleaner_sql.py │ │ ├── connection_sql.py │ │ ├── cust_filters_sql.py │ │ ├── disable_sql.py │ │ ├── feds_sql.py │ │ ├── forceSubscribe_sql.py │ │ ├── global_bans_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 │ ├── stickers.py │ ├── stt.py │ ├── styletext.py │ ├── tagger.py │ ├── telethnfun.py │ ├── thonkify_dict.py │ ├── tts.py │ ├── upload.py │ ├── urluploader.py │ ├── userinfo.py │ ├── users.py │ ├── video.py │ ├── wallpaper.py │ ├── warns.py │ ├── welcome.py │ ├── whatanime.py │ ├── whois.py │ ├── wiki.py │ ├── yt.py │ ├── ytdl.py │ ├── zipper.py │ └── zombie.py ├── mwt.py ├── sample_config.py └── utils │ ├── __init__.py │ ├── exceptions.py │ ├── progress.py │ ├── tools.py │ ├── uputils.py │ └── ut.py ├── Downloads └── dewmibot ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── heroku.yml ├── requirements.txt └── runtime.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/.gitignore -------------------------------------------------------------------------------- /DewmiBot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/__init__.py -------------------------------------------------------------------------------- /DewmiBot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/__main__.py -------------------------------------------------------------------------------- /DewmiBot/elevated_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/elevated_users.json -------------------------------------------------------------------------------- /DewmiBot/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/events.py -------------------------------------------------------------------------------- /DewmiBot/modules/ForceSubscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/ForceSubscribe.py -------------------------------------------------------------------------------- /DewmiBot/modules/MoreTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/MoreTools.py -------------------------------------------------------------------------------- /DewmiBot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/__init__.py -------------------------------------------------------------------------------- /DewmiBot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/admin.py -------------------------------------------------------------------------------- /DewmiBot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/afk.py -------------------------------------------------------------------------------- /DewmiBot/modules/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/anime.py -------------------------------------------------------------------------------- /DewmiBot/modules/animequotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/animequotes.py -------------------------------------------------------------------------------- /DewmiBot/modules/animequotesstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/animequotesstring.py -------------------------------------------------------------------------------- /DewmiBot/modules/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/antiflood.py -------------------------------------------------------------------------------- /DewmiBot/modules/approve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/approve.py -------------------------------------------------------------------------------- /DewmiBot/modules/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/backups.py -------------------------------------------------------------------------------- /DewmiBot/modules/bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/bans.py -------------------------------------------------------------------------------- /DewmiBot/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/blacklist.py -------------------------------------------------------------------------------- /DewmiBot/modules/blacklist_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/blacklist_stickers.py -------------------------------------------------------------------------------- /DewmiBot/modules/blacklistusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/blacklistusers.py -------------------------------------------------------------------------------- /DewmiBot/modules/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/callback.py -------------------------------------------------------------------------------- /DewmiBot/modules/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/chatbot.py -------------------------------------------------------------------------------- /DewmiBot/modules/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/cleaner.py -------------------------------------------------------------------------------- /DewmiBot/modules/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/config.yml -------------------------------------------------------------------------------- /DewmiBot/modules/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/connection.py -------------------------------------------------------------------------------- /DewmiBot/modules/covid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/covid.py -------------------------------------------------------------------------------- /DewmiBot/modules/currency_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/currency_converter.py -------------------------------------------------------------------------------- /DewmiBot/modules/cust_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/cust_filters.py -------------------------------------------------------------------------------- /DewmiBot/modules/dbcleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/dbcleanup.py -------------------------------------------------------------------------------- /DewmiBot/modules/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/debug.py -------------------------------------------------------------------------------- /DewmiBot/modules/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/dev.py -------------------------------------------------------------------------------- /DewmiBot/modules/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/disable.py -------------------------------------------------------------------------------- /DewmiBot/modules/disasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/disasters.py -------------------------------------------------------------------------------- /DewmiBot/modules/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/eval.py -------------------------------------------------------------------------------- /DewmiBot/modules/feds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/feds.py -------------------------------------------------------------------------------- /DewmiBot/modules/get_common_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/get_common_chats.py -------------------------------------------------------------------------------- /DewmiBot/modules/gettime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/gettime.py -------------------------------------------------------------------------------- /DewmiBot/modules/global_bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/global_bans.py -------------------------------------------------------------------------------- /DewmiBot/modules/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/gps.py -------------------------------------------------------------------------------- /DewmiBot/modules/grammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/grammer.py -------------------------------------------------------------------------------- /DewmiBot/modules/gsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/gsearch.py -------------------------------------------------------------------------------- /DewmiBot/modules/gtranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/gtranslator.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/admin_rights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/admin_rights.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/alternate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/alternate.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/chat_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/chat_status.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/extraction.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/filters.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/fun_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/fun_strings.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/handlers.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/misc.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/msg_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/msg_types.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/readable_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/readable_time.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/regex_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/regex_helper.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/string_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/string_handling.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/telethn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/telethn/__init__.py -------------------------------------------------------------------------------- /DewmiBot/modules/helper_funcs/telethn/chatstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/helper_funcs/telethn/chatstatus.py -------------------------------------------------------------------------------- /DewmiBot/modules/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/imdb.py -------------------------------------------------------------------------------- /DewmiBot/modules/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/locks.py -------------------------------------------------------------------------------- /DewmiBot/modules/log_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/log_channel.py -------------------------------------------------------------------------------- /DewmiBot/modules/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/math.py -------------------------------------------------------------------------------- /DewmiBot/modules/meme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/meme.py -------------------------------------------------------------------------------- /DewmiBot/modules/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/memes.py -------------------------------------------------------------------------------- /DewmiBot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/misc.py -------------------------------------------------------------------------------- /DewmiBot/modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/modules.py -------------------------------------------------------------------------------- /DewmiBot/modules/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/music.py -------------------------------------------------------------------------------- /DewmiBot/modules/muting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/muting.py -------------------------------------------------------------------------------- /DewmiBot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/notes.py -------------------------------------------------------------------------------- /DewmiBot/modules/phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/phone.py -------------------------------------------------------------------------------- /DewmiBot/modules/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/ping.py -------------------------------------------------------------------------------- /DewmiBot/modules/plet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/plet.py -------------------------------------------------------------------------------- /DewmiBot/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/purge.py -------------------------------------------------------------------------------- /DewmiBot/modules/qoutly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/qoutly.py -------------------------------------------------------------------------------- /DewmiBot/modules/reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/reactions.py -------------------------------------------------------------------------------- /DewmiBot/modules/remote_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/remote_cmds.py -------------------------------------------------------------------------------- /DewmiBot/modules/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/reporting.py -------------------------------------------------------------------------------- /DewmiBot/modules/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/reverse.py -------------------------------------------------------------------------------- /DewmiBot/modules/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/rules.py -------------------------------------------------------------------------------- /DewmiBot/modules/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/send.py -------------------------------------------------------------------------------- /DewmiBot/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/shell.py -------------------------------------------------------------------------------- /DewmiBot/modules/songs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/songs.py -------------------------------------------------------------------------------- /DewmiBot/modules/speed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/speed_test.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/__init__.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/afk_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/afk_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/antiarabic_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/antiarabic_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/antiflood_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/approve_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/approve_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/blacklist_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/blacklistusers_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/blacklistusers_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/blsticker_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/blsticker_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/chatbot_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/chatbot_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/cleaner_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/cleaner_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/connection_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/connection_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/cust_filters_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/cust_filters_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/disable_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/disable_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/feds_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/feds_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/forceSubscribe_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/forceSubscribe_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/global_bans_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/global_bans_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/locks_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/locks_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/log_channel_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/log_channel_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/notes_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/reporting_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/reporting_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/rss_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/rss_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/rules_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/rules_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/userinfo_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/userinfo_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/users_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/users_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/warns_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/sql/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/sql/welcome_sql.py -------------------------------------------------------------------------------- /DewmiBot/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/stickers.py -------------------------------------------------------------------------------- /DewmiBot/modules/stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/stt.py -------------------------------------------------------------------------------- /DewmiBot/modules/styletext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/styletext.py -------------------------------------------------------------------------------- /DewmiBot/modules/tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/tagger.py -------------------------------------------------------------------------------- /DewmiBot/modules/telethnfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/telethnfun.py -------------------------------------------------------------------------------- /DewmiBot/modules/thonkify_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/thonkify_dict.py -------------------------------------------------------------------------------- /DewmiBot/modules/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/tts.py -------------------------------------------------------------------------------- /DewmiBot/modules/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/upload.py -------------------------------------------------------------------------------- /DewmiBot/modules/urluploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/urluploader.py -------------------------------------------------------------------------------- /DewmiBot/modules/userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/userinfo.py -------------------------------------------------------------------------------- /DewmiBot/modules/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/users.py -------------------------------------------------------------------------------- /DewmiBot/modules/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/video.py -------------------------------------------------------------------------------- /DewmiBot/modules/wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/wallpaper.py -------------------------------------------------------------------------------- /DewmiBot/modules/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/warns.py -------------------------------------------------------------------------------- /DewmiBot/modules/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/welcome.py -------------------------------------------------------------------------------- /DewmiBot/modules/whatanime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/whatanime.py -------------------------------------------------------------------------------- /DewmiBot/modules/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/whois.py -------------------------------------------------------------------------------- /DewmiBot/modules/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/wiki.py -------------------------------------------------------------------------------- /DewmiBot/modules/yt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/yt.py -------------------------------------------------------------------------------- /DewmiBot/modules/ytdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/ytdl.py -------------------------------------------------------------------------------- /DewmiBot/modules/zipper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/zipper.py -------------------------------------------------------------------------------- /DewmiBot/modules/zombie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/modules/zombie.py -------------------------------------------------------------------------------- /DewmiBot/mwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/mwt.py -------------------------------------------------------------------------------- /DewmiBot/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/sample_config.py -------------------------------------------------------------------------------- /DewmiBot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/utils/__init__.py -------------------------------------------------------------------------------- /DewmiBot/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/utils/exceptions.py -------------------------------------------------------------------------------- /DewmiBot/utils/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/utils/progress.py -------------------------------------------------------------------------------- /DewmiBot/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/utils/tools.py -------------------------------------------------------------------------------- /DewmiBot/utils/uputils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/utils/uputils.py -------------------------------------------------------------------------------- /DewmiBot/utils/ut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/DewmiBot/utils/ut.py -------------------------------------------------------------------------------- /Downloads/dewmibot: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/app.json -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/heroku.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirunaofficial/Telegram-Group-Management-Bot-DewmiBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.6 2 | --------------------------------------------------------------------------------