unidecode icon indicating copy to clipboard operation
unidecode copied to clipboard

Unicode transliteration in Python (clone of Tomaž Šolc repository at zemanta.com)

Results 7 unidecode issues
Sort by recently updated
recently updated
newest added

``` python >>> unidecode("ى") '~' ``` I'd expect anything, even simply removing it, just not tilde. I think "a" would be a good option, though I'm not an expert in...

Punchline: `from builtins import str; str(unidecode(str('2b or not 2b')))` "b'2b or not 2b'" ``` python >>> from unidecode import unidecode >>> str(unidecode(str('2b or not 2b'))) # no problem '2b or...

Trying to make the transliteration process faster without C compliation I've come up with something good enough. Following the section caching, I've set up another dict cache to cache char...

@iki I would be happy to work on this and submit a PR.

Why chinese character always coded as Pinyin? Pinyin only used in Mandarin (PuTongHua), Chinese people in Kwangtung, HongKong and Macao using Cantonese, not Mandarin!

`distutils` is outdated and there's no reason to use it over `setuptools`, so to keep this package up to date I suggest replacing `distutils` with `setuptools` :) distutils can't build...

setuptools is new and cool, distutils is old and broken