django wechat pay
1.0.0
Install django-wechat-pay:
pip install django-wechat-pay
Modify the settings.py file:
INSTALLED_APPS = ( ... 'wechat', 'wechat_pay', ... )
At the bottom of the settings.py file add:
# wechat config WECHAT = [ { 'appid': 'demo', 'appsecret': 'demo', 'token': 'demo', 'mch_id': 'demo', 'key': 'demo', 'body': 'demo', }, ]