https://github.com/ChanMo/django-wechat-wallet
基于django和wechat的会员钱包模块
https://github.com/ChanMo/django-wechat-wallet
Last synced: 12 months ago
JSON representation
基于django和wechat的会员钱包模块
- Host: GitHub
- URL: https://github.com/ChanMo/django-wechat-wallet
- Owner: ChanMo
- License: other
- Created: 2016-04-26T06:09:36.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-05-19T06:36:50.000Z (about 9 years ago)
- Last Synced: 2024-11-08T08:25:58.892Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 150 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
钱包模块
=====================================
一个基于django和wechat的钱包模块
功能说明:
----------
- 每个微信会员有一个唯一的钱包
- 钱包有交易记录
快速开始:
---------
安装 *django-wechat-wallet* :
.. code-block::
pip install django-wechat-wallet
修改 *settings.py* 文件:
.. code-block::
INSTALLED_APPS = (
...
'wallet',
...
)
修改 *urls.py* 文件:
.. code-block::
url(r'^wallet/', include('wallet.urls', namespace='wallet')),
更新数据库:
.. code-block::
python manage.py makemessage wallet
python manage.py migrate
版本更改:
---------
- v0.2 删去提醒功能,更新模板样式
- v0.1 第一版