Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ChanMo/django-wechat-qrcode
基于django和wechat的会员推广二维码模块
https://github.com/ChanMo/django-wechat-qrcode
Last synced: 3 months ago
JSON representation
基于django和wechat的会员推广二维码模块
- Host: GitHub
- URL: https://github.com/ChanMo/django-wechat-qrcode
- Owner: ChanMo
- License: other
- Created: 2016-04-26T04:38:27.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-18T08:14:33.000Z (almost 8 years ago)
- Last Synced: 2024-07-19T03:04:43.496Z (4 months ago)
- Language: Python
- Homepage:
- Size: 191 KB
- Stars: 7
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
基于django的微信二维码模块
============================功能说明:
----------- 每个微信会员有一个唯一的二维码
- 可以记录用户的来源快速开始:
---------安装 *django-wechat-qrcode* :
.. code-block::
pip install django-wechat-qrcode
修改 *settings.py* 文件:
.. code-block::
INSTALLED_APPS = (
...
'wechat',
'wechat_message',
'wechat_member',
'wechat_qrcode',
...
)修改 *urls.py* 文件:
.. code-block::
url(r'^qrcode/', include('wechat_qrcode.urls')),
更新数据库:
.. code-block::
python manage.py makemigrations wechat_qrcode
python manage.py migrate微信开发者链接:
http://yourdomain/qrcode/wx/
用户二维码主页:
http://yourdomain/qrcode/
版本更改:
---------
- v1.0 模块名称更新为wechat_qrcode