编程语言
首页 > 编程语言> > Python请求:响应对象不包含“status”标头

Python请求:响应对象不包含“status”标头

作者:互联网

这是Requests 1.1.0和Python 2.6.4(在Python 2.7.2上也有相同的行为).

>>> import requests
>>> response = requests.get('http://www.google.com')
>>> response.status_code
200
>>> print response.headers.get('status')
None

根据文档,应该有一个标题[‘status’]条目,其字符串如“200 OK”.

这是标题dict的完整内容:

>>> response.headers 
{'x-xss-protection': '1; mode=block', 'transfer-encoding': 'chunked', 'set-cookie': 'PREF=ID=74b29ee465454efd:FF=0:TM=1362094463:LM=1362094463:S=Xa96iJQX_9BrC-Vm; expires=Sat, 28-Feb-2015 23:34:23 GMT; path=/; domain=.google.com, NID=67=IH21bLPTK2gLTHCyDCMEs3oN5g1uMV99U4Wsc2YA00AbFt4fQCoywQNEQU0pR6VuaNhhQGFCsqdr0FnWbPcym-pizo0xVuS6WBJ9EOTeSFARpzrsiHh6HNnaQeCnxCSH; expires=Fri, 30-Aug-2013 23:34:23 GMT; path=/; domain=.google.com; HttpOnly', 'expires': '-1', 'server': 'gws', 'cache-control': 'private, max-age=0', 'date': 'Thu, 28 Feb 2013 23:34:23 GMT', 'p3p': 'CP="This is not a P3P policy! See http://www.google.com/support/accounts/bin/answer.py?hl=en&answer=151657 for more info."', 'content-type': 'text/html; charset=ISO-8859-1', 'x-frame-options': 'SAMEORIGIN'}

Here是我认为这个dict应该包含’status’条目的地方.

难道我做错了什么?

解决方法:

你正在寻找“理由”

>>> x=requests.get("http://apple.adam.gs")
>>> x.reason
'OK'
>>> 

custom.php包含:

header("HTTP/1.1 200 Testing")

结果是:

>>> x=requests.get("http://apple.adam.gs/custom.php")
>>> print x.reason
Testing
>>> 

标签:python,http-status-codes,python-requests
来源: https://codeday.me/bug/20190703/1371196.html