├── .gitignore ├── LICENSE ├── README.md ├── docs_image ├── help.png ├── tt.jpg ├── tt1.png ├── tt2.png ├── tt3.png └── tt4.png ├── nonebot_plugin_zxpm ├── __init__.py ├── commands │ ├── __init__.py │ ├── zxpm_add_group │ │ ├── __init__.py │ │ └── data_source.py │ ├── zxpm_admin_watch │ │ └── __init__.py │ ├── zxpm_ban │ │ ├── __init__.py │ │ └── _data_source.py │ ├── zxpm_bot_manage │ │ ├── __init__.py │ │ ├── bot_switch.py │ │ ├── command.py │ │ ├── full_function.py │ │ └── plugin.py │ ├── zxpm_help │ │ ├── __init__.py │ │ └── _data_source.py │ ├── zxpm_hooks │ │ ├── __init__.py │ │ ├── _auth_checker.py │ │ ├── zxpm_auth_hook.py │ │ └── zxpm_ban_hook.py │ ├── zxpm_init │ │ ├── __init__.py │ │ └── manager.py │ ├── zxpm_plugin_switch │ │ ├── __init__.py │ │ ├── _data_source.py │ │ └── command.py │ ├── zxpm_set_admin │ │ └── __init__.py │ └── zxpm_super_group │ │ └── __init__.py ├── config.py ├── db_connect │ └── __init__.py ├── enum.py ├── exception.py ├── extra │ ├── __init__.py │ └── limit.py ├── log.py ├── models │ ├── ban_console.py │ ├── bot_console.py │ ├── group_console.py │ ├── level_user.py │ ├── plugin_info.py │ └── plugin_limit.py ├── rules.py └── utils │ ├── build_image.py │ ├── image_template.py │ └── utils.py ├── poetry.lock └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/README.md -------------------------------------------------------------------------------- /docs_image/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/docs_image/help.png -------------------------------------------------------------------------------- /docs_image/tt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/docs_image/tt.jpg -------------------------------------------------------------------------------- /docs_image/tt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/docs_image/tt1.png -------------------------------------------------------------------------------- /docs_image/tt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/docs_image/tt2.png -------------------------------------------------------------------------------- /docs_image/tt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/docs_image/tt3.png -------------------------------------------------------------------------------- /docs_image/tt4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/docs_image/tt4.png -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_add_group/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_add_group/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_add_group/data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_add_group/data_source.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_admin_watch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_admin_watch/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_ban/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_ban/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_ban/_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_ban/_data_source.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_bot_manage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_bot_manage/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_bot_manage/bot_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_bot_manage/bot_switch.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_bot_manage/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_bot_manage/command.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_bot_manage/full_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_bot_manage/full_function.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_bot_manage/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_bot_manage/plugin.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_help/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_help/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_help/_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_help/_data_source.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_hooks/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_hooks/_auth_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_hooks/_auth_checker.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_hooks/zxpm_auth_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_hooks/zxpm_auth_hook.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_hooks/zxpm_ban_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_hooks/zxpm_ban_hook.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_init/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_init/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_init/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_init/manager.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_plugin_switch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_plugin_switch/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_plugin_switch/_data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_plugin_switch/_data_source.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_plugin_switch/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_plugin_switch/command.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_set_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_set_admin/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/commands/zxpm_super_group/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/commands/zxpm_super_group/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/config.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/db_connect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/db_connect/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/enum.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/exception.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/extra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/extra/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/extra/limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/extra/limit.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/log.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/models/ban_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/models/ban_console.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/models/bot_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/models/bot_console.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/models/group_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/models/group_console.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/models/level_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/models/level_user.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/models/plugin_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/models/plugin_info.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/models/plugin_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/models/plugin_limit.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/rules.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/utils/build_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/utils/build_image.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/utils/image_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/utils/image_template.py -------------------------------------------------------------------------------- /nonebot_plugin_zxpm/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/nonebot_plugin_zxpm/utils/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HibiKier/nonebot-plugin-zxpm/HEAD/pyproject.toml --------------------------------------------------------------------------------