인프런 커뮤니티 질문&답변
SSLError
작성
·
103
답변 2
0
0
스타트코딩
지식공유자
import requests
import urllib3
# SSL 경고 메시지 무시
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
response = requests.get('https://example.com', verify=False)
print(response.content)
그럼 위와 같이 경고 메시지를 무시해 볼까요??









주소를 바꿔 주셔야 합니다~ ㅎㅎ