├── .gitignore ├── COPYING ├── Procfile ├── README.md ├── app.json ├── pyrobot ├── __init__.py ├── __main__.py ├── helper_functions │ ├── admin_check.py │ ├── check_if_thumb_exists.py │ ├── cust_p_filters.py │ ├── display_progress_dl_up.py │ ├── extract_link.py │ ├── extract_user.py │ ├── get_file_id.py │ ├── last_online_hlpr.py │ ├── msg_types.py │ ├── paste_bin_hlpr.py │ ├── run_shell_cmnd.py │ ├── scheme.py │ ├── sql_helpers │ │ ├── __init__.py │ │ ├── antiflood_sql.py │ │ ├── gDrive_sql.py │ │ ├── notes_sql.py │ │ └── welcome_sql.py │ ├── string_handling.py │ └── warn_hlprs │ │ └── remove_warn.py ├── plugins │ ├── admemes │ │ ├── antiflood.py │ │ ├── get_cached_media.py │ │ ├── pin_message.py │ │ ├── purge.py │ │ ├── show_file_id.py │ │ ├── telegraph.py │ │ └── whois.py │ ├── assistant │ │ ├── docs.py │ │ ├── inline.py │ │ └── test.py │ ├── call_back_button_s.py │ ├── default.py │ ├── memes │ │ ├── aesthetic.py │ │ ├── dart.py │ │ ├── dice.py │ │ └── runs.py │ ├── miss_rose_sgnak │ │ └── antichannelpin.py │ ├── notes │ │ ├── get.py │ │ ├── others.py │ │ └── save.py │ ├── restrictions │ │ ├── ban.py │ │ ├── restrict.py │ │ └── unban.py │ ├── tlifers │ │ ├── get.py │ │ ├── others.py │ │ └── save.py │ ├── tools │ │ ├── eval.py │ │ ├── exec.py │ │ ├── google.py │ │ ├── json.py │ │ ├── pastebin.py │ │ └── ping.py │ ├── up_utils │ │ ├── download.py │ │ ├── gDrive.py │ │ ├── thumbnail.py │ │ └── upload.py │ ├── warns │ │ ├── get_warns.py │ │ ├── reset_warn.py │ │ ├── set_warn_limit.py │ │ └── warn_user.py │ └── welcome │ │ ├── new_users.py │ │ ├── others.py │ │ └── save.py ├── pyrobot.py └── sample_config.py ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/COPYING -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 -m pyrobot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/app.json -------------------------------------------------------------------------------- /pyrobot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/__init__.py -------------------------------------------------------------------------------- /pyrobot/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/__main__.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/admin_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/admin_check.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/check_if_thumb_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/check_if_thumb_exists.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/cust_p_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/cust_p_filters.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/display_progress_dl_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/display_progress_dl_up.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/extract_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/extract_link.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/extract_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/extract_user.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/get_file_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/get_file_id.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/last_online_hlpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/last_online_hlpr.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/msg_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/msg_types.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/paste_bin_hlpr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/paste_bin_hlpr.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/run_shell_cmnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/run_shell_cmnd.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/scheme.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/sql_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/sql_helpers/__init__.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/sql_helpers/antiflood_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/sql_helpers/antiflood_sql.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/sql_helpers/gDrive_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/sql_helpers/gDrive_sql.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/sql_helpers/notes_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/sql_helpers/notes_sql.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/sql_helpers/welcome_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/sql_helpers/welcome_sql.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/string_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/string_handling.py -------------------------------------------------------------------------------- /pyrobot/helper_functions/warn_hlprs/remove_warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/helper_functions/warn_hlprs/remove_warn.py -------------------------------------------------------------------------------- /pyrobot/plugins/admemes/antiflood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/admemes/antiflood.py -------------------------------------------------------------------------------- /pyrobot/plugins/admemes/get_cached_media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/admemes/get_cached_media.py -------------------------------------------------------------------------------- /pyrobot/plugins/admemes/pin_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/admemes/pin_message.py -------------------------------------------------------------------------------- /pyrobot/plugins/admemes/purge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/admemes/purge.py -------------------------------------------------------------------------------- /pyrobot/plugins/admemes/show_file_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/admemes/show_file_id.py -------------------------------------------------------------------------------- /pyrobot/plugins/admemes/telegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/admemes/telegraph.py -------------------------------------------------------------------------------- /pyrobot/plugins/admemes/whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/admemes/whois.py -------------------------------------------------------------------------------- /pyrobot/plugins/assistant/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/assistant/docs.py -------------------------------------------------------------------------------- /pyrobot/plugins/assistant/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/assistant/inline.py -------------------------------------------------------------------------------- /pyrobot/plugins/assistant/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/assistant/test.py -------------------------------------------------------------------------------- /pyrobot/plugins/call_back_button_s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/call_back_button_s.py -------------------------------------------------------------------------------- /pyrobot/plugins/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/default.py -------------------------------------------------------------------------------- /pyrobot/plugins/memes/aesthetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/memes/aesthetic.py -------------------------------------------------------------------------------- /pyrobot/plugins/memes/dart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/memes/dart.py -------------------------------------------------------------------------------- /pyrobot/plugins/memes/dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/memes/dice.py -------------------------------------------------------------------------------- /pyrobot/plugins/memes/runs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/memes/runs.py -------------------------------------------------------------------------------- /pyrobot/plugins/miss_rose_sgnak/antichannelpin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/miss_rose_sgnak/antichannelpin.py -------------------------------------------------------------------------------- /pyrobot/plugins/notes/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/notes/get.py -------------------------------------------------------------------------------- /pyrobot/plugins/notes/others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/notes/others.py -------------------------------------------------------------------------------- /pyrobot/plugins/notes/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/notes/save.py -------------------------------------------------------------------------------- /pyrobot/plugins/restrictions/ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/restrictions/ban.py -------------------------------------------------------------------------------- /pyrobot/plugins/restrictions/restrict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/restrictions/restrict.py -------------------------------------------------------------------------------- /pyrobot/plugins/restrictions/unban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/restrictions/unban.py -------------------------------------------------------------------------------- /pyrobot/plugins/tlifers/get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/tlifers/get.py -------------------------------------------------------------------------------- /pyrobot/plugins/tlifers/others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/tlifers/others.py -------------------------------------------------------------------------------- /pyrobot/plugins/tlifers/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/tlifers/save.py -------------------------------------------------------------------------------- /pyrobot/plugins/tools/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/tools/eval.py -------------------------------------------------------------------------------- /pyrobot/plugins/tools/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/tools/exec.py -------------------------------------------------------------------------------- /pyrobot/plugins/tools/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/tools/google.py -------------------------------------------------------------------------------- /pyrobot/plugins/tools/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/tools/json.py -------------------------------------------------------------------------------- /pyrobot/plugins/tools/pastebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/tools/pastebin.py -------------------------------------------------------------------------------- /pyrobot/plugins/tools/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/tools/ping.py -------------------------------------------------------------------------------- /pyrobot/plugins/up_utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/up_utils/download.py -------------------------------------------------------------------------------- /pyrobot/plugins/up_utils/gDrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/up_utils/gDrive.py -------------------------------------------------------------------------------- /pyrobot/plugins/up_utils/thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/up_utils/thumbnail.py -------------------------------------------------------------------------------- /pyrobot/plugins/up_utils/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/up_utils/upload.py -------------------------------------------------------------------------------- /pyrobot/plugins/warns/get_warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/warns/get_warns.py -------------------------------------------------------------------------------- /pyrobot/plugins/warns/reset_warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/warns/reset_warn.py -------------------------------------------------------------------------------- /pyrobot/plugins/warns/set_warn_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/warns/set_warn_limit.py -------------------------------------------------------------------------------- /pyrobot/plugins/warns/warn_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/warns/warn_user.py -------------------------------------------------------------------------------- /pyrobot/plugins/welcome/new_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/welcome/new_users.py -------------------------------------------------------------------------------- /pyrobot/plugins/welcome/others.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/welcome/others.py -------------------------------------------------------------------------------- /pyrobot/plugins/welcome/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/plugins/welcome/save.py -------------------------------------------------------------------------------- /pyrobot/pyrobot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/pyrobot.py -------------------------------------------------------------------------------- /pyrobot/sample_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/pyrobot/sample_config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpEcHiDe/PyroGramBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.19 --------------------------------------------------------------------------------