完成第2节后,我收到以下错误。
“urllib.error.URLError:”
答案 0 :(得分:0)
更改将context =开关添加到response =行。 我并不认为这是安全的,只是让你继续学习。
def load_page(url: str):
response = urlopen(url, context=ssl._create_unverified_context())
html = response.read().decode('utf8')
return html