# mp_bot **Repository Path**: evilpan/mp_bot ## Basic Information - **Project Name**: mp_bot - **Description**: 微信公众号后台示例代码,一个简单的电子货币自动报价机器人。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-21 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README mp_bot === # 安装依赖 ```sh pip3 install -r requirements.txt ``` # 启动服务器 ```sh python3 -m mp.main ``` 在生产环境中使用gunicorn启动: ``` gunicorn -w 4 --bind 127.0.0.1:5000 mp.main:app ``` 或者使用`run.sh`脚本运行: ```sh $ ./run.sh Usage: ./run.sh {start|stop|reload|status} ```