• 技术文章 >Python技术 >Python基础教程

    python中contextmanager()的转换

    小妮浅浅小妮浅浅2021-03-16 17:03:41原创1802

    1、说明

    当发出请求时,requests 库会在将请求实际发送到目标服务器之前准备该请求。 请求准备包括像验证头信息和序列化JSON内容等。

    2、实例

    可以通过访问 .request 来查看 PreparedRequest:

    >>> response = requests.post('https://httpbin.org/post', json={'key':'value'})
    >>> response.request.headers['Content-Type']
    'application/json'
    >>> response.request.url
    'https://httpbin.org/post'
    >>> response.request.body
    b'{"key": "value"}'

    通过检查 PreparedRequest,可以访问有关正在进行的请求的各种信息,例如有效负载,URL,头信息,身份验证等。

    以上就是python中contextmanager()转换的方法,希望对大家有所帮助。更多Python学习指路:python基础教程

    专题推荐:python contextmanager
    上一篇:python如何使用requests检查请求 下一篇:python忽略异常的方法

    相关文章推荐

    • python新式类是什么• python响应头部是什么• python请求头如何自定义?• python如何使用requests检查请求

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网