Python请求通常用于从特定资源URI中获取内容。每当我们通过Python向指定URI发出请求时,它都会返回一个响应对象。现在,该响应对象将用于访问某些函数,例如内容,标头等。本文围绕如何检查响应对象中的response.is_permanent_redirect展开。如果响应是永久重定向的URL,则response.is_permanent_redirect返回True,否则返回False。 301重定向是从一个URL到另一个URL的永久重定向。 301将发送的网站访问者和搜索引擎重定向到与他们最初在浏览器中键入或从搜索引擎结果页面选择的URL不同的URL。
如何通过Python请求使用response.is_permanent_redirect?
为了说明response.is_permanent_redirect的用法,让我们ping geeksforgeeks.org。要运行此脚本,您需要在PC上安装Python和请求。
先决条件-
示例代码-
# import requests module
import requests
# Making a get request
response = requests.get('https://geeksforgeeks.org')
# print response
print(response)
# print is_permanent_redirect flag
print(response.is_permanent_redirect)
示例实现-
将以上文件另存为request.py
并使用
Python request.py
输出-
在输出开始时检查False,表明is_permanent_redirect
是错误的。
先进概念
使用Python发出HTTP请求的库有很多,例如httplib,urllib,httplib2,treq等,但是请求是具有出色函数的最好的库之一。如果请求的任何属性显示为NULL,请使用以下属性检查状态代码。
requests.status_code
如果status_code不在200-29范围内。您可能需要检查开始用于请求的方法+您正在请求的URL的资源。
相关用法
- Python response.ok用法及代码示例
- Python response.url用法及代码示例
- Python response.json()用法及代码示例
- Python response.iter_content()用法及代码示例
- Python response.is_redirect用法及代码示例
- Python response.history用法及代码示例
- Python response.request用法及代码示例
- Python response.reason用法及代码示例
- Python response.status_code用法及代码示例
- Python response.text用法及代码示例
- Python response.raise_for_status()用法及代码示例
- Python response.headers用法及代码示例
注:本文由纯净天空筛选整理自NaveenArora大神的英文原创作品 response.is_permanent_redirect – Python requests。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。