如何使用 urllib2 在 Python 2 中发送 HEAD HTTP 请求
要获取特定 URL 的标头并确定其 MIME 类型,必须发送 HEAD 请求。这与 GET 请求不同,因为它检索标头而不下载资源。
Python 2 实现:
urllib2 是一个高级接口,简化了发送 HEAD 请求:
<code class="python">import urllib2 class HeadRequest(urllib2.Request): def get_method(self): return "HEAD" response = urllib2.urlopen(HeadRequest("http://google.com/index.html"))</code>
响应对象:
来自 HEAD 的响应对象包含标头,可通过 response.info() 访问。它还提供重定向 URL:
<code class="python">print(response.geturl()) # Output: http://www.google.com.au/index.html</code>
以上是如何使用 urllib2 在 Python 2 中发送 HEAD HTTP 请求?的详细内容。更多信息请关注PHP中文网其他相关文章!