Python UnicodeDecodeError - Am I misunderstanding encode? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T15:14:35Zhttp://stackoverflow.com/feeds/question/368805http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/368805/python-unicodedecodeerror-am-i-misunderstanding-encode5Python UnicodeDecodeError - Am I misunderstanding encode?Greg2008-12-15T15:57:24Z2009-11-25T23:22:55Z
<p>Any thoughts on why this isn't working? I really thought 'ignore' would do the right thing.</p>
<pre><code>>>> 'add \x93Monitoring\x93 to list '.encode('latin-1','ignore')
Traceback (most recent call last):
File "<interactive input>", line 1, in ?
UnicodeDecodeError: 'ascii' codec can't decode byte 0x93 in position 4: ordinal not in range(128)
</code></pre>
http://stackoverflow.com/questions/368805/python-unicodedecodeerror-am-i-misunderstanding-encode/368828#3688282Answer by Roberto Liffredo for Python UnicodeDecodeError - Am I misunderstanding encode?Roberto Liffredo2008-12-15T16:02:02Z2008-12-15T16:02:02Z<p>encode is available to unicode strings, but the string you have there does not seems unicode (try with u'add \x93Monitoring\x93 to list ')</p>
<pre><code>>>> u'add \x93Monitoring\x93 to list '.encode('latin-1','ignore')
'add \x93Monitoring\x93 to list '
</code></pre>
http://stackoverflow.com/questions/368805/python-unicodedecodeerror-am-i-misunderstanding-encode/368859#368859-1Answer by Greg for Python UnicodeDecodeError - Am I misunderstanding encode?Greg2008-12-15T16:10:11Z2008-12-15T16:10:11Z<p>This seems to work:</p>
<pre><code>'add \x93Monitoring\x93 to list '.decode('latin-1').encode('latin-1')
</code></pre>
<p>Any issues with that? I wonder when 'ignore', 'replace' and other such encode error handling comes in?</p>
http://stackoverflow.com/questions/368805/python-unicodedecodeerror-am-i-misunderstanding-encode/370199#37019915Answer by ΤΖΩΤΖΙΟΥ for Python UnicodeDecodeError - Am I misunderstanding encode?ΤΖΩΤΖΙΟΥ2008-12-16T00:45:11Z2009-11-25T23:22:55Z<p>…there's a reason they're called "encodings"…</p>
<p>A little preamble: think of unicode as the norm, or the ideal state. Unicode is just a table of characters. №65 is latin capital A. №937 is greek capital omega. Just that.<br>
In order for a computer to store and-or manipulate Unicode, it has to <em>encode</em> it into bytes. The most straightforward <em>encoding</em> of Unicode is UCS-4; every character occupies 4 bytes, and all ~1000000 characters are available. The 4 bytes contain the number of the character in the Unicode tables as a 4-byte integer. Another very useful encoding is UTF-8, which can encode any Unicode character with one to four bytes. But there also are some limited encodings, like "latin1", which include a very limited range of characters, mostly used by Western countries. Such <em>encodings</em> use only one byte per character.</p>
<p>Basically, Unicode can be <em>encoded</em> with many encodings, and encoded strings can be <em>decoded</em> to Unicode. The thing is, Unicode came quite late, so all of us that grew up using an 8-bit <em>character set</em> learned too late that all this time we worked with <em>encoded</em> strings. The encoding could be ISO8859-1, or windows CP437, or CP850, or, or, or, depending on our system default.</p>
<p>So when, in your source code, you enter the string "add “Monitoring“ to list" (and I think you wanted the string "add “Monitoring” to list", note the second quote), you actually are using a string already <em>encoded</em> according to your system's default codepage (by the byte \x93 I assume you use Windows codepage 1252, “Western”). If you want to get Unicode from that, you need to <em>decode</em> the string from the "cp1252" encoding.</p>
<p>So, what you meant to do, was:</p>
<pre><code>"add \x93Monitoring\x94 to list".decode("cp1252", "ignore")
</code></pre>
<p>It's unfortunate that Python 2.x includes an <code>.encode</code> method for strings too; this is a convenience function for "special" encodings, like the "zip" or "rot13" or "base64" ones, which have nothing to do with Unicode.</p>
<p>Anyway, all you have to remember for your to-and-fro Unicode conversions is:</p>
<ul>
<li>a Unicode string gets <em>encoded</em> to a Python 2.x string (actually, a sequence of bytes)</li>
<li>a Python 2.x string gets <em>decoded</em> to a Unicode string</li>
</ul>
<p>In both cases, you need to specify the <em>encoding</em> that will be used.</p>
<p>I'm not very clear, I'm sleepy, but I sure hope I help.</p>
<p>PS A humorous side note: Mayans didn't have Unicode; ancient Romans, ancient Greeks, ancient Egyptians didn't too. They all had their own "encodings", and had little to no respect for other cultures. All these civilizations crumbled to dust. Think about it people! Make your apps Unicode-aware, for the good of mankind. :)</p>
<p>PS2 Please don't spoil the previous message by saying "But the Chinese…". If you feel inclined or obligated to do so, though, delay it by thinking that the Unicode BMP is populated mostly by chinese ideograms, ergo Chinese is the basis of Unicode. I can go on inventing outrageous lies, as long as people develop Unicode-aware applications. Cheers!</p>
http://stackoverflow.com/questions/368805/python-unicodedecodeerror-am-i-misunderstanding-encode/425517#4255171Answer by Gregg Lind for Python UnicodeDecodeError - Am I misunderstanding encode?Gregg Lind2009-01-08T19:20:32Z2009-01-08T19:20:32Z<p>I also wrote a long blog about this subject: </p>
<p><a href="http://writeonly.wordpress.com/2008/12/10/the-hassle-of-unicode-and-getting-on-with-it-in-python/" rel="nofollow">The Hassle of Unicode and Getting on With It</a></p>