How to export data from unidecode
python module for use in another language?
This module converts unicode characters to latin (ascii) characters, roughly preserving phonetic meaning like this:
kožušček => kozuscek
北亰 -> Bei Jing
Москва -> Moskva
This is useful for example for creating URL-s for international web pages. There are ports for another languages, like UnidecodeSharp, but aren't very good quality.
Here is a Python program
unidecode_sqlite.py
to export unidecode data to SQLite database, which can be used in every major language:This can be used like this on any computer with python (2 or 3, I'm not sure about Windows) and creates 1,3MB file: