ConnectionResetError的异常:[Errno 54]由对等方重置连接

时间:2016-11-28 19:23:36

标签: python-3.x selenium exception-handling beautifulsoup python-requests

我无法为我收到的错误成功构建异常:

ConnectionResetError: [Errno 54] Connection reset by peer

这是我的代码:

try:
    for img in soup.findAll('img', {'class': 'thisclass'}):
        print('Image #:' + str(counter) + ' URL: ' + img['src'])
        myurl = img['src']
        urllib.request.urlretrieve(str(myurl), str(mypath)+str(foldername)+'/webp/'+str(foldername)+str(counter)+'.webp')
        im = Image.open(str(mypath)+str(foldername)+'/webp/'+ str(foldername) +str(counter)+'.webp').convert("RGB")
        im.save(str(mypath)+str(foldername)+'/jpg/'+ str(foldername) +str(counter)+'.jpg','jpeg')
        print('Downloaded Image ' + str(counter))
        counter = counter + 1
        sleep(random.uniform(1.3,2.4))

except requests.exceptions.ConnectionResetError:
    print('Handle Exception')

except requests.exceptions.ConnectionError:
    print('Handle Exception')

我测试的这些例外不起作用。关于如何成功处理此错误的任何建议?

编辑:文字修复

1 个答案:

答案 0 :(得分:4)

似乎urllib正在抛出异常。在python 3中ConnectionResetError是一个内置异常,只需使用:

except ConnectionResetError:

在任何情况下,您似乎都没有使用requests模块 - 这应该是您的提示。