IOError:使用urrlib.urlopen时出现[Errno套接字错误] [Errno 10054]

时间:2019-04-09 10:07:06

标签: python-2.7 urllib

我是python的新手,并且一直使用urrlib.urlopen打开网页

我使用的代码是:

import urllib
response = urllib.urlopen(someurl)

我收到以下错误:

IOError: [Errno socket error] [Errno 10054] An existing connection was forcibly closed by the remote host

当我使用reqeusts lib时,它的工作原理也一样。

import requests
response = requests.get(someurl,verify=False)

我知道由于额外的参数验证,上一个错误不会发生。

请帮助我,以使urllib正常工作?

我使用的python版本是2.7

0 个答案:

没有答案