urllib.error.URLError:<urlopen error =“” [winerror =“” 10061] =“” no =“” connection =“” may =“” be =“” ma =“” de =“”因为=“ the =“” target =“”机器=“” active =“”拒绝=“” it =“”>

时间:2018-10-24 19:53:22

标签: python-3.x urllib urlopen

我尝试使用Urllib从网页上检索数据,但我不断收到[WinError 10061][WinError 10060]的消息,有人(我们都是初学者)告诉我,该错误可能来自我的代理设置,但我们都不知道该如何解决(我们已经尝试过)。这是代码:

import urllib.request
g='https://data.pr4e.org/romeo.txt'
han=urllib.request.urlopen(g)
for line in han:
    print(line.decode().strip())

请问可能是问题所在,如果这是我的代理服务器设置,我该如何解决该问题。

0 个答案:

没有答案