1. XenForo 1.5.14 中文版——支持中文搜索!现已发布!查看详情
  2. Xenforo 爱好者讨论群:215909318 XenForo专区

新闻 Requests 2.6.0 发布,Python 的 HTTP 客户端库 下载

本帖由 漂亮的石头2015-03-15 发布。版面名称:软件资讯

  1. 漂亮的石头

    漂亮的石头 版主 管理成员

    注册:
    2012-02-10
    帖子:
    486,020
    赞:
    46
    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
    ...

    Requests 2.6.0 发布,此版本现已提供下载:https://github.com/kennethreitz/requests/archive/v2.6.0.zip

    更新内容如下:

    Bug 修复


    • Fix handling of cookies on redirect.


    • Fix error when requests is an install_requires dependency and python setup.py test is run. (#2462)


    • Fix error when urllib3 is unbundled and requests continues to use the vendored import location.


    • Include fixes to urllib3's header handling.


    • Requests' handling of unvendored dependencies is now more restrictive.

    新特性和改进


    • Support bytearrays when passed as parameters in the files argument. (#2468)


    • Avoid data duplication when creating a request with str, bytes, orbytearray input to the files argument.

    更多内容请看更新日志
    Requests 2.6.0 发布,Python 的 HTTP 客户端库下载地址
     
正在加载...