回应
可以从后期操作查看响应代码:
from requests import post
foo = post('http://httpbin.org/post', data={'data' : 'value'})
print(foo.status_code)
返回的数据
访问返回的数据:
foo = post('http://httpbin.org/post', data={'data' : 'value'})
print(foo.text)
原始回应
在需要访问底层 urllib3 response.HTTPResponse 对象的实例中,可以通过以下方式完成此操作:
foo = post('http://httpbin.org/post', data={'data' : 'value'})
res = foo.raw
print(res.read())