How do I convert a file's format from Unicode to ASCII using Python? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:30:25Z http://stackoverflow.com/feeds/question/175240 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/175240/how-do-i-convert-a-files-format-from-unicode-to-ascii-using-python 6 How do I convert a file's format from Unicode to ASCII using Python? Ray Vega 2008-10-06T17:11:30Z 2008-10-06T20:24:46Z <p>I use a 3rd party tool that outputs a file in Unicode format. However, I prefer it to be in ASCII. The tool does not have settings to change the file format.</p> <p>What is the best way to convert the entire file format using Python?</p> http://stackoverflow.com/questions/175240/how-do-i-convert-a-files-format-from-unicode-to-ascii-using-python/175258#175258 6 Answer by Pete Karl II for How do I convert a file's format from Unicode to ASCII using Python? Pete Karl II 2008-10-06T17:17:01Z 2008-10-06T17:23:46Z <p><em>I think this is a deeper issue than you realize</em>. Simply changing the file from Unicode into ASCII is easy, however, getting all of the Unicode characters to translate into reasonable ASCII counterparts (many letters are not available in both encodings) is another.</p> <p>This Python Unicode tutorial may give you a better idea of what happens to Unicode strings that are translated to ASCII: <a href="http://www.reportlab.com/i18n/python_unicode_tutorial.html" rel="nofollow">http://www.reportlab.com/i18n/python_unicode_tutorial.html</a></p> <p><strong>Here's a useful quote from the site:</strong></p> <blockquote> <p>Python 1.6 also gets a "unicode" built-in function, to which you can specify the encoding:</p> </blockquote> <pre><code>&gt; &gt;&gt;&gt; unicode('hello') u'hello' &gt; &gt;&gt;&gt; unicode('hello', 'ascii') u'hello' &gt; &gt;&gt;&gt; unicode('hello', 'iso-8859-1') u'hello' &gt; &gt;&gt;&gt; </code></pre> <blockquote> <p>All three of these return the same thing, since the characters in 'Hello' are common to all three encodings.</p> <p>Now let's encode something with a European accent, which is outside of ASCII. What you see at a console may depend on your operating system locale; Windows lets me type in ISO-Latin-1.</p> </blockquote> <pre><code>&gt; &gt;&gt;&gt; a = unicode('André','latin-1') &gt; &gt;&gt;&gt; a u'Andr\202' </code></pre> <blockquote> <p>If you can't type an acute letter e, you can enter the string 'Andr\202', which is unambiguous.</p> <p>Unicode supports all the common operations such as iteration and splitting. We won't run over them here.</p> </blockquote> <p><hr /></p> <p><strong>IMHO, PConroy has a good answer.</strong> I'd vote him up, but I'm out for today :D</p> http://stackoverflow.com/questions/175240/how-do-i-convert-a-files-format-from-unicode-to-ascii-using-python/175260#175260 2 Answer by Dan for How do I convert a file's format from Unicode to ASCII using Python? Dan 2008-10-06T17:18:04Z 2008-10-06T17:30:45Z <p>Like this:</p> <pre><code>uc = open(filename).read().decode('utf8') ascii = uc.decode('ascii') </code></pre> <p>Note, however, that this will <strong>fail</strong> with a <code>UnicodeDecodeError</code> exception if there are any characters that can't be converted to ASCII.</p> <p>EDIT: As Pete Karl just pointed out, there is no one-to-one mapping from Unicode to ASCII. So some characters simply can't be converted in an information-preserving way. Moreover, standard ASCII is more or less a subset of UTF-8, so you don't really even need to do any decoding.</p> http://stackoverflow.com/questions/175240/how-do-i-convert-a-files-format-from-unicode-to-ascii-using-python/175270#175270 18 Answer by ConroyP for How do I convert a file's format from Unicode to ASCII using Python? ConroyP 2008-10-06T17:21:15Z 2008-10-06T17:27:56Z <p>You can convert the file easily enough just using the <code>unicode</code> function, but you'll run into problems with Unicode characters without a straight ASCII equivalent.</p> <p><a href="http://www.peterbe.com/plog/unicode-to-ascii" rel="nofollow">This blog</a> recommends the <code><a href="http://www.python.org/doc/2.5.2/lib/module-unicodedata.html" rel="nofollow">unicodedata </a></code> module, which seems to take care of roughly converting characters without direct corresponding ASCII values, e.g.</p> <pre><code>&gt;&gt;&gt; title = "Klüft skräms inför på fédéral électoral große" </code></pre> <p>is typically converted to </p> <pre><code>Klft skrms infr p fdral lectoral groe </code></pre> <p>which is pretty wrong. However, using the <code>unicodedata</code> module, the result can be much closer to the original text:</p> <pre><code>&gt;&gt;&gt; import unicodedata &gt;&gt;&gt; unicodedata.normalize('NFKD', title).encode('ascii','ignore') 'Kluft skrams infor pa federal electoral groe' </code></pre> http://stackoverflow.com/questions/175240/how-do-i-convert-a-files-format-from-unicode-to-ascii-using-python/175286#175286 1 Answer by giltay for How do I convert a file's format from Unicode to ASCII using Python? giltay 2008-10-06T17:24:48Z 2008-10-06T17:24:48Z <p>Here's some simple (and stupid) code to do encoding translation. I'm assuming (but you shouldn't) that the input file is in UTF-16 (Windows calls this simply 'Unicode').</p> <pre><code>input_codec = 'UTF-16' output_codec = 'ASCII' unicode_file = open('filename') unicode_data = unicode_file.read().decode(input_codec) ascii_file = open('new filename', 'w') ascii_file.write(unicode_data.write(unicode_data.encode(output_codec))) </code></pre> <p>Note that this will not work if there are any characters in the Unicode file that are not also ASCII characters. You can do the following to turn unrecognized characters into '?'s:</p> <pre><code>ascii_file.write(unicode_data.write(unicode_data.encode(output_codec, 'replace'))) </code></pre> <p>Check out <a href="http://docs.python.org/library/stdtypes.html#str.encode" rel="nofollow">the docs</a> for more simple choices. If you need to do anything more sophisticated, you may wish to check out <a href="http://code.activestate.com/recipes/251871/" rel="nofollow">The UNICODE Hammer</a> at the Python Cookbook.</p> http://stackoverflow.com/questions/175240/how-do-i-convert-a-files-format-from-unicode-to-ascii-using-python/176044#176044 0 Answer by Jerry Hill for How do I convert a file's format from Unicode to ASCII using Python? Jerry Hill 2008-10-06T20:24:46Z 2008-10-06T20:24:46Z <p>It's important to note that there is no 'Unicode' file format. Unicode can be encoded to bytes in several different ways. Most commonly UTF-8 or UTF-16. You'll need to know which one your 3rd-party tool is outputting. Once you know that, converting between different encodings is pretty easy:</p> <pre><code>in_file = open("myfile.txt", "rb") out_file = open("mynewfile.txt", "wb") in_byte_string = in_file.read() unicode_string = bytestring.decode('UTF-16') out_byte_string = unicode_string.encode('ASCII') out_file.write(out_byte_string) out_file.close() </code></pre> <p>As noted in the other replies, you're probably going to want to supply an error handler to the encode method. Using 'replace' as the error handler is simple, but will mangle your text if it contains characters that cannot be represented in ASCII.</p>