├── .gitignore ├── LICENSE ├── README.md ├── README_MSGcmd_img.md ├── README_img.md ├── config.json ├── email.txt ├── email_send.py ├── main.py ├── requirements.txt ├── wxbot_preview.py └── 注意事项.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiverKing/siver_wxbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiverKing/siver_wxbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiverKing/siver_wxbot/HEAD/README.md -------------------------------------------------------------------------------- /README_MSGcmd_img.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiverKing/siver_wxbot/HEAD/README_MSGcmd_img.md -------------------------------------------------------------------------------- /README_img.md: -------------------------------------------------------------------------------- 1 | ![微信图片_20250224200522](https://github.com/user-attachments/assets/81c9d657-a4ab-49fa-a6f3-64e512290596) 2 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiverKing/siver_wxbot/HEAD/config.json -------------------------------------------------------------------------------- /email.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiverKing/siver_wxbot/HEAD/email.txt -------------------------------------------------------------------------------- /email_send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiverKing/siver_wxbot/HEAD/email_send.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiverKing/siver_wxbot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ttkbootstrap 2 | wxauto 3 | openai 4 | pywin32 5 | requests 6 | cozepy 7 | -------------------------------------------------------------------------------- /wxbot_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiverKing/siver_wxbot/HEAD/wxbot_preview.py -------------------------------------------------------------------------------- /注意事项.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SiverKing/siver_wxbot/HEAD/注意事项.txt --------------------------------------------------------------------------------