Tagged Questions
1
vote
2answers
320 views
How to request a url with non-unicode carachters on main domainname (not params) in Python?
I cannot request url "http://www.besondere-raumdüfte.de" with urllib2.urlopen().
I tried to encode string using urllib.urlencode with utf-8, idna, ascii But still doesn't work. Raises URLError: ...
3
votes
3answers
3k views
How to fetch a non-ascii url with Python urlopen?
I need to fetch data from a URL with non-ascii characters but urllib2.urlopen refuses to open the resource and raises:
UnicodeEncodeError: 'ascii' codec can't encode character u'\u0131' in position ...