1Metadata-Version: 1.1
2Name: text-unidecode
3Version: 1.3
4Summary: The most basic Text::Unidecode port
5Home-page: https://github.com/kmike/text-unidecode/
6Author: Mikhail Korobov
7Author-email: kmike84@gmail.com
8License: Artistic License
9Description: Text-Unidecode
10        ==============
11
12        .. image:: https://travis-ci.org/kmike/text-unidecode.svg?branch=master
13            :target: https://travis-ci.org/kmike/text-unidecode
14            :alt: Build Status
15
16        text-unidecode is the most basic port of the
17        `Text::Unidecode <http://search.cpan.org/~sburke/Text-Unidecode-0.04/lib/Text/Unidecode.pm>`_
18        Perl library.
19
20        There are other Python ports of Text::Unidecode (unidecode_
21        and isounidecode_). unidecode_ is GPL; isounidecode_ uses too much memory,
22        and it didn't support Python 3 when this package was created.
23
24        You can redistribute it and/or modify this port under the terms of either:
25
26        * `Artistic License`_, or
27        * GPL or GPLv2+
28
29        If you're OK with GPL-only, use unidecode_ (it has better memory usage and
30        better transliteration quality).
31
32        ``text-unidecode`` supports Python 2.7 and 3.4+.
33
34        .. _unidecode: https://pypi.python.org/pypi/Unidecode/
35        .. _isounidecode: https://pypi.python.org/pypi/isounidecode/
36        .. _Artistic License: https://opensource.org/licenses/Artistic-Perl-1.0
37
38        Installation
39        ------------
40
41        ::
42
43            pip install text-unidecode
44
45        Usage
46        -----
47
48        ::
49
50            >>> from text_unidecode import unidecode
51            >>> unidecode(u'какой-то текст')
52            'kakoi-to tekst'
53
54Platform: UNKNOWN
55Classifier: Development Status :: 5 - Production/Stable
56Classifier: Intended Audience :: Developers
57Classifier: License :: OSI Approved :: Artistic License
58Classifier: License :: OSI Approved :: GNU General Public License (GPL)
59Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
60Classifier: Programming Language :: Python
61Classifier: Programming Language :: Python :: 2
62Classifier: Programming Language :: Python :: 2.7
63Classifier: Programming Language :: Python :: 3
64Classifier: Programming Language :: Python :: 3.4
65Classifier: Programming Language :: Python :: 3.5
66Classifier: Programming Language :: Python :: 3.6
67Classifier: Programming Language :: Python :: 3.7
68Classifier: Programming Language :: Python :: Implementation :: CPython
69Classifier: Programming Language :: Python :: Implementation :: PyPy
70Classifier: Topic :: Software Development :: Libraries :: Python Modules
71Classifier: Topic :: Text Processing :: Linguistic
72