Files
wxbot/wxbot_project_py2.7/README.md
T
2017-11-05 12:03:34 -08:00

36 lines
837 B
Markdown
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# wxbot_project_py2.7
目录结构:
```bash
.
├── README.md
├── config
│   ├── __init__.py
│   ├── config_manager.py
│   ├── constant.py
│   ├── log.py
│   ├── requirements.txt
│   └── wechat.conf.bak
├── db
│   ├── __init__.py
│   ├── mysql_db.py
│   └── sqlite_db.py
├── docker
│   ├── Dockerfile
│   └── README.md
├── flask_templates
│   ├── index.html
│   └── upload.html
├── wechat
│   ├── __init__.py
│   ├── utils.py
│   ├── wechat_apis.py
│   └── wechat.py
├── weixin_bot.py
└── wx_handler
├── __init__.py
├── bot.py
├── sendgrid_mail.py
└── wechat_msg_processor.py
```