Python 2 中的HEAD HTTP 請求:檢索用於MIME 類型確定的標頭
問題:
問題:問題:
<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>
問題:
<code class="python">print response.geturl() # Output: http://www.google.com.au/index.html</code>
以上是如何在 Python 2 中使用 HEAD 請求來確定 MIME 類型而不下載內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!