Skip to main content

cChardet is high speed universal character encoding detector.

Project description

cChardet

PyPI version Run tests Build Wheels

cChardet is high speed universal character encoding detector. - binding to uchardet.

This fork (faust-cchardet) vs PyYoshi/cChardet

This is the faust-streaming maintained fork of upstream PyYoshi/cChardet. It exists mainly to keep the project building on current Python and Windows toolchains and to publish up-to-date prebuilt wheels across platforms. The public Python API is unchanged from upstream.

The distribution is renamed on PyPI; the import name is not:

pip install faust-cchardet
import cchardet   # same import name as upstream

Key differences

  • Prebuilt wheels built with cibuildwheel, so most users install without a C++ compiler:
    • Linux: x86_64, i686, aarch64 (CPython and PyPy)
    • macOS: x86_64, arm64
    • Windows: x86_64 / AMD64
  • Windows / MSVC support — pinned to an MSVC-compatible uchardet (bdb8a0…) so the C++ extension compiles under Microsoft Visual C++. Upstream's newer uchardet header does not build under MSVC.
  • Modern build — uses the meson-python build backend (distutils is removed in Python 3.12+); Meson builds the Cython output as C++ and links the matching C++ runtime automatically.
  • Versioning — the version lives in src/cchardet/version.py and is exposed as cchardet.__version__ (upstream uses setuptools_scm).
  • Python support — requires Python >= 3.10 (3.6–3.9 are dropped).

Detection differences (a consequence of the pinned uchardet)

  • A UTF-8 byte-order mark is reported as UTF-8-SIG (upstream reports UTF-8).
  • On 32-bit (i686) builds a few near-equivalent labels differ — e.g. Thai TIS-620 is detected as ISO-8859-11.

Supported Languages/Encodings

  • International (Unicode)
    • UTF-8
    • UTF-16BE / UTF-16LE
    • UTF-32BE / UTF-32LE / X-ISO-10646-UCS-4-34121 / X-ISO-10646-UCS-4-21431
  • Arabic
    • ISO-8859-6
    • WINDOWS-1256
  • Bulgarian
    • ISO-8859-5
    • WINDOWS-1251
  • Chinese
    • ISO-2022-CN
    • BIG5
    • EUC-TW
    • GB18030
    • HZ-GB-2312
  • Croatian:
    • ISO-8859-2
    • ISO-8859-13
    • ISO-8859-16
    • Windows-1250
    • IBM852
    • MAC-CENTRALEUROPE
  • Czech
    • Windows-1250
    • ISO-8859-2
    • IBM852
    • MAC-CENTRALEUROPE
  • Danish
    • ISO-8859-1
    • ISO-8859-15
    • WINDOWS-1252
  • English
    • ASCII
  • Esperanto
    • ISO-8859-3
  • Estonian
    • ISO-8859-4
    • ISO-8859-13
    • ISO-8859-13
    • Windows-1252
    • Windows-1257
  • Finnish
    • ISO-8859-1
    • ISO-8859-4
    • ISO-8859-9
    • ISO-8859-13
    • ISO-8859-15
    • WINDOWS-1252
  • French
    • ISO-8859-1
    • ISO-8859-15
    • WINDOWS-1252
  • German
    • ISO-8859-1
    • WINDOWS-1252
  • Greek
    • ISO-8859-7
    • WINDOWS-1253
  • Hebrew
    • ISO-8859-8
    • WINDOWS-1255
  • Hungarian:
    • ISO-8859-2
    • WINDOWS-1250
  • Irish Gaelic
    • ISO-8859-1
    • ISO-8859-9
    • ISO-8859-15
    • WINDOWS-1252
  • Italian
    • ISO-8859-1
    • ISO-8859-3
    • ISO-8859-9
    • ISO-8859-15
    • WINDOWS-1252
  • Japanese
    • ISO-2022-JP
    • SHIFT_JIS
    • EUC-JP
  • Korean
    • ISO-2022-KR
    • EUC-KR / UHC
  • Lithuanian
    • ISO-8859-4
    • ISO-8859-10
    • ISO-8859-13
  • Latvian
    • ISO-8859-4
    • ISO-8859-10
    • ISO-8859-13
  • Maltese
    • ISO-8859-3
  • Polish:
    • ISO-8859-2
    • ISO-8859-13
    • ISO-8859-16
    • Windows-1250
    • IBM852
    • MAC-CENTRALEUROPE
  • Portuguese
    • ISO-8859-1
    • ISO-8859-9
    • ISO-8859-15
    • WINDOWS-1252
  • Romanian:
    • ISO-8859-2
    • ISO-8859-16
    • Windows-1250
    • IBM852
  • Russian
    • ISO-8859-5
    • KOI8-R
    • WINDOWS-1251
    • MAC-CYRILLIC
    • IBM866
    • IBM855
  • Slovak
    • Windows-1250
    • ISO-8859-2
    • IBM852
    • MAC-CENTRALEUROPE
  • Slovene
    • ISO-8859-2
    • ISO-8859-16
    • Windows-1250
    • IBM852
    • MAC-CENTRALEUROPE

Example

One-shot detection

import cchardet as chardet

with open(r"src/tests/samples/wikipediaJa_One_Thousand_and_One_Nights_SJIS.txt", "rb") as f:
    msg = f.read()
    result = chardet.detect(msg)
    print(result)

Streaming detection

import cchardet

detector = cchardet.UniversalDetector()
with open("bigfile.txt", "rb") as f:
    for line in f:
        detector.feed(line)
        if detector.done:
            break
detector.close()
print(detector.result)

Command line

A cchardetect console script is installed with the package:

$ cchardetect src/tests/samples/wikipediaJa_One_Thousand_and_One_Nights_SJIS.txt
src/tests/samples/wikipediaJa_One_Thousand_and_One_Nights_SJIS.txt: SHIFT_JIS with confidence 0.99

$ cat somefile.txt | cchardetect        # also reads from stdin

Benchmark

$ pip install -e .
$ python src/tests/bench.py

Results

CPU: AMD Ryzen 9 7950X3D

RAM: DDR5-5600MT/s 96GB

Platform: Ubuntu 24.04 amd64

Python 3.12.3

Request (call/s)
chardet v5.2.0 1.1
cchardet v2.2.0a1 2263.6

LICENSE

See COPYING file.

Contact

Support Platforms

Prebuilt wheels are published for:

  • Windows x86_64 (AMD64)
  • Linux x86_64, i686, aarch64
  • macOS x86_64, arm64

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

faust_cchardet-2.2.1.tar.gz (642.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

faust_cchardet-2.2.1-cp314-cp314t-win_amd64.whl (108.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

faust_cchardet-2.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

faust_cchardet-2.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

faust_cchardet-2.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (121.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

faust_cchardet-2.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (123.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

faust_cchardet-2.2.1-cp314-cp314t-macosx_11_0_arm64.whl (109.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

faust_cchardet-2.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (107.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

faust_cchardet-2.2.1-cp314-cp314-win_amd64.whl (105.0 kB view details)

Uploaded CPython 3.14Windows x86-64

faust_cchardet-2.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

faust_cchardet-2.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

faust_cchardet-2.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (119.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

faust_cchardet-2.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (121.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

faust_cchardet-2.2.1-cp314-cp314-macosx_11_0_arm64.whl (107.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

faust_cchardet-2.2.1-cp314-cp314-macosx_10_15_x86_64.whl (106.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

faust_cchardet-2.2.1-cp313-cp313-win_amd64.whl (104.0 kB view details)

Uploaded CPython 3.13Windows x86-64

faust_cchardet-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

faust_cchardet-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

faust_cchardet-2.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (119.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

faust_cchardet-2.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (120.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

faust_cchardet-2.2.1-cp313-cp313-macosx_11_0_arm64.whl (107.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

faust_cchardet-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl (105.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

faust_cchardet-2.2.1-cp312-cp312-win_amd64.whl (104.8 kB view details)

Uploaded CPython 3.12Windows x86-64

faust_cchardet-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

faust_cchardet-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

faust_cchardet-2.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (119.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

faust_cchardet-2.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (121.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

faust_cchardet-2.2.1-cp312-cp312-macosx_11_0_arm64.whl (108.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

faust_cchardet-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl (106.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

faust_cchardet-2.2.1-cp311-cp311-win_amd64.whl (104.4 kB view details)

Uploaded CPython 3.11Windows x86-64

faust_cchardet-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

faust_cchardet-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

faust_cchardet-2.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (118.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

faust_cchardet-2.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (120.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

faust_cchardet-2.2.1-cp311-cp311-macosx_11_0_arm64.whl (107.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

faust_cchardet-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl (106.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

faust_cchardet-2.2.1-cp310-cp310-win_amd64.whl (104.4 kB view details)

Uploaded CPython 3.10Windows x86-64

faust_cchardet-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

faust_cchardet-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

faust_cchardet-2.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (118.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

faust_cchardet-2.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (120.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

faust_cchardet-2.2.1-cp310-cp310-macosx_11_0_arm64.whl (108.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

faust_cchardet-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl (106.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file faust_cchardet-2.2.1.tar.gz.

File metadata

  • Download URL: faust_cchardet-2.2.1.tar.gz
  • Upload date:
  • Size: 642.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for faust_cchardet-2.2.1.tar.gz
Algorithm Hash digest
SHA256 324f886eeeb4b8dff4639f4f5e60a82481227c344ee0bfb490de017fbfe5f1b0
MD5 351b92473b1628e520d01afd4bb5cd7a
BLAKE2b-256 5c9811698786c27f04d1c4195bec174a4a77ccb32c65fbc84a19a4b7cebe9ee1

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 938e01d7af6e995760b71e5d0cd3ff2b957c5bb5823a158a95727c9265b53766
MD5 ac0a89fa5a45b17b7c85911d25d1213c
BLAKE2b-256 834143a189cce10b585f8dbdeadb1abfccc4c426df3b25e990b4bbfe77c35e0c

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77e5e5b19d85388ab40d0d3208ad31d6113407f3bd1f9095ac02e9ee47604c0f
MD5 7d7e881e6ffbe440524c036e76239d17
BLAKE2b-256 c976e7cf3837873f0223bea608b5bfde5ef6e969e5b2782dfbe09a435037cab6

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 657ed90b8a149dc8e0277c7d03030e7d3d52feb42027ceb4fd9a1f49d847575f
MD5 c46beb0c126ddee1b7f85d65877d44ec
BLAKE2b-256 101726640879dd4bca3c307eb2425921f6aa323a7c9b891e3a1deb37569b3e29

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f6e12a293d146c515c5e1328d52b2e804dcb82735ced51143f34aa2e40af47f
MD5 4ae0546e148363b0326328d50e9321d6
BLAKE2b-256 03e5b69ade923328b588038fca0ee14dadd5f922580b50312c77c57084a030d9

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66a594f1932d9018f5a5417db7b9a2df4a881af57eaaadb3c3a135c883ebab03
MD5 eda5cfdea3f2b795696a67b2404df1ce
BLAKE2b-256 550c75c2f482b37f8abbecada308712f2a98924e5e58cdde227cb8ca77514f75

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e77d3b50f6b3ab14af760fd34eae5d210ddac39bced9bbc3a13ee2a74bfb40d9
MD5 3e49d21b89c31d2c6d0416b47ed90632
BLAKE2b-256 990b2c60d38bddf87e465ba26937f389e9da67653fc78ad646b5167e6d8f7574

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fd95b366f03df7e59dfeaa32817f41f01df3ec0102db600639181d9823987408
MD5 72b3a2a8569b3645afbb07c6abc3d716
BLAKE2b-256 1043cb2813e5e5b3aa6d0b5b844309f60be7df14640cd23ea37609d8ae34b89a

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e162bc74028d890b9d1144d646e9127dc510efbc6f7daf83a706af4ed99f1801
MD5 4b46be8da41dd6975b26c62ba7cce570
BLAKE2b-256 e6a16c7879439ad0186e889b4c66810ea8a6645a452846ea1f734dc1db4fa7b0

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f1d488164c3d41d067e40d80f632e8bfb91121480cd8d435b00abbc2979b78d
MD5 1914bfb56056167c703df46067c15a6d
BLAKE2b-256 ca73b719654992332d01966838fb9b7bcc850ebbe8dc3d73d9e3dc7c82ce87fc

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 785a65b80983ca8039a46732479f55da958bcc88d7e124ee9faa8538dc35f5ad
MD5 8c982da27b7938d616f4418874e00666
BLAKE2b-256 7f324729f100a98386a6ae3894fcdb9011d0818a11f8fbb24c99dfd3b92856ee

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4109c15ea5770182746c37f85c36c433937eb81b4dc5d1c2f5bc189f70be8bf5
MD5 be6ff697f3ae27936e6924714420ed2c
BLAKE2b-256 f0dde5eff5c4315aa1caebfd09bed64e6a02100f952d1fb39382deb61c300a37

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b4a76f617d07fa2dffdfc09783e9eeb31ab730e159e43b4a4e58ebb903c9eab5
MD5 29c33d56143b208251f77776902516b6
BLAKE2b-256 4136d146faceeb769c9aedc8a17e422b590d52bfcfb849a51b4e99690e1658bb

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf52bac07ffb3d977aec94e6c6d5bf23d33032d0411094811f9e0144baac085b
MD5 229fc6488c199132c7f0758d8b494f3e
BLAKE2b-256 316b82dfc2cdda3f247d44c101d34d82d00f5fda15b25acbb8ba1cd1f4ce1a3e

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 61bf69fcc11c431e3a00b02ae835490ccac21b27f585617113d1d38769bac11b
MD5 a2755bffac26a6e981c5eba11575ae31
BLAKE2b-256 b084404a4b53dd7c64dbdd76b9b715ea83d334553cf1ff2143b2b9a1fca0b08a

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 97824ebe0f153a0265d27bc69d03afe0cea5f5a8c2fb4e472d69f80694ff6b38
MD5 874706375b4b882fe9249c69768b0ad8
BLAKE2b-256 bb24c5dda339201ef3a8497ae80070d479a9de1c66a4d37ca23c80cb5565e1a4

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd537680647c4e53e8c690d153c5042628fc1600a0e548e07b78e3114460ce73
MD5 0c83afe8008bf0085396dcbb8e3d8a16
BLAKE2b-256 84f8722abc53bb7702417026cec44ba07b2df1b87acc0d62f50c1d665ba3cad9

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9600ed1f9ed5128c6aa5be8dc1e1f015918b694e806680a753f628f23c0b1b6
MD5 225b8d3dff8f11e2c7fc17a052a46b5f
BLAKE2b-256 525deb97ba930e5b381fba02468777fa4188f213515282c2098656d33f2e8ae2

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2163365292ddf700c99bca877841d8fb1869dec00a730bb5941d18c6bf3712c7
MD5 dbf229a3960cdaacd0fe0624a369fbb9
BLAKE2b-256 1be7df17085683a058fb98d37c06719235a1af3e56788683848e4935b3aa43de

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2858314bdad4135f361a104daf784ec1d1b0a8a5a92c2fef52ecd2dc5b2486f2
MD5 c310880278ee82d41f603dc46254958f
BLAKE2b-256 662a7ed56354513121276979b8bc0d8652a397697239628af0b5783b5a6de8c4

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 049896bf47903615122020272c9b15e26f4c27f62ee13a679ca351f7fa45f461
MD5 a9a08c2528c3bfd226157c6bcc7b3224
BLAKE2b-256 e38b3584a1b6f9e3a371e1cae523101b17e8147baaadafe11ae2fccc4bb3d4c1

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 52019e61b5adee4385e0d575b4a4f95f98c6ba00274d09180107c32e3c637a65
MD5 0a16f92a971cac182be26e570e093e09
BLAKE2b-256 028203bd3da796d73a515cf2954a94be074d3973bf948aa1d4c1d65f4775388a

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 da28f6d39d3c0aa64502946ca54df331eae7f963e66fb402f41c82f5a9196ba4
MD5 f0e1e61268d87bc50db3fcfac0b7b2b9
BLAKE2b-256 ece4fad6351ac72055dd29c87598589b76a7f37a631a61ff8c5101b886c117b6

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 613fb0be19fad71feb6d0f04399d7f20528177055703258abe836c420d6c9446
MD5 389110f4a156774ac772755f546e94f3
BLAKE2b-256 c3f83d5fc6c1f2df2d9aa24a9cfad93e56a9ec2d140999b90bc092ccd5d14713

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 583f3902d61a268e50384fe2a9647a8f8cc33a39fed5d450494733efdf8c4118
MD5 131a6732f4c0eee61d32e34692ac90b5
BLAKE2b-256 b49044aadb7146b5c260ca50df3f94566b888887d11c52bdf79efe7faa92c5db

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d3bac2056fad2b7dfc24f6d159c8cc54a477ceda9a79d2370cf30dd7a275477
MD5 e903f92d3a1b757b5a480340e87e10d9
BLAKE2b-256 61e69cb96672b084170294d4542442bbf83f986ddce09b9f7e5e76ab8b60e65f

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b1f1039736ce14387daf343c9d9cff89727c2440156d1f6525e0d71c86d86b0
MD5 eb29b15e58ccacbb85fc10c3a1cf482e
BLAKE2b-256 8e03d4ff72b9caaa2e32f03aa164fc526130144600b5402edd4b76c365ba9ce7

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c7a8c1924cef38d29260c7162f7909a3101a6fa8e7bc2d1f8a52fa320ae432d
MD5 2efdf7fdd1f57510bc1600b7a2f3ad53
BLAKE2b-256 9f5a9d17b866ea1a72f4bc282958e179532f1dcbb0e9bf23d8d6d2151c1c616c

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cc594a82d180fc9c3534b8c776c628fe722b43cc2caa238fe833482c7021c95d
MD5 8c29e127d04804db72821a7c56667e5a
BLAKE2b-256 fceb89cf200d90fc61f2522037901dffbf827949a6b737dfe30b05f910727aea

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ea55d0a5c2775b12d44181ca743b45268a6d94bce7fc67710871c6f177ced27
MD5 9f40d8d3d6dd0a670d5d91c85a1e8875
BLAKE2b-256 b6ad469549eadfe71e06c2a02951943892ad4e33240559418036018f93fcb5c8

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e83c881c9d15b34daa421f2e8fa0a148a2676c7d2aac0a09b801e215e9906a0
MD5 741cafcb22f6272f72eb88b277bea406
BLAKE2b-256 11fe695822a91e5aaf0059e525b3671cbc847b1481ed3e64ed6965602f4e39ed

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8496ba76d43cee4b07a0bd2e5d0bf48aee50277cd50a0d2888ff9071346ecfb6
MD5 666955d2c5a826c6acfc871cbffd47b9
BLAKE2b-256 f05052b9c85ec756feb48b766122171f3056d75eccefecc14ec0e0d6044a35d2

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f5c022650401e9d1bebe6f4c0db5a6cc2897091c1b4a7a67a65e0acf12cba97
MD5 ba85443a824f8e7185416c3ce15ed685
BLAKE2b-256 55689529e4d20c7a5ad079c8cc2d3a0893650afadccc47117cc9c33084509170

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48816d56c06a9ca0830bbeaec89e4201030d927d2680d1547bd523bdaacc8911
MD5 c40b8451657d2e1246b458c9a8fe4146
BLAKE2b-256 4804ad41f16a03a6e085b309994ab3968805cb21b2db137511a55b251bb3f3e4

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0f78ef7c1682853f585a4310fca0afbff3924a132d56e651c0f4535cc4139b7
MD5 77d244066d3bf3a9f2739d66f2844a73
BLAKE2b-256 c93e5d4820f0ccdc7daec5bce897eba344d912a2f526f84c807ef85b3d264b17

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f461daf8467f606724f6f011c509ebd7c164ac97a52c21348e777aff8a08d6b8
MD5 7eaf75b98e67ba04b7aa7850f4aa01e0
BLAKE2b-256 2aa4ed1c809bdeb1ec7423a522e0fd008f7c90feef103330c7939f08451691e4

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44608510b972d46f4edd8ac9e62feb8fa9b73c8853a2ea2a8f89dd4bbb88f26d
MD5 0846e60d93090ce1225876df97bb503e
BLAKE2b-256 55802d246494aef56ea9d9a990fed8b12ed197255feda66400b6e57829a993cd

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcf649eab0f9e11fef5ea7e9b5415ac154b661e755d17f09c04be092f402f6a7
MD5 cb94cc705d24fdca79ec6589eed40c9e
BLAKE2b-256 b2aa97f9c3009074b6518788dc3a79f59ab908d9ec20c4fe449f7d82e081f286

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b801642f46f1ab1e26ef027ab0e459d3dbe0ddea34981732fa8a7fe65935a47c
MD5 9ef2cc55bc66393670f48148a77bdf2e
BLAKE2b-256 ddcb27f9b861ba38f7eae35695f85c081e7bf35dc4491b35a33a4188e76a4c1b

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5156e773a39163e472fee8267c21ca0860353f0215033082bb54832e0f6dde3a
MD5 79af252bc2397b22fe2c6fd9d412ebf3
BLAKE2b-256 7a25cca78f1a96dc345e4eee843ba224d6a365571a9b3d736dd40b830f2c730b

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2155fdd1af8c67115934dbca68d6ceefbc8dc6248d03c57faca782ff7e5eda2
MD5 17c09924ae6ea9ae9cf86738cd795636
BLAKE2b-256 c8c57abe7fb2a6813f495ba89a326ec90d716befed31a08c940848fcca25c8e2

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72449b75d42a089d86abba4ed664c96aed9dea5e6aa304781c37498ba10b17e9
MD5 51f34863f4967c81b88531c1d0aca406
BLAKE2b-256 3cfd6ff50a6de811af236446c0e6d46d1bb43be06fabaff9ed699778227834b8

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab5675c4564fcb1d03253579691a2766a8c352c9e0767a8c694cb9a0c3c205b4
MD5 037b22c8169bbcdc2c4fff32a8637a6d
BLAKE2b-256 d2e7ef33967fd061637a830b4f8b22340d22f23e660a6bde6dcc2bcf05369eb8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page