├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Git_Pull.bat ├── Git_Push.bat ├── LICENSE ├── Procfile ├── README.md ├── SetupVirtualEnv_run_once.bat ├── TaigaRobot ├── __init__.py ├── __main__ ├── config.py ├── confing.py ├── elevated_users.json ├── events.py ├── images │ ├── ! │ └── scripts.py ├── language │ ├── __init__.py │ ├── en.yaml │ ├── id.yaml │ ├── in.yaml │ ├── jp.yaml │ └── langs.py ├── modules │ ├── __init__.py │ ├── admin.py │ ├── afk.py │ ├── animation.py │ ├── anime.py │ ├── animequotes.py │ ├── antichannel.py │ ├── antiflood.py │ ├── approve.py │ ├── backups.py │ ├── bans.py │ ├── blacklist.py │ ├── blacklist_stickers.py │ ├── blacklistusers.py │ ├── bug.py │ ├── chatbot.py │ ├── cleaner.py │ ├── connection.py │ ├── core.py │ ├── country.py │ ├── cust_filters.py │ ├── dbcleanup.py │ ├── debug.py │ ├── dev.py │ ├── disable.py │ ├── disasters.py │ ├── encrypt.py │ ├── error_handler.py │ ├── eval.py │ ├── feds.py │ ├── forcesubs.py │ ├── fun.py │ ├── google.py │ ├── gshield.py │ ├── gtranslator.py │ ├── helper_funcs │ │ ├── __init__.py │ │ ├── admin_rights.py │ │ ├── alternate.py │ │ ├── channel_mode.py │ │ ├── chat_status.py │ │ ├── decorators.py │ │ ├── extraction.py │ │ ├── filters.py │ │ ├── handlers.py │ │ ├── misc.py │ │ ├── msg_types.py │ │ ├── readable_time.py │ │ ├── regex_helper.py │ │ ├── string_handling.py │ │ └── telethn │ │ │ ├── __init__.py │ │ │ └── chatstatus.py │ ├── heroku.py │ ├── info.py │ ├── inline │ ├── json.py │ ├── karma.py │ ├── language.py │ ├── locks.py │ ├── log_channel.py │ ├── memify.py │ ├── mentionsall.py │ ├── misc.py │ ├── modules.py │ ├── muting.py │ ├── myanimelist.py │ ├── notes.py │ ├── nsfw.py │ ├── ping.py │ ├── purge.py │ ├── quotes.py │ ├── reactions.py │ ├── remote_cmds.py │ ├── reverse.py │ ├── rules.py │ ├── sed.py │ ├── shell.py │ ├── shippering.py │ ├── sql │ │ ├── __init__.py │ │ ├── afk_redis.py │ │ ├── afk_sql.py │ │ ├── antichannel_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 │ │ ├── language_sql.py │ │ ├── locks_sql.py │ │ ├── log_channel_sql.py │ │ ├── night_mode_sql.py │ │ ├── notes_sql.py │ │ ├── nsfw_sql.py │ │ ├── nsfw_watch_sql.py │ │ ├── reporting_sql.py │ │ ├── rules_sql.py │ │ ├── userinfo_sql.py │ │ ├── users_sql.py │ │ ├── warns_sql.py │ │ └── welcome_sql.py │ ├── stickers.py │ ├── telegraph.py │ ├── term_and_eval.py │ ├── tiny.py │ ├── tools.py │ ├── truth_and_dare.py │ ├── userinfo.py │ ├── users.py │ ├── warns.py │ ├── welcome.py │ └── zombies.py ├── mongo.py ├── plugins │ ├── chatbot.py │ ├── dbfunctions.py │ └── errors.py ├── resources │ ├── default.ttf │ ├── fonts │ │ ├── !! │ │ ├── 0.ttf │ │ ├── 1.ttf │ │ ├── 11.otf │ │ ├── 12.otf │ │ ├── 2.ttf │ │ ├── 3.ttf │ │ ├── 4.ttf │ │ ├── 5.ttf │ │ ├── 6.ttf │ │ ├── 7.ttf │ │ ├── 9.ttf │ │ └── default.ttf │ └── rias_stickers.png ├── script.py ├── services │ ├── dark.py │ ├── keyboard.py │ ├── sections.py │ ├── tasks.py │ ├── telethonbasics.py │ └── types │ │ ├── InlineQueryResult.py │ │ └── __init__.py ├── stringz │ ├── fun_strings.py │ ├── truth_and_dare_string.py │ └── xstats.py └── utils │ ├── adminperms.py │ ├── arqapi.py │ ├── errors.py │ ├── filter_groups.py │ ├── formatter.py │ ├── functions.py │ ├── http.py │ ├── paste.py │ ├── pastebin.py │ ├── permissions.py │ ├── pluginhelper.py │ └── uputils.py ├── _config.yml ├── app.json ├── exp.sh ├── heroku.yml ├── profanity_wordlist.txt ├── requirements.txt ├── restart.bat ├── runtime.txt ├── start.bat └── start_service.bat /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Git_Pull.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/Git_Pull.bat -------------------------------------------------------------------------------- /Git_Push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/Git_Push.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/README.md -------------------------------------------------------------------------------- /SetupVirtualEnv_run_once.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/SetupVirtualEnv_run_once.bat -------------------------------------------------------------------------------- /TaigaRobot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/__init__.py -------------------------------------------------------------------------------- /TaigaRobot/__main__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/__main__ -------------------------------------------------------------------------------- /TaigaRobot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/config.py -------------------------------------------------------------------------------- /TaigaRobot/confing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/confing.py -------------------------------------------------------------------------------- /TaigaRobot/elevated_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/elevated_users.json -------------------------------------------------------------------------------- /TaigaRobot/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/events.py -------------------------------------------------------------------------------- /TaigaRobot/images/!: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TaigaRobot/images/scripts.py: -------------------------------------------------------------------------------- 1 | STATS_IMG= "https://telegra.ph/file/67baf503748144621017b.jpg" 2 | -------------------------------------------------------------------------------- /TaigaRobot/language/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/language/__init__.py -------------------------------------------------------------------------------- /TaigaRobot/language/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/language/en.yaml -------------------------------------------------------------------------------- /TaigaRobot/language/id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/language/id.yaml -------------------------------------------------------------------------------- /TaigaRobot/language/in.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/language/in.yaml -------------------------------------------------------------------------------- /TaigaRobot/language/jp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/language/jp.yaml -------------------------------------------------------------------------------- /TaigaRobot/language/langs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/language/langs.py -------------------------------------------------------------------------------- /TaigaRobot/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/__init__.py -------------------------------------------------------------------------------- /TaigaRobot/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/admin.py -------------------------------------------------------------------------------- /TaigaRobot/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/afk.py -------------------------------------------------------------------------------- /TaigaRobot/modules/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/animation.py -------------------------------------------------------------------------------- /TaigaRobot/modules/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/anime.py -------------------------------------------------------------------------------- /TaigaRobot/modules/animequotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/animequotes.py -------------------------------------------------------------------------------- /TaigaRobot/modules/antichannel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/antichannel.py -------------------------------------------------------------------------------- /TaigaRobot/modules/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/antiflood.py -------------------------------------------------------------------------------- /TaigaRobot/modules/approve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/approve.py -------------------------------------------------------------------------------- /TaigaRobot/modules/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/backups.py -------------------------------------------------------------------------------- /TaigaRobot/modules/bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/bans.py -------------------------------------------------------------------------------- /TaigaRobot/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/blacklist.py -------------------------------------------------------------------------------- /TaigaRobot/modules/blacklist_stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/blacklist_stickers.py -------------------------------------------------------------------------------- /TaigaRobot/modules/blacklistusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/blacklistusers.py -------------------------------------------------------------------------------- /TaigaRobot/modules/bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/bug.py -------------------------------------------------------------------------------- /TaigaRobot/modules/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/chatbot.py -------------------------------------------------------------------------------- /TaigaRobot/modules/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/cleaner.py -------------------------------------------------------------------------------- /TaigaRobot/modules/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/connection.py -------------------------------------------------------------------------------- /TaigaRobot/modules/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/core.py -------------------------------------------------------------------------------- /TaigaRobot/modules/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/country.py -------------------------------------------------------------------------------- /TaigaRobot/modules/cust_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/cust_filters.py -------------------------------------------------------------------------------- /TaigaRobot/modules/dbcleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/dbcleanup.py -------------------------------------------------------------------------------- /TaigaRobot/modules/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/debug.py -------------------------------------------------------------------------------- /TaigaRobot/modules/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/dev.py -------------------------------------------------------------------------------- /TaigaRobot/modules/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/disable.py -------------------------------------------------------------------------------- /TaigaRobot/modules/disasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/disasters.py -------------------------------------------------------------------------------- /TaigaRobot/modules/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/encrypt.py -------------------------------------------------------------------------------- /TaigaRobot/modules/error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/error_handler.py -------------------------------------------------------------------------------- /TaigaRobot/modules/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/eval.py -------------------------------------------------------------------------------- /TaigaRobot/modules/feds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/feds.py -------------------------------------------------------------------------------- /TaigaRobot/modules/forcesubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/forcesubs.py -------------------------------------------------------------------------------- /TaigaRobot/modules/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/fun.py -------------------------------------------------------------------------------- /TaigaRobot/modules/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/google.py -------------------------------------------------------------------------------- /TaigaRobot/modules/gshield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/gshield.py -------------------------------------------------------------------------------- /TaigaRobot/modules/gtranslator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/gtranslator.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/__init__.py: -------------------------------------------------------------------------------- 1 | """Helpers, also known as Utilities.""" 2 | -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/admin_rights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/admin_rights.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/alternate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/alternate.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/channel_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/channel_mode.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/chat_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/chat_status.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/decorators.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/extraction.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/filters.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/handlers.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/misc.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/msg_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/msg_types.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/readable_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/readable_time.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/regex_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/regex_helper.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/string_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/string_handling.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/telethn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/telethn/__init__.py -------------------------------------------------------------------------------- /TaigaRobot/modules/helper_funcs/telethn/chatstatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/helper_funcs/telethn/chatstatus.py -------------------------------------------------------------------------------- /TaigaRobot/modules/heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/heroku.py -------------------------------------------------------------------------------- /TaigaRobot/modules/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/info.py -------------------------------------------------------------------------------- /TaigaRobot/modules/inline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/inline -------------------------------------------------------------------------------- /TaigaRobot/modules/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/json.py -------------------------------------------------------------------------------- /TaigaRobot/modules/karma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/karma.py -------------------------------------------------------------------------------- /TaigaRobot/modules/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/language.py -------------------------------------------------------------------------------- /TaigaRobot/modules/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/locks.py -------------------------------------------------------------------------------- /TaigaRobot/modules/log_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/log_channel.py -------------------------------------------------------------------------------- /TaigaRobot/modules/memify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/memify.py -------------------------------------------------------------------------------- /TaigaRobot/modules/mentionsall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/mentionsall.py -------------------------------------------------------------------------------- /TaigaRobot/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/misc.py -------------------------------------------------------------------------------- /TaigaRobot/modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/modules.py -------------------------------------------------------------------------------- /TaigaRobot/modules/muting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/muting.py -------------------------------------------------------------------------------- /TaigaRobot/modules/myanimelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/myanimelist.py -------------------------------------------------------------------------------- /TaigaRobot/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/notes.py -------------------------------------------------------------------------------- /TaigaRobot/modules/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/nsfw.py -------------------------------------------------------------------------------- /TaigaRobot/modules/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/ping.py -------------------------------------------------------------------------------- /TaigaRobot/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/purge.py -------------------------------------------------------------------------------- /TaigaRobot/modules/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/quotes.py -------------------------------------------------------------------------------- /TaigaRobot/modules/reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/reactions.py -------------------------------------------------------------------------------- /TaigaRobot/modules/remote_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/remote_cmds.py -------------------------------------------------------------------------------- /TaigaRobot/modules/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/reverse.py -------------------------------------------------------------------------------- /TaigaRobot/modules/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/rules.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sed.py -------------------------------------------------------------------------------- /TaigaRobot/modules/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/shell.py -------------------------------------------------------------------------------- /TaigaRobot/modules/shippering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/shippering.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/__init__.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/afk_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/afk_redis.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/afk_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/afk_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/antichannel_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/antichannel_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/antiflood_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/approve_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/approve_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/blacklist_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/blacklistusers_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/blacklistusers_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/blsticker_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/blsticker_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/chatbot_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/chatbot_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/cleaner_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/cleaner_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/connection_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/connection_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/cust_filters_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/cust_filters_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/disable_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/disable_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/feds_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/feds_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/forceSubscribe_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/forceSubscribe_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/global_bans_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/global_bans_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/language_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/language_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/locks_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/locks_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/log_channel_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/log_channel_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/night_mode_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/night_mode_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/notes_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/nsfw_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/nsfw_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/nsfw_watch_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/nsfw_watch_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/reporting_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/reporting_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/rules_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/rules_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/userinfo_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/userinfo_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/users_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/users_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/warns_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/sql/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/sql/welcome_sql.py -------------------------------------------------------------------------------- /TaigaRobot/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/stickers.py -------------------------------------------------------------------------------- /TaigaRobot/modules/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/telegraph.py -------------------------------------------------------------------------------- /TaigaRobot/modules/term_and_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/term_and_eval.py -------------------------------------------------------------------------------- /TaigaRobot/modules/tiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/tiny.py -------------------------------------------------------------------------------- /TaigaRobot/modules/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/tools.py -------------------------------------------------------------------------------- /TaigaRobot/modules/truth_and_dare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/truth_and_dare.py -------------------------------------------------------------------------------- /TaigaRobot/modules/userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/userinfo.py -------------------------------------------------------------------------------- /TaigaRobot/modules/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/users.py -------------------------------------------------------------------------------- /TaigaRobot/modules/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/warns.py -------------------------------------------------------------------------------- /TaigaRobot/modules/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/welcome.py -------------------------------------------------------------------------------- /TaigaRobot/modules/zombies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/modules/zombies.py -------------------------------------------------------------------------------- /TaigaRobot/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/mongo.py -------------------------------------------------------------------------------- /TaigaRobot/plugins/chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/plugins/chatbot.py -------------------------------------------------------------------------------- /TaigaRobot/plugins/dbfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/plugins/dbfunctions.py -------------------------------------------------------------------------------- /TaigaRobot/plugins/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/plugins/errors.py -------------------------------------------------------------------------------- /TaigaRobot/resources/default.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/default.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/!!: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/0.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/1.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/11.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/11.otf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/12.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/12.otf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/2.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/3.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/3.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/4.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/5.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/6.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/6.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/7.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/7.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/9.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/9.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/fonts/default.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/fonts/default.ttf -------------------------------------------------------------------------------- /TaigaRobot/resources/rias_stickers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/resources/rias_stickers.png -------------------------------------------------------------------------------- /TaigaRobot/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/script.py -------------------------------------------------------------------------------- /TaigaRobot/services/dark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/services/dark.py -------------------------------------------------------------------------------- /TaigaRobot/services/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/services/keyboard.py -------------------------------------------------------------------------------- /TaigaRobot/services/sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/services/sections.py -------------------------------------------------------------------------------- /TaigaRobot/services/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/services/tasks.py -------------------------------------------------------------------------------- /TaigaRobot/services/telethonbasics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/services/telethonbasics.py -------------------------------------------------------------------------------- /TaigaRobot/services/types/InlineQueryResult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/services/types/InlineQueryResult.py -------------------------------------------------------------------------------- /TaigaRobot/services/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/services/types/__init__.py -------------------------------------------------------------------------------- /TaigaRobot/stringz/fun_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/stringz/fun_strings.py -------------------------------------------------------------------------------- /TaigaRobot/stringz/truth_and_dare_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/stringz/truth_and_dare_string.py -------------------------------------------------------------------------------- /TaigaRobot/stringz/xstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/stringz/xstats.py -------------------------------------------------------------------------------- /TaigaRobot/utils/adminperms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/adminperms.py -------------------------------------------------------------------------------- /TaigaRobot/utils/arqapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/arqapi.py -------------------------------------------------------------------------------- /TaigaRobot/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/errors.py -------------------------------------------------------------------------------- /TaigaRobot/utils/filter_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/filter_groups.py -------------------------------------------------------------------------------- /TaigaRobot/utils/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/formatter.py -------------------------------------------------------------------------------- /TaigaRobot/utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/functions.py -------------------------------------------------------------------------------- /TaigaRobot/utils/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/http.py -------------------------------------------------------------------------------- /TaigaRobot/utils/paste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/paste.py -------------------------------------------------------------------------------- /TaigaRobot/utils/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/pastebin.py -------------------------------------------------------------------------------- /TaigaRobot/utils/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/permissions.py -------------------------------------------------------------------------------- /TaigaRobot/utils/pluginhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/pluginhelper.py -------------------------------------------------------------------------------- /TaigaRobot/utils/uputils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/TaigaRobot/utils/uputils.py -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/_config.yml -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/app.json -------------------------------------------------------------------------------- /exp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/exp.sh -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/heroku.yml -------------------------------------------------------------------------------- /profanity_wordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/profanity_wordlist.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /restart.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/restart.bat -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.4 2 | -------------------------------------------------------------------------------- /start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/start.bat -------------------------------------------------------------------------------- /start_service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomozki/Taiga-tgbot/HEAD/start_service.bat --------------------------------------------------------------------------------