comparison env/lib/python3.9/site-packages/chardet-4.0.0.dist-info/METADATA @ 0:4f3585e2f14b draft default tip

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