urllib.error.URLError urlopen error [Errno 54] Connection reset by peer
I got this error by when try to fetch notino.com . I guess the guy used some clever way to prevent the screen scraper . I tried to add header and cookie but this doesn't work
from urllib.request import urlopen
url = "https://www.notino.com"
html = urlopen(url)
An auto-bot detection mechanism is most likely dropping your connection. You should provide a
User-Agent
header to fake a browser visit - worked for me:Using
requests
module in this example.