broken links when fetching url with urllib2 python ISO-8859-15 to utf-8

I had a little annoying issue which was a simple encoding error. I’m not a python expert and i tried to read a webpage via urllib2 in python. Let’s see what i did: import urllib2 req = urllib2.Request(url) response = urllib2.urlopen(req) content = response.read() response.close() When i tried to work with my webpage i got […]