转自:http://www.weidianyuedu.com/content/4113416411635.html
四、关于headers
我们可以打印出响应头:
r= requests.get(“http://pythontab.com/justTest”)
r.headers
`r.headers`返回的是一个字典,例如:
{
‘content-encoding’: ‘gzip’,
‘transfer-encoding’: ‘chunked’,
‘connection’: ‘close’,
‘server’: ‘nginx/1.0.4’,
‘x-runtime’: ‘147ms’,
‘etag’: ‘“e1ca502697e5c9317743dc078f67693a”’,
‘content-type’: ‘application/json’
}
我们可以使用如下方法来取得部分响应头以做判断:
r.headers[‘Content-Type’]
或者
r.headers.get(‘Content-Type’)
如果我们想获得请求头(也就是我们向服务器发送的头信息)该怎么办呢?可以使用r.request.headers直接获得。
同时,我们在请求数据时也可以加上自定义的headers(通过headers关键字参数传递):
headers = {‘user-agent’: ‘myagent’}
r= requests.get(“http://pythontab.com/justTest”,headers=headers)