在做Lynda课程“使用PyCharm学习Python”时出现SSL问题

时间:2017-11-08 01:00:00

标签: python pycharm

完成第2节后,我收到以下错误。

“urllib.error.URLError:”

1 个答案:

答案 0 :(得分:0)

更改将context =开关添加到response =行。 我并不认为这是安全的,只是让你继续学习。

def load_page(url: str):
    response = urlopen(url, context=ssl._create_unverified_context())
    html = response.read().decode('utf8')
    return html