METADATA 2.2 KB

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