작성
·
199
0
~\anaconda3\lib\urllib\request.py in do_open(self, http_class, req, **http_conn_args) 1353 try: -> 1354 h.request(req.get_method(), req.selector, req.data, headers,
답변 1
0
import urllib.request
import certifi
import ssl
html = urllib.request.urlopen('https://pythonscraping.com/pages/page1.html', context=ssl.create_default_context(cafile=certifi.where()))
--
이걸로 해결했습니다