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 중국어 웹사이트의 기타 관련 기사를 참조하세요!