Python 的 HTTP 客户端库,Requests 2.9.1 发布
jopen 9年前
Requests 2.9.1 发布,Requests 是一个 Python 的 HTTP 客户端库。
>>> r = requests.get('https://api.github.com', auth=('user', 'pass')) >>> r.status_code 204 >>> r.headers['content-type'] 'application/json' >>> r.text ...
此版本更新内容如下:
Bug 修复
-
Resolve regression introduced in 2.9.0 that made it impossible to send binary strings as bodies in Python 3.
-
Fixed errors when calculating cookie expiration dates in certain locales.
Miscellaneous
-
Updated bundled urllib3 to 1.13.1.