METADATA 2.4 KB

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