unidecode icon indicating copy to clipboard operation
unidecode copied to clipboard

ASCII transliterations of Unicode text - GitHub mirror

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

This method behaves similar to `unidecode_expect_nonascii`, but it uses a preloaded translation dict, built from the `xNNN.py` files on `unidecode` folder. This dictionary is, then, fed to `str.translate`. It throws...

Hello @avian2. Would it be possible to add a feature that would take as input a set of one or more Unicode codepoints' and/or ranges to leave unchanged? This means...

I'd like to see unidecode turn ℉ into something else, although I'm not sure what the best option for replacing the degree symbol is. *degF* maybe? Just F?

```console $ git clone https://www.tablix.org/~avian/git/unidecode.git Cloning into 'unidecode'... fatal: unable to access 'https://www.tablix.org/~avian/git/unidecode.git/': Could not resolve host: www.tablix.org ```

https://devguide.python.org/versions https://github.com/actions/setup-python Test results: https://github.com/cclauss/unidecode/actions Similar to: * #85

```python >>> import unidecode >>> >>> unidecode.unidecode("Balabəyov") 'Balab@yov' >>> ``` Expected: `"Balabeyov"`, instead of `"Balab@yov"`

Hi, Planning to use the library licensed under GNU Library General Public License v2 we are not doing any modifications in the source code of the library GPL, or our...

My code is as follow: ``` from unidecode import unidecode s = "中文字café" output = unidecode(s) print(output) ``` It outputs `Zhong Wen Zi cafe`. Can the function only transliterate European...

First of all thank you for this project. I wonder is there specific reason why this ```py unidecode('Dr. Kargˋs') ``` converted to `Dr. Karg\s` and not to `Dr. Karg's`?

There is a problem with the case of accented char Á → a, it should be Á → A