comparison env/lib/python3.7/site-packages/chardet-3.0.4.dist-info/METADATA @ 5:9b1c78e6ba9c draft default tip

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