http.client Python 모듈로 다음 리디렉션
2898 단어 python
http.client
Python 모듈을 사용하는 동안 자동 후속 리디렉션(3XX 상태)에 대한 구성이 없습니다.나처럼 완고하고 여전히 모듈을 사용하고 싶다면 다음 리디렉션에 대한 스니펫이 있습니다.
#! /usr/bin/python3
from http.client import HTTPSConnection
from urllib.parse import urljoin
def get(host, url):
print(f'GET {url}')
connection = HTTPSConnection(host)
connection.request('GET', url)
response = connection.getresponse()
location_header = response.getheader('location')
if location_header is None:
return response
else:
location = urljoin(url, location_header)
return get(host, location)
response = get('en.wikipedia.org', '/api/rest_v1/page/random/summary')
print(response.read())
Reference
이 문제에 관하여(http.client Python 모듈로 다음 리디렉션), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/tallesl/following-redirects-with-httpclient-python-module-439j텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)