Skip to content Skip to sidebar Skip to footer

Exception For Connectionreseterror: [errno 54] Connection Reset By Peer

I cannot successfully build an exception for the error I am receiving: ConnectionResetError: [Errno 54] Connection reset by peer Here is my code: try: for img in soup.findAll(

Solution 1:

It seems urllib is throwing the exception. In python 3 ConnectionResetError is a built in exception, just use:

except ConnectionResetError:

You don't seem to be using the requests module in any case - that should have been your hint.

Post a Comment for "Exception For Connectionreseterror: [errno 54] Connection Reset By Peer"