├── .deepsource.toml ├── .github └── workflows │ ├── docker-publish.yml │ └── label.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── requirements.txt ├── runtime.txt └── skylee ├── __init__.py ├── __main__.py ├── modules ├── __init__.py ├── admin.py ├── afk.py ├── android.py ├── antiflood.py ├── backups.py ├── bans.py ├── blacklist.py ├── connection.py ├── cust_filters.py ├── dbcleanup.py ├── disable.py ├── feds.py ├── global_bans.py ├── helper_funcs │ ├── admin_rights.py │ ├── alternate.py │ ├── chat_status.py │ ├── extraction.py │ ├── filters.py │ ├── fun_strings.py │ ├── handlers.py │ ├── misc.py │ ├── msg_types.py │ └── string_handling.py ├── locks.py ├── log_channel.py ├── memes.py ├── misc.py ├── muting.py ├── notes.py ├── purge.py ├── regex.py ├── reporting.py ├── reverse.py ├── rules.py ├── sql │ ├── __init__.py │ ├── afk_sql.py │ ├── antiflood_sql.py │ ├── blacklist_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 │ ├── reporting_sql.py │ ├── rules_sql.py │ ├── userinfo_sql.py │ ├── users_sql.py │ ├── warns_sql.py │ └── welcome_sql.py ├── stickers.py ├── translator.py ├── userinfo.py ├── users.py ├── warns.py ├── weather.py ├── webtools.py └── welcome.py ├── mwt.py └── sample_config.py /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python3 -m skylee 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.9 2 | -------------------------------------------------------------------------------- /skylee/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/__init__.py -------------------------------------------------------------------------------- /skylee/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/__main__.py -------------------------------------------------------------------------------- /skylee/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/__init__.py -------------------------------------------------------------------------------- /skylee/modules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/admin.py -------------------------------------------------------------------------------- /skylee/modules/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/afk.py -------------------------------------------------------------------------------- /skylee/modules/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/android.py -------------------------------------------------------------------------------- /skylee/modules/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/antiflood.py -------------------------------------------------------------------------------- /skylee/modules/backups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/backups.py -------------------------------------------------------------------------------- /skylee/modules/bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/bans.py -------------------------------------------------------------------------------- /skylee/modules/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/blacklist.py -------------------------------------------------------------------------------- /skylee/modules/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/connection.py -------------------------------------------------------------------------------- /skylee/modules/cust_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/cust_filters.py -------------------------------------------------------------------------------- /skylee/modules/dbcleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/dbcleanup.py -------------------------------------------------------------------------------- /skylee/modules/disable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/disable.py -------------------------------------------------------------------------------- /skylee/modules/feds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/feds.py -------------------------------------------------------------------------------- /skylee/modules/global_bans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/global_bans.py -------------------------------------------------------------------------------- /skylee/modules/helper_funcs/admin_rights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/helper_funcs/admin_rights.py -------------------------------------------------------------------------------- /skylee/modules/helper_funcs/alternate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/helper_funcs/alternate.py -------------------------------------------------------------------------------- /skylee/modules/helper_funcs/chat_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/helper_funcs/chat_status.py -------------------------------------------------------------------------------- /skylee/modules/helper_funcs/extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/helper_funcs/extraction.py -------------------------------------------------------------------------------- /skylee/modules/helper_funcs/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/helper_funcs/filters.py -------------------------------------------------------------------------------- /skylee/modules/helper_funcs/fun_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/helper_funcs/fun_strings.py -------------------------------------------------------------------------------- /skylee/modules/helper_funcs/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/helper_funcs/handlers.py -------------------------------------------------------------------------------- /skylee/modules/helper_funcs/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/helper_funcs/misc.py -------------------------------------------------------------------------------- /skylee/modules/helper_funcs/msg_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/helper_funcs/msg_types.py -------------------------------------------------------------------------------- /skylee/modules/helper_funcs/string_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/helper_funcs/string_handling.py -------------------------------------------------------------------------------- /skylee/modules/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/locks.py -------------------------------------------------------------------------------- /skylee/modules/log_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/log_channel.py -------------------------------------------------------------------------------- /skylee/modules/memes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/memes.py -------------------------------------------------------------------------------- /skylee/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/misc.py -------------------------------------------------------------------------------- /skylee/modules/muting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/muting.py -------------------------------------------------------------------------------- /skylee/modules/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/notes.py -------------------------------------------------------------------------------- /skylee/modules/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/purge.py -------------------------------------------------------------------------------- /skylee/modules/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/regex.py -------------------------------------------------------------------------------- /skylee/modules/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/reporting.py -------------------------------------------------------------------------------- /skylee/modules/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/reverse.py -------------------------------------------------------------------------------- /skylee/modules/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/rules.py -------------------------------------------------------------------------------- /skylee/modules/sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/__init__.py -------------------------------------------------------------------------------- /skylee/modules/sql/afk_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/afk_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/antiflood_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/blacklist_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/blacklist_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/connection_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/connection_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/cust_filters_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/cust_filters_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/disable_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/disable_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/feds_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/feds_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/global_bans_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/global_bans_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/locks_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/locks_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/log_channel_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/log_channel_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/notes_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/reporting_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/reporting_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/rules_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/rules_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/userinfo_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/userinfo_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/users_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/users_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/warns_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/warns_sql.py -------------------------------------------------------------------------------- /skylee/modules/sql/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/sql/welcome_sql.py -------------------------------------------------------------------------------- /skylee/modules/stickers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/stickers.py -------------------------------------------------------------------------------- /skylee/modules/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/translator.py -------------------------------------------------------------------------------- /skylee/modules/userinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/userinfo.py -------------------------------------------------------------------------------- /skylee/modules/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/users.py -------------------------------------------------------------------------------- /skylee/modules/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/warns.py -------------------------------------------------------------------------------- /skylee/modules/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/weather.py -------------------------------------------------------------------------------- /skylee/modules/webtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/webtools.py -------------------------------------------------------------------------------- /skylee/modules/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/modules/welcome.py -------------------------------------------------------------------------------- /skylee/mwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/mwt.py -------------------------------------------------------------------------------- /skylee/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensiPeeps/skyleebot/HEAD/skylee/sample_config.py --------------------------------------------------------------------------------