Skip to content

Commit 9da45e4

Browse files
author
gusibi
authored
Merge pull request #39 from gusibi/replace_pycrypto
Replace pycrypto
2 parents 3706675 + 440cd1e commit 9da45e4

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,18 @@ Requires
3232
* simplejson
3333
* six
3434
* xmltodict
35-
* pycrypto
35+
* pycryptodome
3636
```
3737

38-
#### 微信小程序使用示例:
38+
### [快速入门](https://github.com/gusibi/python-weixin/wiki/%E5%BF%AB%E9%80%9F%E5%BC%80%E5%A7%8B)
3939

40-
[微信小程序登录文档](https://mp.weixin.qq.com/debug/wxadoc/dev/api/api-login.html)
40+
* [微信公众平台](https://github.com/gusibi/python-weixin/wiki/%E5%BE%AE%E4%BF%A1%E5%85%AC%E4%BC%97%E5%B9%B3%E5%8F%B0)
41+
* [微信授权](https://github.com/gusibi/python-weixin/wiki/%E5%BE%AE%E4%BF%A1%E6%8E%88%E6%9D%83)
42+
* [微信支付](https://github.com/gusibi/python-weixin/wiki/%E5%BE%AE%E4%BF%A1%E6%94%AF%E4%BB%98)
43+
44+
### 微信小程序使用示例:
45+
46+
[微信小程序登录文档](https://developers.weixin.qq.com/miniprogram/dev/api/wx.login.html)
4147

4248
微信小程序登录获取用户信息
4349
-----
@@ -209,4 +215,4 @@ API 列表
209215
[模板消息](https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1433751277&token=&lang=zh_CN)
210216

211217
#### 有问题可以在公号讨论
212-
![关注公号](http://media.gusibi.mobi/kel2L88yf9YXZYecLIn0LPZPSXc7zJfHyGUz5biWsZrGh7xF2JONZT93dgClGdMn)
218+
![关注公号](http://media.gusibi.mobi/ASlCYThVMfqenyMHXATIbnBew5Fyt8D3Y2l6k0fL4kZuIs0zzUUT21BCpOm51o2R)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ requests
33
chardet
44
six
55
xmltodict
6-
pycrypto
6+
pycryptodome

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
requirements = [l for l in f.read().splitlines() if l]
1111

1212
setup(name="python-weixin",
13-
version="0.4.6",
13+
version="0.4.7",
1414
description="Python Weixin API client support wechat-app",
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",

weixin/pay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def refund(self, out_refund_no, total_fee, refund_fee, op_user_id,
216216
out_trade_no='', transaction_id='',
217217
device_info='', refund_fee_type='CNY'):
218218
"""
219-
退款查询接口
219+
退款接口
220220
https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_4
221221
:param out_refund_no: 商户退款单号
222222
:param total_fee: 总金额

0 commit comments

Comments
 (0)