├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── workflows │ └── pylint.yml ├── Data └── bot_conf.yaml.example ├── Dockerfile ├── Git_Pull.bat ├── Git_Push.bat ├── LICENSE ├── Procfile ├── README.md ├── Setup venv.bat ├── SophiaBot ├── Addons │ └── ImageEditor │ │ ├── edit_1.py │ │ ├── edit_2.py │ │ ├── edit_3.py │ │ ├── edit_4.py │ │ └── edit_5.py ├── __init__.py ├── __main__.py ├── conf.py ├── core │ └── decorators │ │ └── errors.py ├── db │ └── mongohelpers │ │ ├── mongo.py │ │ ├── mongo2.py │ │ └── mongo3.py ├── events.py ├── function │ ├── carbonhelper.py │ ├── coupledb.py │ └── karmadb.py ├── helper_extra │ ├── admin_rights.py │ ├── aichat.py │ └── badmedia.py ├── helpers │ └── errors.py ├── modules │ ├── __init__.py │ ├── admin.py │ ├── afk.py │ ├── anime.py │ ├── antiflood.py │ ├── antivirus.py │ ├── approve.py │ ├── backups.py │ ├── bans.py │ ├── blacklist.py │ ├── blacklist_stickers.py │ ├── blacklistusers.py │ ├── books.py │ ├── camscanner.py │ ├── chatbot.py │ ├── cleaner.py │ ├── connection.py │ ├── core.py │ ├── country.py │ ├── couple.py │ ├── covid_info.py │ ├── cricketscore.py │ ├── currency_converter.py │ ├── cust_filters.py │ ├── dbcleanup.py │ ├── debug.py │ ├── dev.py │ ├── disable.py │ ├── disasters.py │ ├── encrypt.py │ ├── english.py │ ├── error_handler.py │ ├── eval.py │ ├── fakeit.py │ ├── feds.py │ ├── forcesubs.py │ ├── fun.py │ ├── fun_strings.py │ ├── games.py │ ├── get_common_chats.py │ ├── gettime.py │ ├── global_bans.py │ ├── google.py │ ├── gps.py │ ├── groupgardian.py │ ├── gtranslator.py │ ├── helper_funcs │ │ ├── __init__.py │ │ ├── alternate.py │ │ ├── chat_status.py │ │ ├── extraction.py │ │ ├── filters.py │ │ ├── handlers.py │ │ ├── misc.py │ │ ├── msg_types.py │ │ ├── regex_helper.py │ │ ├── string_handling.py │ │ ├── string_store.py │ │ └── telethn │ │ │ ├── __init__.py │ │ │ └── chatstatus.py │ ├── heroku.py │ ├── imdb.py │ ├── imgeditor.py │ ├── karma.py │ ├── locks.py │ ├── log_channel.py │ ├── logomaker.py │ ├── math.py │ ├── modules.py │ ├── musicplayer.py │ ├── mute.py │ ├── muting.py │ ├── notes.py │ ├── nsfw.py │ ├── paste.py │ ├── phone.py │ ├── ping.py │ ├── playstore.py │ ├── purge.py │ ├── pyrogithub.py │ ├── qoutly.py │ ├── reactions.py │ ├── readme.md │ ├── remote_cmds.py │ ├── reporting.py │ ├── rmbg.py │ ├── rules.py │ ├── sed.py │ ├── send.py │ ├── shell.py │ ├── songdl.py │ ├── songs.py │ ├── speachtotext.py │ ├── speed_test.py │ ├── sql │ │ ├── __init__.py │ │ ├── afk_sql.py │ │ ├── aihelp_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 │ │ ├── global_bans_sql.py │ │ ├── locks_sql.py │ │ ├── log_channel_sql.py │ │ ├── notes_sql.py │ │ ├── nsfw_sql.py │ │ ├── reporting_sql.py │ │ ├── rss_sql.py │ │ ├── rules_sql.py │ │ ├── userinfo_sql.py │ │ ├── users_sql.py │ │ ├── warns_sql.py │ │ └── welcome_sql.py │ ├── sql_extended │ │ ├── forceSubscribe_sql.py │ │ ├── night_mode_sql.py │ │ └── nsfw_watch_sql.py │ ├── stickers.py │ ├── sudoers.py │ ├── tagall.py │ ├── telegraph.py │ ├── texttospeech.py │ ├── tools.py │ ├── truth_and_dare.py │ ├── truth_and_dare_string.py │ ├── ud.py │ ├── userinfo.py │ ├── users.py │ ├── wallpaper.py │ ├── warns.py │ ├── weather.py │ ├── welcome.py │ ├── wiki.py │ ├── yts.py │ ├── zip.py │ └── zombies.py ├── pyrogramee │ ├── dark.py │ ├── errors.py │ ├── pluginshelper.py │ ├── pyrogram.py │ └── telethonbasics.py ├── resources │ ├── AllCrackedOut.ttf │ ├── BERNIER Shade.ttf │ ├── Chopsic.otf │ ├── DragonForcE.ttf │ ├── Facon.ttf │ ├── Maghrib.ttf │ ├── RothenburgDecorative.ttf │ ├── StephenType.ttf │ ├── Streamster.ttf │ ├── Streetwear.ttf │ ├── Thunderstorm.ttf │ ├── blackbg.jpg │ ├── hero.png │ ├── images.jpeg │ ├── waltgraph.ttf │ └── x-cross.png ├── sample_config.py ├── telethon.py └── utils │ ├── X │ ├── __init__.py │ ├── aiodownloader │ ├── __init__.py │ └── downloader.py │ ├── errors.py │ ├── exceptions.py │ ├── fetch.py │ ├── filter_groups.py │ ├── formatter.py │ ├── functions.py │ ├── inlinehelper.py │ ├── my.py │ ├── progress.py │ └── tools.py ├── _config.yml ├── app.json ├── exp.sh ├── heroku.yml ├── profanity_wordlist.txt ├── requirements.txt ├── restart.bat ├── runtime.txt ├── start.bat └── start_service.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /Data/bot_conf.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/Data/bot_conf.yaml.example -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Git_Pull.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/Git_Pull.bat -------------------------------------------------------------------------------- /Git_Push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/Git_Push.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/README.md -------------------------------------------------------------------------------- /Setup venv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/Setup venv.bat -------------------------------------------------------------------------------- /SophiaBot/Addons/ImageEditor/edit_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/Addons/ImageEditor/edit_1.py -------------------------------------------------------------------------------- /SophiaBot/Addons/ImageEditor/edit_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/Addons/ImageEditor/edit_2.py -------------------------------------------------------------------------------- /SophiaBot/Addons/ImageEditor/edit_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/Addons/ImageEditor/edit_3.py -------------------------------------------------------------------------------- /SophiaBot/Addons/ImageEditor/edit_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/Addons/ImageEditor/edit_4.py -------------------------------------------------------------------------------- /SophiaBot/Addons/ImageEditor/edit_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/Addons/ImageEditor/edit_5.py -------------------------------------------------------------------------------- /SophiaBot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/__init__.py -------------------------------------------------------------------------------- /SophiaBot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/__main__.py -------------------------------------------------------------------------------- /SophiaBot/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/conf.py -------------------------------------------------------------------------------- /SophiaBot/core/decorators/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/core/decorators/errors.py -------------------------------------------------------------------------------- /SophiaBot/db/mongohelpers/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/db/mongohelpers/mongo.py -------------------------------------------------------------------------------- /SophiaBot/db/mongohelpers/mongo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/db/mongohelpers/mongo2.py -------------------------------------------------------------------------------- /SophiaBot/db/mongohelpers/mongo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/db/mongohelpers/mongo3.py -------------------------------------------------------------------------------- /SophiaBot/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/events.py -------------------------------------------------------------------------------- /SophiaBot/function/carbonhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/function/carbonhelper.py -------------------------------------------------------------------------------- /SophiaBot/function/coupledb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/function/coupledb.py -------------------------------------------------------------------------------- /SophiaBot/function/karmadb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/function/karmadb.py -------------------------------------------------------------------------------- /SophiaBot/helper_extra/admin_rights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/helper_extra/admin_rights.py -------------------------------------------------------------------------------- /SophiaBot/helper_extra/aichat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/helper_extra/aichat.py -------------------------------------------------------------------------------- /SophiaBot/helper_extra/badmedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/helper_extra/badmedia.py -------------------------------------------------------------------------------- /SophiaBot/helpers/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/helpers/errors.py -------------------------------------------------------------------------------- /SophiaBot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/__init__.py -------------------------------------------------------------------------------- /SophiaBot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/admin.py -------------------------------------------------------------------------------- /SophiaBot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/afk.py -------------------------------------------------------------------------------- /SophiaBot/modules/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/anime.py -------------------------------------------------------------------------------- /SophiaBot/modules/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/antiflood.py -------------------------------------------------------------------------------- /SophiaBot/modules/antivirus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/antivirus.py -------------------------------------------------------------------------------- /SophiaBot/modules/approve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/approve.py -------------------------------------------------------------------------------- /SophiaBot/modules/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/backups.py -------------------------------------------------------------------------------- /SophiaBot/modules/bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/bans.py -------------------------------------------------------------------------------- /SophiaBot/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/blacklist.py -------------------------------------------------------------------------------- /SophiaBot/modules/blacklist_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/blacklist_stickers.py -------------------------------------------------------------------------------- /SophiaBot/modules/blacklistusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/blacklistusers.py -------------------------------------------------------------------------------- /SophiaBot/modules/books.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/books.py -------------------------------------------------------------------------------- /SophiaBot/modules/camscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/camscanner.py -------------------------------------------------------------------------------- /SophiaBot/modules/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/chatbot.py -------------------------------------------------------------------------------- /SophiaBot/modules/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/cleaner.py -------------------------------------------------------------------------------- /SophiaBot/modules/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/connection.py -------------------------------------------------------------------------------- /SophiaBot/modules/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/core.py -------------------------------------------------------------------------------- /SophiaBot/modules/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/country.py -------------------------------------------------------------------------------- /SophiaBot/modules/couple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/couple.py -------------------------------------------------------------------------------- /SophiaBot/modules/covid_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/covid_info.py -------------------------------------------------------------------------------- /SophiaBot/modules/cricketscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/cricketscore.py -------------------------------------------------------------------------------- /SophiaBot/modules/currency_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/currency_converter.py -------------------------------------------------------------------------------- /SophiaBot/modules/cust_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/cust_filters.py -------------------------------------------------------------------------------- /SophiaBot/modules/dbcleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/dbcleanup.py -------------------------------------------------------------------------------- /SophiaBot/modules/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/debug.py -------------------------------------------------------------------------------- /SophiaBot/modules/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/dev.py -------------------------------------------------------------------------------- /SophiaBot/modules/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/disable.py -------------------------------------------------------------------------------- /SophiaBot/modules/disasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/disasters.py -------------------------------------------------------------------------------- /SophiaBot/modules/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/encrypt.py -------------------------------------------------------------------------------- /SophiaBot/modules/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/english.py -------------------------------------------------------------------------------- /SophiaBot/modules/error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/error_handler.py -------------------------------------------------------------------------------- /SophiaBot/modules/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/eval.py -------------------------------------------------------------------------------- /SophiaBot/modules/fakeit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/fakeit.py -------------------------------------------------------------------------------- /SophiaBot/modules/feds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/feds.py -------------------------------------------------------------------------------- /SophiaBot/modules/forcesubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/forcesubs.py -------------------------------------------------------------------------------- /SophiaBot/modules/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/fun.py -------------------------------------------------------------------------------- /SophiaBot/modules/fun_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/fun_strings.py -------------------------------------------------------------------------------- /SophiaBot/modules/games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/games.py -------------------------------------------------------------------------------- /SophiaBot/modules/get_common_chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/get_common_chats.py -------------------------------------------------------------------------------- /SophiaBot/modules/gettime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/gettime.py -------------------------------------------------------------------------------- /SophiaBot/modules/global_bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/global_bans.py -------------------------------------------------------------------------------- /SophiaBot/modules/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/google.py -------------------------------------------------------------------------------- /SophiaBot/modules/gps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/gps.py -------------------------------------------------------------------------------- /SophiaBot/modules/groupgardian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/groupgardian.py -------------------------------------------------------------------------------- /SophiaBot/modules/gtranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/gtranslator.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/__init__.py: -------------------------------------------------------------------------------- 1 | """Helpers, also known as Utilities.""" 2 | -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/alternate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/alternate.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/chat_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/chat_status.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/extraction.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/filters.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/handlers.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/misc.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/msg_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/msg_types.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/regex_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/regex_helper.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/string_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/string_handling.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/string_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/string_store.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/telethn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/telethn/__init__.py -------------------------------------------------------------------------------- /SophiaBot/modules/helper_funcs/telethn/chatstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/helper_funcs/telethn/chatstatus.py -------------------------------------------------------------------------------- /SophiaBot/modules/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/heroku.py -------------------------------------------------------------------------------- /SophiaBot/modules/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/imdb.py -------------------------------------------------------------------------------- /SophiaBot/modules/imgeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/imgeditor.py -------------------------------------------------------------------------------- /SophiaBot/modules/karma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/karma.py -------------------------------------------------------------------------------- /SophiaBot/modules/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/locks.py -------------------------------------------------------------------------------- /SophiaBot/modules/log_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/log_channel.py -------------------------------------------------------------------------------- /SophiaBot/modules/logomaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/logomaker.py -------------------------------------------------------------------------------- /SophiaBot/modules/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/math.py -------------------------------------------------------------------------------- /SophiaBot/modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/modules.py -------------------------------------------------------------------------------- /SophiaBot/modules/musicplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/musicplayer.py -------------------------------------------------------------------------------- /SophiaBot/modules/mute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/mute.py -------------------------------------------------------------------------------- /SophiaBot/modules/muting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/muting.py -------------------------------------------------------------------------------- /SophiaBot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/notes.py -------------------------------------------------------------------------------- /SophiaBot/modules/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/nsfw.py -------------------------------------------------------------------------------- /SophiaBot/modules/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/paste.py -------------------------------------------------------------------------------- /SophiaBot/modules/phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/phone.py -------------------------------------------------------------------------------- /SophiaBot/modules/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/ping.py -------------------------------------------------------------------------------- /SophiaBot/modules/playstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/playstore.py -------------------------------------------------------------------------------- /SophiaBot/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/purge.py -------------------------------------------------------------------------------- /SophiaBot/modules/pyrogithub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/pyrogithub.py -------------------------------------------------------------------------------- /SophiaBot/modules/qoutly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/qoutly.py -------------------------------------------------------------------------------- /SophiaBot/modules/reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/reactions.py -------------------------------------------------------------------------------- /SophiaBot/modules/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/readme.md -------------------------------------------------------------------------------- /SophiaBot/modules/remote_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/remote_cmds.py -------------------------------------------------------------------------------- /SophiaBot/modules/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/reporting.py -------------------------------------------------------------------------------- /SophiaBot/modules/rmbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/rmbg.py -------------------------------------------------------------------------------- /SophiaBot/modules/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/rules.py -------------------------------------------------------------------------------- /SophiaBot/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sed.py -------------------------------------------------------------------------------- /SophiaBot/modules/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/send.py -------------------------------------------------------------------------------- /SophiaBot/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/shell.py -------------------------------------------------------------------------------- /SophiaBot/modules/songdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/songdl.py -------------------------------------------------------------------------------- /SophiaBot/modules/songs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/songs.py -------------------------------------------------------------------------------- /SophiaBot/modules/speachtotext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/speachtotext.py -------------------------------------------------------------------------------- /SophiaBot/modules/speed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/speed_test.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/__init__.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/afk_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/afk_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/aihelp_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/aihelp_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/antiArabic_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/antiArabic_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/antiflood_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/approve_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/approve_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/blacklist_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/blacklistusers_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/blacklistusers_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/blsticker_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/blsticker_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/chatbot_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/chatbot_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/cleaner_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/cleaner_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/connection_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/connection_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/cust_filters_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/cust_filters_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/disable_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/disable_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/feds_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/feds_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/global_bans_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/global_bans_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/locks_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/locks_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/log_channel_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/log_channel_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/notes_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/nsfw_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/nsfw_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/reporting_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/reporting_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/rss_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/rss_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/rules_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/rules_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/userinfo_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/userinfo_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/users_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/users_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/warns_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql/welcome_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql_extended/forceSubscribe_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql_extended/forceSubscribe_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql_extended/night_mode_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql_extended/night_mode_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/sql_extended/nsfw_watch_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sql_extended/nsfw_watch_sql.py -------------------------------------------------------------------------------- /SophiaBot/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/stickers.py -------------------------------------------------------------------------------- /SophiaBot/modules/sudoers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/sudoers.py -------------------------------------------------------------------------------- /SophiaBot/modules/tagall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/tagall.py -------------------------------------------------------------------------------- /SophiaBot/modules/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/telegraph.py -------------------------------------------------------------------------------- /SophiaBot/modules/texttospeech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/texttospeech.py -------------------------------------------------------------------------------- /SophiaBot/modules/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/tools.py -------------------------------------------------------------------------------- /SophiaBot/modules/truth_and_dare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/truth_and_dare.py -------------------------------------------------------------------------------- /SophiaBot/modules/truth_and_dare_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/truth_and_dare_string.py -------------------------------------------------------------------------------- /SophiaBot/modules/ud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/ud.py -------------------------------------------------------------------------------- /SophiaBot/modules/userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/userinfo.py -------------------------------------------------------------------------------- /SophiaBot/modules/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/users.py -------------------------------------------------------------------------------- /SophiaBot/modules/wallpaper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/wallpaper.py -------------------------------------------------------------------------------- /SophiaBot/modules/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/warns.py -------------------------------------------------------------------------------- /SophiaBot/modules/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/weather.py -------------------------------------------------------------------------------- /SophiaBot/modules/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/welcome.py -------------------------------------------------------------------------------- /SophiaBot/modules/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/wiki.py -------------------------------------------------------------------------------- /SophiaBot/modules/yts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/yts.py -------------------------------------------------------------------------------- /SophiaBot/modules/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/zip.py -------------------------------------------------------------------------------- /SophiaBot/modules/zombies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/modules/zombies.py -------------------------------------------------------------------------------- /SophiaBot/pyrogramee/dark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/pyrogramee/dark.py -------------------------------------------------------------------------------- /SophiaBot/pyrogramee/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/pyrogramee/errors.py -------------------------------------------------------------------------------- /SophiaBot/pyrogramee/pluginshelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/pyrogramee/pluginshelper.py -------------------------------------------------------------------------------- /SophiaBot/pyrogramee/pyrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/pyrogramee/pyrogram.py -------------------------------------------------------------------------------- /SophiaBot/pyrogramee/telethonbasics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/pyrogramee/telethonbasics.py -------------------------------------------------------------------------------- /SophiaBot/resources/AllCrackedOut.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/AllCrackedOut.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/BERNIER Shade.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/BERNIER Shade.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/Chopsic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/Chopsic.otf -------------------------------------------------------------------------------- /SophiaBot/resources/DragonForcE.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/DragonForcE.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/Facon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/Facon.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/Maghrib.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/Maghrib.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/RothenburgDecorative.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/RothenburgDecorative.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/StephenType.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/StephenType.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/Streamster.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/Streamster.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/Streetwear.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/Streetwear.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/Thunderstorm.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/Thunderstorm.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/blackbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/blackbg.jpg -------------------------------------------------------------------------------- /SophiaBot/resources/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/hero.png -------------------------------------------------------------------------------- /SophiaBot/resources/images.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/images.jpeg -------------------------------------------------------------------------------- /SophiaBot/resources/waltgraph.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/waltgraph.ttf -------------------------------------------------------------------------------- /SophiaBot/resources/x-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/resources/x-cross.png -------------------------------------------------------------------------------- /SophiaBot/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/sample_config.py -------------------------------------------------------------------------------- /SophiaBot/telethon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/telethon.py -------------------------------------------------------------------------------- /SophiaBot/utils/X: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SophiaBot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/__init__.py -------------------------------------------------------------------------------- /SophiaBot/utils/aiodownloader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/aiodownloader/__init__.py -------------------------------------------------------------------------------- /SophiaBot/utils/aiodownloader/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/aiodownloader/downloader.py -------------------------------------------------------------------------------- /SophiaBot/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/errors.py -------------------------------------------------------------------------------- /SophiaBot/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/exceptions.py -------------------------------------------------------------------------------- /SophiaBot/utils/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/fetch.py -------------------------------------------------------------------------------- /SophiaBot/utils/filter_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/filter_groups.py -------------------------------------------------------------------------------- /SophiaBot/utils/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/formatter.py -------------------------------------------------------------------------------- /SophiaBot/utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/functions.py -------------------------------------------------------------------------------- /SophiaBot/utils/inlinehelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/inlinehelper.py -------------------------------------------------------------------------------- /SophiaBot/utils/my.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SophiaBot/utils/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/progress.py -------------------------------------------------------------------------------- /SophiaBot/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/SophiaBot/utils/tools.py -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/_config.yml -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/app.json -------------------------------------------------------------------------------- /exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/exp.sh -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/heroku.yml -------------------------------------------------------------------------------- /profanity_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/profanity_wordlist.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/restart.bat -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.6 2 | -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/start.bat -------------------------------------------------------------------------------- /start_service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dihanofficial/SophiaBot/HEAD/start_service.bat --------------------------------------------------------------------------------