├── .gitattributes ├── .github └── workflows │ ├── classPush.yml │ ├── eve.yml │ └── morning.yml ├── .gitignore ├── .idea ├── .gitignore ├── get_class_push.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── classPush.py ├── eve.py ├── morning.py ├── packages.txt ├── run.py └── template.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/classPush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.github/workflows/classPush.yml -------------------------------------------------------------------------------- /.github/workflows/eve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.github/workflows/eve.yml -------------------------------------------------------------------------------- /.github/workflows/morning.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.github/workflows/morning.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/get_class_push.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.idea/get_class_push.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/README.md -------------------------------------------------------------------------------- /classPush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/classPush.py -------------------------------------------------------------------------------- /eve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/eve.py -------------------------------------------------------------------------------- /morning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/morning.py -------------------------------------------------------------------------------- /packages.txt: -------------------------------------------------------------------------------- 1 | requests~=2.28.1 2 | wechatpy~=1.8.18 3 | pycryptodome~=3.15.0 4 | -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/run.py -------------------------------------------------------------------------------- /template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/inannan423/wx_weather_class_push/HEAD/template.md --------------------------------------------------------------------------------