我是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