I have some text that uses Unicode punctuation, like left double quote, right single quote for apostrophe, and so on, and I need it in ASCII. Does Python have a database of these characters with obvious ASCII substitutes so I can do better than turning them all into "?" ?
|
|
Unidecode looks like a complete solution. It converts fancy quotes to ascii quotes, accented latin characters to unaccented and even attempts transliteration to deal with characters that don't have ASCII equivalents. That way your users don't have to see a bunch of ? when you had to pass their text through a legacy 7-bit ascii system.
http://www.tablix.org/~avian/blog/archives/2009/01/unicode%5Ftransliteration%5Fin%5Fpython/ |
||||
|
|
|
In my original answer, I also suggested In any event, you can use
You can add more punctuation mappings if needed, but I don't think you necessarily need to worry about handling every single Unicode punctuation character. If you do need to handle accents and other diacritical marks, you can still use |
||||
|
|
|
Interesting question. Google helped me find this page which descibes using the unicodedata module as the following:
|
|||
|
|
|
There's additional discussion about this at http://code.activestate.com/recipes/251871/ which has the NFKD solution and some ways of doing a conversion table, for things like ± => +/- and other non-letter characters. |
|||
|
|