Search Results

0
votes

Unicode problem Django-Python-URLLIB-MySQL

autoweek.com seems confused about it's own encoding. It declares conflicting charset definitions: <meta http-equiv="Content-Type" …
0
votes

UnicodeDecodeError when using socket.gethostname() result

I don't think that there is a problem with the actual code that you've posted, even if socket.gethostname() returns a unicode object. There will be a problem when you attempt to use …
0
votes

How to enforce unicode arguments for methods?

Another option is to use assertions. It depends on whether passing a non-unicode type into your methods should be considered a programming error that should be evident during development. …
3
votes

Convert UTF-8 octets to unicode code points

l = ['0xc5','0x81'] s = ''.join([chr(int(c, 16)) for c in l]).decode('utf8') s >>> u'\u0141' …