PKG-INFO 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. Metadata-Version: 1.1
  2. Name: chardet
  3. Version: 3.0.4
  4. Summary: Universal encoding detector for Python 2 and 3
  5. Home-page: https://github.com/chardet/chardet
  6. Author: Daniel Blanchard
  7. Author-email: dan.blanchard@gmail.com
  8. License: LGPL
  9. Description: Chardet: The Universal Character Encoding Detector
  10. --------------------------------------------------
  11. .. image:: https://img.shields.io/travis/chardet/chardet/stable.svg
  12. :alt: Build status
  13. :target: https://travis-ci.org/chardet/chardet
  14. .. image:: https://img.shields.io/coveralls/chardet/chardet/stable.svg
  15. :target: https://coveralls.io/r/chardet/chardet
  16. .. image:: https://img.shields.io/pypi/v/chardet.svg
  17. :target: https://warehouse.python.org/project/chardet/
  18. :alt: Latest version on PyPI
  19. .. image:: https://img.shields.io/pypi/l/chardet.svg
  20. :alt: License
  21. Detects
  22. - ASCII, UTF-8, UTF-16 (2 variants), UTF-32 (4 variants)
  23. - Big5, GB2312, EUC-TW, HZ-GB-2312, ISO-2022-CN (Traditional and Simplified Chinese)
  24. - EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP (Japanese)
  25. - EUC-KR, ISO-2022-KR (Korean)
  26. - KOI8-R, MacCyrillic, IBM855, IBM866, ISO-8859-5, windows-1251 (Cyrillic)
  27. - ISO-8859-5, windows-1251 (Bulgarian)
  28. - ISO-8859-1, windows-1252 (Western European languages)
  29. - ISO-8859-7, windows-1253 (Greek)
  30. - ISO-8859-8, windows-1255 (Visual and Logical Hebrew)
  31. - TIS-620 (Thai)
  32. .. note::
  33. Our ISO-8859-2 and windows-1250 (Hungarian) probers have been temporarily
  34. disabled until we can retrain the models.
  35. Requires Python 2.6, 2.7, or 3.3+.
  36. Installation
  37. ------------
  38. Install from `PyPI <https://pypi.python.org/pypi/chardet>`_::
  39. pip install chardet
  40. Documentation
  41. -------------
  42. For users, docs are now available at https://chardet.readthedocs.io/.
  43. Command-line Tool
  44. -----------------
  45. chardet comes with a command-line script which reports on the encodings of one
  46. or more files::
  47. % chardetect somefile someotherfile
  48. somefile: windows-1252 with confidence 0.5
  49. someotherfile: ascii with confidence 1.0
  50. About
  51. -----
  52. This is a continuation of Mark Pilgrim's excellent chardet. Previously, two
  53. versions needed to be maintained: one that supported python 2.x and one that
  54. supported python 3.x. We've recently merged with `Ian Cordasco <https://github.com/sigmavirus24>`_'s
  55. `charade <https://github.com/sigmavirus24/charade>`_ fork, so now we have one
  56. coherent version that works for Python 2.6+.
  57. :maintainer: Dan Blanchard
  58. Keywords: encoding,i18n,xml
  59. Platform: UNKNOWN
  60. Classifier: Development Status :: 4 - Beta
  61. Classifier: Intended Audience :: Developers
  62. Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
  63. Classifier: Operating System :: OS Independent
  64. Classifier: Programming Language :: Python
  65. Classifier: Programming Language :: Python :: 2
  66. Classifier: Programming Language :: Python :: 2.6
  67. Classifier: Programming Language :: Python :: 2.7
  68. Classifier: Programming Language :: Python :: 3
  69. Classifier: Programming Language :: Python :: 3.3
  70. Classifier: Programming Language :: Python :: 3.4
  71. Classifier: Programming Language :: Python :: 3.5
  72. Classifier: Programming Language :: Python :: 3.6
  73. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  74. Classifier: Topic :: Text Processing :: Linguistic