comparison env/lib/python3.7/site-packages/chardet-3.0.4.dist-info/DESCRIPTION.rst @ 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 Chardet: The Universal Character Encoding Detector
2 --------------------------------------------------
3
4 .. image:: https://img.shields.io/travis/chardet/chardet/stable.svg
5 :alt: Build status
6 :target: https://travis-ci.org/chardet/chardet
7
8 .. image:: https://img.shields.io/coveralls/chardet/chardet/stable.svg
9 :target: https://coveralls.io/r/chardet/chardet
10
11 .. image:: https://img.shields.io/pypi/v/chardet.svg
12 :target: https://warehouse.python.org/project/chardet/
13 :alt: Latest version on PyPI
14
15 .. image:: https://img.shields.io/pypi/l/chardet.svg
16 :alt: License
17
18
19 Detects
20 - ASCII, UTF-8, UTF-16 (2 variants), UTF-32 (4 variants)
21 - Big5, GB2312, EUC-TW, HZ-GB-2312, ISO-2022-CN (Traditional and Simplified Chinese)
22 - EUC-JP, SHIFT_JIS, CP932, ISO-2022-JP (Japanese)
23 - EUC-KR, ISO-2022-KR (Korean)
24 - KOI8-R, MacCyrillic, IBM855, IBM866, ISO-8859-5, windows-1251 (Cyrillic)
25 - ISO-8859-5, windows-1251 (Bulgarian)
26 - ISO-8859-1, windows-1252 (Western European languages)
27 - ISO-8859-7, windows-1253 (Greek)
28 - ISO-8859-8, windows-1255 (Visual and Logical Hebrew)
29 - TIS-620 (Thai)
30
31 .. note::
32 Our ISO-8859-2 and windows-1250 (Hungarian) probers have been temporarily
33 disabled until we can retrain the models.
34
35 Requires Python 2.6, 2.7, or 3.3+.
36
37 Installation
38 ------------
39
40 Install from `PyPI <https://pypi.python.org/pypi/chardet>`_::
41
42 pip install chardet
43
44 Documentation
45 -------------
46
47 For users, docs are now available at https://chardet.readthedocs.io/.
48
49 Command-line Tool
50 -----------------
51
52 chardet comes with a command-line script which reports on the encodings of one
53 or more files::
54
55 % chardetect somefile someotherfile
56 somefile: windows-1252 with confidence 0.5
57 someotherfile: ascii with confidence 1.0
58
59 About
60 -----
61
62 This is a continuation of Mark Pilgrim's excellent chardet. Previously, two
63 versions needed to be maintained: one that supported python 2.x and one that
64 supported python 3.x. We've recently merged with `Ian Cordasco <https://github.com/sigmavirus24>`_'s
65 `charade <https://github.com/sigmavirus24/charade>`_ fork, so now we have one
66 coherent version that works for Python 2.6+.
67
68 :maintainer: Dan Blanchard
69
70