From cfabc520265d68c829b6f0e6b2af659380aedce5 Mon Sep 17 00:00:00 2001 From: quant Date: Wed, 4 Mar 2026 17:23:52 +0800 Subject: [PATCH] first commit --- wechat_auto/.env => .env | 0 wechat_auto/.env.example => .env.example | 0 wechat_auto/README.md => README.md | 0 wechat_auto/__init__.py => __init__.py | 0 .../__init__.cpython-313.pyc | Bin .../config.cpython-313.pyc | Bin .../main.cpython-313.pyc | Bin {wechat_auto/api => api}/__init__.py | 0 .../__pycache__/__init__.cpython-313.pyc | Bin .../api => api}/__pycache__/trigger.cpython-313.pyc | Bin {wechat_auto/api => api}/trigger.py | 0 wechat_auto/capture_icons.py => capture_icons.py | 0 wechat_auto/config.py => config.py | 0 {wechat_auto/core => core}/__init__.py | 0 .../__pycache__/__init__.cpython-313.pyc | Bin .../__pycache__/task_scheduler.cpython-313.pyc | Bin .../__pycache__/window_manager.cpython-313.pyc | Bin {wechat_auto/core => core}/desktop_automation.py | 0 {wechat_auto/core => core}/executor/__init__.py | 0 .../executor/__pycache__/__init__.cpython-313.pyc | Bin .../__pycache__/pyautogui_executor.cpython-313.pyc | Bin .../__pycache__/qwen_ai_executor.cpython-313.pyc | Bin .../core => core}/executor/pyautogui_executor.py | 0 .../core => core}/executor/qwen_ai_executor.py | 0 {wechat_auto/core => core}/task_scheduler.py | 0 {wechat_auto/core => core}/window_manager.py | 0 {wechat_auto/images => images}/wechat_icon.png | Bin {wechat_auto/images => images}/一见星球.png | Bin {wechat_auto/images => images}/小程序图标.png | Bin wechat_auto/main.py => main.py | 0 {wechat_auto/models => models}/__init__.py | 0 .../__pycache__/__init__.cpython-313.pyc | Bin .../__pycache__/activity.cpython-313.pyc | Bin {wechat_auto/models => models}/activity.py | 0 wechat_auto/requirements.txt => requirements.txt | 0 {wechat_auto/utils => utils}/__init__.py | 0 .../__pycache__/__init__.cpython-313.pyc | Bin .../__pycache__/logger.cpython-313.pyc | Bin .../__pycache__/retry.cpython-313.pyc | Bin {wechat_auto/utils => utils}/logger.py | 0 {wechat_auto/utils => utils}/retry.py | 0 41 files changed, 0 insertions(+), 0 deletions(-) rename wechat_auto/.env => .env (100%) rename wechat_auto/.env.example => .env.example (100%) rename wechat_auto/README.md => README.md (100%) rename wechat_auto/__init__.py => __init__.py (100%) rename {wechat_auto/__pycache__ => __pycache__}/__init__.cpython-313.pyc (100%) rename {wechat_auto/__pycache__ => __pycache__}/config.cpython-313.pyc (100%) rename {wechat_auto/__pycache__ => __pycache__}/main.cpython-313.pyc (100%) rename {wechat_auto/api => api}/__init__.py (100%) rename {wechat_auto/api => api}/__pycache__/__init__.cpython-313.pyc (100%) rename {wechat_auto/api => api}/__pycache__/trigger.cpython-313.pyc (100%) rename {wechat_auto/api => api}/trigger.py (100%) rename wechat_auto/capture_icons.py => capture_icons.py (100%) rename wechat_auto/config.py => config.py (100%) rename {wechat_auto/core => core}/__init__.py (100%) rename {wechat_auto/core => core}/__pycache__/__init__.cpython-313.pyc (100%) rename {wechat_auto/core => core}/__pycache__/task_scheduler.cpython-313.pyc (100%) rename {wechat_auto/core => core}/__pycache__/window_manager.cpython-313.pyc (100%) rename {wechat_auto/core => core}/desktop_automation.py (100%) rename {wechat_auto/core => core}/executor/__init__.py (100%) rename {wechat_auto/core => core}/executor/__pycache__/__init__.cpython-313.pyc (100%) rename {wechat_auto/core => core}/executor/__pycache__/pyautogui_executor.cpython-313.pyc (100%) rename {wechat_auto/core => core}/executor/__pycache__/qwen_ai_executor.cpython-313.pyc (100%) rename {wechat_auto/core => core}/executor/pyautogui_executor.py (100%) rename {wechat_auto/core => core}/executor/qwen_ai_executor.py (100%) rename {wechat_auto/core => core}/task_scheduler.py (100%) rename {wechat_auto/core => core}/window_manager.py (100%) rename {wechat_auto/images => images}/wechat_icon.png (100%) rename {wechat_auto/images => images}/一见星球.png (100%) rename {wechat_auto/images => images}/小程序图标.png (100%) rename wechat_auto/main.py => main.py (100%) rename {wechat_auto/models => models}/__init__.py (100%) rename {wechat_auto/models => models}/__pycache__/__init__.cpython-313.pyc (100%) rename {wechat_auto/models => models}/__pycache__/activity.cpython-313.pyc (100%) rename {wechat_auto/models => models}/activity.py (100%) rename wechat_auto/requirements.txt => requirements.txt (100%) rename {wechat_auto/utils => utils}/__init__.py (100%) rename {wechat_auto/utils => utils}/__pycache__/__init__.cpython-313.pyc (100%) rename {wechat_auto/utils => utils}/__pycache__/logger.cpython-313.pyc (100%) rename {wechat_auto/utils => utils}/__pycache__/retry.cpython-313.pyc (100%) rename {wechat_auto/utils => utils}/logger.py (100%) rename {wechat_auto/utils => utils}/retry.py (100%) diff --git a/wechat_auto/.env b/.env similarity index 100% rename from wechat_auto/.env rename to .env diff --git a/wechat_auto/.env.example b/.env.example similarity index 100% rename from wechat_auto/.env.example rename to .env.example diff --git a/wechat_auto/README.md b/README.md similarity index 100% rename from wechat_auto/README.md rename to README.md diff --git a/wechat_auto/__init__.py b/__init__.py similarity index 100% rename from wechat_auto/__init__.py rename to __init__.py diff --git a/wechat_auto/__pycache__/__init__.cpython-313.pyc b/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/__pycache__/__init__.cpython-313.pyc rename to __pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/__pycache__/config.cpython-313.pyc b/__pycache__/config.cpython-313.pyc similarity index 100% rename from wechat_auto/__pycache__/config.cpython-313.pyc rename to __pycache__/config.cpython-313.pyc diff --git a/wechat_auto/__pycache__/main.cpython-313.pyc b/__pycache__/main.cpython-313.pyc similarity index 100% rename from wechat_auto/__pycache__/main.cpython-313.pyc rename to __pycache__/main.cpython-313.pyc diff --git a/wechat_auto/api/__init__.py b/api/__init__.py similarity index 100% rename from wechat_auto/api/__init__.py rename to api/__init__.py diff --git a/wechat_auto/api/__pycache__/__init__.cpython-313.pyc b/api/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/api/__pycache__/__init__.cpython-313.pyc rename to api/__pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/api/__pycache__/trigger.cpython-313.pyc b/api/__pycache__/trigger.cpython-313.pyc similarity index 100% rename from wechat_auto/api/__pycache__/trigger.cpython-313.pyc rename to api/__pycache__/trigger.cpython-313.pyc diff --git a/wechat_auto/api/trigger.py b/api/trigger.py similarity index 100% rename from wechat_auto/api/trigger.py rename to api/trigger.py diff --git a/wechat_auto/capture_icons.py b/capture_icons.py similarity index 100% rename from wechat_auto/capture_icons.py rename to capture_icons.py diff --git a/wechat_auto/config.py b/config.py similarity index 100% rename from wechat_auto/config.py rename to config.py diff --git a/wechat_auto/core/__init__.py b/core/__init__.py similarity index 100% rename from wechat_auto/core/__init__.py rename to core/__init__.py diff --git a/wechat_auto/core/__pycache__/__init__.cpython-313.pyc b/core/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/core/__pycache__/__init__.cpython-313.pyc rename to core/__pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/core/__pycache__/task_scheduler.cpython-313.pyc b/core/__pycache__/task_scheduler.cpython-313.pyc similarity index 100% rename from wechat_auto/core/__pycache__/task_scheduler.cpython-313.pyc rename to core/__pycache__/task_scheduler.cpython-313.pyc diff --git a/wechat_auto/core/__pycache__/window_manager.cpython-313.pyc b/core/__pycache__/window_manager.cpython-313.pyc similarity index 100% rename from wechat_auto/core/__pycache__/window_manager.cpython-313.pyc rename to core/__pycache__/window_manager.cpython-313.pyc diff --git a/wechat_auto/core/desktop_automation.py b/core/desktop_automation.py similarity index 100% rename from wechat_auto/core/desktop_automation.py rename to core/desktop_automation.py diff --git a/wechat_auto/core/executor/__init__.py b/core/executor/__init__.py similarity index 100% rename from wechat_auto/core/executor/__init__.py rename to core/executor/__init__.py diff --git a/wechat_auto/core/executor/__pycache__/__init__.cpython-313.pyc b/core/executor/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/core/executor/__pycache__/__init__.cpython-313.pyc rename to core/executor/__pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/core/executor/__pycache__/pyautogui_executor.cpython-313.pyc b/core/executor/__pycache__/pyautogui_executor.cpython-313.pyc similarity index 100% rename from wechat_auto/core/executor/__pycache__/pyautogui_executor.cpython-313.pyc rename to core/executor/__pycache__/pyautogui_executor.cpython-313.pyc diff --git a/wechat_auto/core/executor/__pycache__/qwen_ai_executor.cpython-313.pyc b/core/executor/__pycache__/qwen_ai_executor.cpython-313.pyc similarity index 100% rename from wechat_auto/core/executor/__pycache__/qwen_ai_executor.cpython-313.pyc rename to core/executor/__pycache__/qwen_ai_executor.cpython-313.pyc diff --git a/wechat_auto/core/executor/pyautogui_executor.py b/core/executor/pyautogui_executor.py similarity index 100% rename from wechat_auto/core/executor/pyautogui_executor.py rename to core/executor/pyautogui_executor.py diff --git a/wechat_auto/core/executor/qwen_ai_executor.py b/core/executor/qwen_ai_executor.py similarity index 100% rename from wechat_auto/core/executor/qwen_ai_executor.py rename to core/executor/qwen_ai_executor.py diff --git a/wechat_auto/core/task_scheduler.py b/core/task_scheduler.py similarity index 100% rename from wechat_auto/core/task_scheduler.py rename to core/task_scheduler.py diff --git a/wechat_auto/core/window_manager.py b/core/window_manager.py similarity index 100% rename from wechat_auto/core/window_manager.py rename to core/window_manager.py diff --git a/wechat_auto/images/wechat_icon.png b/images/wechat_icon.png similarity index 100% rename from wechat_auto/images/wechat_icon.png rename to images/wechat_icon.png diff --git a/wechat_auto/images/一见星球.png b/images/一见星球.png similarity index 100% rename from wechat_auto/images/一见星球.png rename to images/一见星球.png diff --git a/wechat_auto/images/小程序图标.png b/images/小程序图标.png similarity index 100% rename from wechat_auto/images/小程序图标.png rename to images/小程序图标.png diff --git a/wechat_auto/main.py b/main.py similarity index 100% rename from wechat_auto/main.py rename to main.py diff --git a/wechat_auto/models/__init__.py b/models/__init__.py similarity index 100% rename from wechat_auto/models/__init__.py rename to models/__init__.py diff --git a/wechat_auto/models/__pycache__/__init__.cpython-313.pyc b/models/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/models/__pycache__/__init__.cpython-313.pyc rename to models/__pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/models/__pycache__/activity.cpython-313.pyc b/models/__pycache__/activity.cpython-313.pyc similarity index 100% rename from wechat_auto/models/__pycache__/activity.cpython-313.pyc rename to models/__pycache__/activity.cpython-313.pyc diff --git a/wechat_auto/models/activity.py b/models/activity.py similarity index 100% rename from wechat_auto/models/activity.py rename to models/activity.py diff --git a/wechat_auto/requirements.txt b/requirements.txt similarity index 100% rename from wechat_auto/requirements.txt rename to requirements.txt diff --git a/wechat_auto/utils/__init__.py b/utils/__init__.py similarity index 100% rename from wechat_auto/utils/__init__.py rename to utils/__init__.py diff --git a/wechat_auto/utils/__pycache__/__init__.cpython-313.pyc b/utils/__pycache__/__init__.cpython-313.pyc similarity index 100% rename from wechat_auto/utils/__pycache__/__init__.cpython-313.pyc rename to utils/__pycache__/__init__.cpython-313.pyc diff --git a/wechat_auto/utils/__pycache__/logger.cpython-313.pyc b/utils/__pycache__/logger.cpython-313.pyc similarity index 100% rename from wechat_auto/utils/__pycache__/logger.cpython-313.pyc rename to utils/__pycache__/logger.cpython-313.pyc diff --git a/wechat_auto/utils/__pycache__/retry.cpython-313.pyc b/utils/__pycache__/retry.cpython-313.pyc similarity index 100% rename from wechat_auto/utils/__pycache__/retry.cpython-313.pyc rename to utils/__pycache__/retry.cpython-313.pyc diff --git a/wechat_auto/utils/logger.py b/utils/logger.py similarity index 100% rename from wechat_auto/utils/logger.py rename to utils/logger.py diff --git a/wechat_auto/utils/retry.py b/utils/retry.py similarity index 100% rename from wechat_auto/utils/retry.py rename to utils/retry.py