Metadata-Version: 1.1
Name: text-unidecode
Version: 1.0
Summary: The most basic Text::Unidecode port
Home-page: https://github.com/kmike/text-unidecode/
Author: Mikhail Korobov
Author-email: kmike84@gmail.com
License: Artistic License
Description-Content-Type: UNKNOWN
Description: Text-Unidecode
        ==============
        
        .. image:: https://img.shields.io/travis/kmike/text-unidecode/master.svg
           :target: https://travis-ci.org/kmike/text-unidecode
           :alt: Build Status
        
        text-unidecode is the most basic port of the
        `Text::Unidecode <http://search.cpan.org/~sburke/Text-Unidecode-0.04/lib/Text/Unidecode.pm>`_
        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 both
        Python 2.x and 3.x. 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'
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Artistic License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Linguistic
