我无法为我收到的错误成功构建异常:
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')
我测试的这些例外不起作用。关于如何成功处理此错误的任何建议?
编辑:文字修复
答案 0 :(得分:4)
似乎urllib
正在抛出异常。在python 3中ConnectionResetError是一个内置异常,只需使用:
except ConnectionResetError:
在任何情况下,您似乎都没有使用requests
模块 - 这应该是您的提示。