# text-unidecode **Repository Path**: mirrors_benjaminp/text-unidecode ## Basic Information - **Project Name**: text-unidecode - **Description**: The most basic Text::Unidecode port (licensed under Artistic License) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Text-Unidecode ============== .. image:: https://travis-ci.org/kmike/text-unidecode.svg?branch=master :target: https://travis-ci.org/kmike/text-unidecode :alt: Build Status text-unidecode is the most basic port of the `Text::Unidecode `_ Perl library. There are other Python ports of Text::Unidecode (unidecode_ and isounidecode_). unidecode_ is GPL; isounidecode_ doesn't support Python 3 and uses too much memory. This port is licensed under `Artistic License`_ and supports Python 2.7 and 3.3+. If you're OK with GPL, use unidecode_ (it has better memory usage and better transliteration quality). .. _unidecode: http://pypi.python.org/pypi/Unidecode/ .. _isounidecode: http://pypi.python.org/pypi/isounidecode/ .. _Artistic License: http://opensource.org/licenses/Artistic-Perl-1.0 Installation ------------ :: pip install text-unidecode Usage ----- :: >>> from text_unidecode import unidecode >>> unidecode(u'какой-то текст') u'kakoi-to tekst'