gpt4 book ai didi

python - 如何从 Python 请求 'Response' 对象获取 HTTP VERB?

转载 作者:行者123 更新时间:2023-11-30 23:37:39 26 4
gpt4 key购买 nike

从源代码来看,method 成员属性正是我想要的。

https://github.com/kennethreitz/requests/blob/master/requests/models.py

通过示例总结,这就是我想要的:

>>> r = requests.get("http://httpbin.org/get")
>>> print r.method
'GET'

但是我不知道是否有办法获得它(无需编写我自己的 hacky 包装器)...

最佳答案

它存储在响应的 request 属性中:

>>> r = requests.head('http://www.example.com')
>>> r.request.method
'HEAD'

>>> r = requests.get('http://www.example.com')
>>> r.request.method
'GET'

关于python - 如何从 Python 请求 'Response' 对象获取 HTTP VERB?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15293522/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com