python requests重定向的操作

796次阅读
没有评论

python

在学习requests的有关内容时,细心的小伙伴会发现它会自动清理大部分的重定向。本篇介绍requests重定向的操作。

1、可以使用响应对象的 history 方法来追踪重定向。

Response.history 是一个:class:Response<requests.Response> 对象的列表,为了完成请求而创建了这些对象。

>>> r = requests.get('http://github.com')
>>> r.url
'https://github.com/'
>>> r.status_code
200
>>> r.history
[<Response [301]>]

2、通过allow_redirects参数禁用重定向处理。

>>> r = requests.get('http://github.com', allow_redirects=False)
>>> r.status_code
301
>>> r.history
[]

3、如果使用的是HEAD,可以启用重定向。

>>> r = requests.head('http://github.com', allow_redirects=True)
>>> r.url
'https://github.com/'
>>> r.history
[<Response [301]>]

以上就是python requests重定向操作的介绍,希望对大家有所帮助。

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2022-04-08发表,共计594字。
新手QQ群:570568346,欢迎进群讨论 Python51学习