├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── genReq.sh ├── requirements.txt ├── screenshot ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png └── 8.jpg └── weixin.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | -------------------------------------------------------------------------------- /genReq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/genReq.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/screenshot/1.png -------------------------------------------------------------------------------- /screenshot/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/screenshot/2.png -------------------------------------------------------------------------------- /screenshot/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/screenshot/3.png -------------------------------------------------------------------------------- /screenshot/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/screenshot/4.png -------------------------------------------------------------------------------- /screenshot/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/screenshot/5.png -------------------------------------------------------------------------------- /screenshot/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/screenshot/6.png -------------------------------------------------------------------------------- /screenshot/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/screenshot/7.png -------------------------------------------------------------------------------- /screenshot/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/screenshot/8.jpg -------------------------------------------------------------------------------- /weixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/WeixinBot/HEAD/weixin.py --------------------------------------------------------------------------------