https://github.com/chanmo/django-wechat-message
基于django-wechat-base的微信信息管理模块
https://github.com/chanmo/django-wechat-message
Last synced: 4 months ago
JSON representation
基于django-wechat-base的微信信息管理模块
- Host: GitHub
- URL: https://github.com/chanmo/django-wechat-message
- Owner: ChanMo
- License: other
- Created: 2016-11-03T15:28:43.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-18T03:59:20.000Z (over 9 years ago)
- Last Synced: 2025-04-19T09:40:29.262Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 63.5 KB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
微信消息管理模块
================
基于django-wechat-base的简单微信消息管理模块
快速开始:
---------
安装django-wechat-message:
.. code-block::
pip install django-wechat-message
修改settings.py文件:
.. code-block::
INSTALLED_APPS = (
...
'wechat',
'wechat_message',
...
)
在settings.py文件底部添加:
.. code-block::
# wechat config
WECHAT = [
{
'appid': 'demo',
'appsecret': 'demo',
'token': 'demo',
},
]
修改urls.py文件:
.. code-block::
urlpatterns = [
...
url(r'^wx/', include('wechat_message.urls', namespace='wx')),
...
]
版本更改:
---------
- v1.0 使用统一的xml回复