├── .gitignore ├── LICENSE ├── README.md ├── app ├── .env.example ├── __init__.py ├── api │ ├── group.py │ ├── key.py │ ├── message.py │ └── user.py ├── bot.py ├── config.py ├── core │ ├── del_self_msg.py │ ├── get_group_list.py │ ├── get_group_member_list.py │ ├── menu_manager.py │ ├── nc_get_rkey.py │ ├── online_detect.py │ ├── switch │ │ ├── __init__.py │ │ ├── command_handler.py │ │ ├── config.py │ │ ├── database.py │ │ ├── migration.py │ │ └── switch_manager.py │ └── switchs.py ├── handle_events.py ├── logger.py ├── main.py ├── modules │ ├── Reporter │ │ ├── README.md │ │ ├── __init__.py │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── data_manager.py │ │ │ ├── handle_message.py │ │ │ ├── handle_message_group.py │ │ │ ├── handle_message_private.py │ │ │ ├── handle_meta_event.py │ │ │ ├── handle_notice.py │ │ │ ├── handle_notice_friend.py │ │ │ ├── handle_notice_group.py │ │ │ ├── handle_request.py │ │ │ ├── handle_response.py │ │ │ └── message_processor.py │ │ └── main.py │ └── Template │ │ ├── README.md │ │ ├── __init__.py │ │ ├── handlers │ │ ├── __init__.py │ │ ├── data_manager.py │ │ ├── handle_message.py │ │ ├── handle_message_group.py │ │ ├── handle_message_private.py │ │ ├── handle_meta_event.py │ │ ├── handle_notice.py │ │ ├── handle_notice_friend.py │ │ ├── handle_notice_group.py │ │ ├── handle_request.py │ │ └── handle_response.py │ │ └── main.py └── utils │ ├── auth.py │ ├── clean_logs.py │ ├── feishu.py │ └── generate.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/README.md -------------------------------------------------------------------------------- /app/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/.env.example -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/api/group.py -------------------------------------------------------------------------------- /app/api/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/api/key.py -------------------------------------------------------------------------------- /app/api/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/api/message.py -------------------------------------------------------------------------------- /app/api/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/api/user.py -------------------------------------------------------------------------------- /app/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/bot.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/config.py -------------------------------------------------------------------------------- /app/core/del_self_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/del_self_msg.py -------------------------------------------------------------------------------- /app/core/get_group_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/get_group_list.py -------------------------------------------------------------------------------- /app/core/get_group_member_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/get_group_member_list.py -------------------------------------------------------------------------------- /app/core/menu_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/menu_manager.py -------------------------------------------------------------------------------- /app/core/nc_get_rkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/nc_get_rkey.py -------------------------------------------------------------------------------- /app/core/online_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/online_detect.py -------------------------------------------------------------------------------- /app/core/switch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/switch/__init__.py -------------------------------------------------------------------------------- /app/core/switch/command_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/switch/command_handler.py -------------------------------------------------------------------------------- /app/core/switch/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/switch/config.py -------------------------------------------------------------------------------- /app/core/switch/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/switch/database.py -------------------------------------------------------------------------------- /app/core/switch/migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/switch/migration.py -------------------------------------------------------------------------------- /app/core/switch/switch_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/switch/switch_manager.py -------------------------------------------------------------------------------- /app/core/switchs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/core/switchs.py -------------------------------------------------------------------------------- /app/handle_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/handle_events.py -------------------------------------------------------------------------------- /app/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/logger.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/main.py -------------------------------------------------------------------------------- /app/modules/Reporter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/README.md -------------------------------------------------------------------------------- /app/modules/Reporter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/__init__.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/data_manager.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/handle_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/handle_message.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/handle_message_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/handle_message_group.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/handle_message_private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/handle_message_private.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/handle_meta_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/handle_meta_event.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/handle_notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/handle_notice.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/handle_notice_friend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/handle_notice_friend.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/handle_notice_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/handle_notice_group.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/handle_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/handle_request.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/handle_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/handle_response.py -------------------------------------------------------------------------------- /app/modules/Reporter/handlers/message_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/handlers/message_processor.py -------------------------------------------------------------------------------- /app/modules/Reporter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Reporter/main.py -------------------------------------------------------------------------------- /app/modules/Template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/README.md -------------------------------------------------------------------------------- /app/modules/Template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/__init__.py -------------------------------------------------------------------------------- /app/modules/Template/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/modules/Template/handlers/data_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/handlers/data_manager.py -------------------------------------------------------------------------------- /app/modules/Template/handlers/handle_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/handlers/handle_message.py -------------------------------------------------------------------------------- /app/modules/Template/handlers/handle_message_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/handlers/handle_message_group.py -------------------------------------------------------------------------------- /app/modules/Template/handlers/handle_message_private.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/handlers/handle_message_private.py -------------------------------------------------------------------------------- /app/modules/Template/handlers/handle_meta_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/handlers/handle_meta_event.py -------------------------------------------------------------------------------- /app/modules/Template/handlers/handle_notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/handlers/handle_notice.py -------------------------------------------------------------------------------- /app/modules/Template/handlers/handle_notice_friend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/handlers/handle_notice_friend.py -------------------------------------------------------------------------------- /app/modules/Template/handlers/handle_notice_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/handlers/handle_notice_group.py -------------------------------------------------------------------------------- /app/modules/Template/handlers/handle_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/handlers/handle_request.py -------------------------------------------------------------------------------- /app/modules/Template/handlers/handle_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/handlers/handle_response.py -------------------------------------------------------------------------------- /app/modules/Template/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/modules/Template/main.py -------------------------------------------------------------------------------- /app/utils/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/utils/auth.py -------------------------------------------------------------------------------- /app/utils/clean_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/utils/clean_logs.py -------------------------------------------------------------------------------- /app/utils/feishu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/utils/feishu.py -------------------------------------------------------------------------------- /app/utils/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/app/utils/generate.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/W1ndys/W1ndysBotFrame/HEAD/requirements.txt --------------------------------------------------------------------------------