Skip to main content

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

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-3.0.1.tar.gz (803.4 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-3.0.1-cp314-cp314t-win_amd64.whl (312.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

faust_cchardet-3.0.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-3.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

faust_cchardet-3.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (153.1 kB view details)

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

faust_cchardet-3.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (154.5 kB view details)

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

faust_cchardet-3.0.1-cp314-cp314t-macosx_11_0_arm64.whl (136.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

faust_cchardet-3.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (134.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

faust_cchardet-3.0.1-cp314-cp314-win_amd64.whl (309.0 kB view details)

Uploaded CPython 3.14Windows x86-64

faust_cchardet-3.0.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-3.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

faust_cchardet-3.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (150.6 kB view details)

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

faust_cchardet-3.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (151.4 kB view details)

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

faust_cchardet-3.0.1-cp314-cp314-macosx_11_0_arm64.whl (134.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

faust_cchardet-3.0.1-cp314-cp314-macosx_10_15_x86_64.whl (132.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

faust_cchardet-3.0.1-cp313-cp313-win_amd64.whl (301.5 kB view details)

Uploaded CPython 3.13Windows x86-64

faust_cchardet-3.0.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-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

faust_cchardet-3.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (150.3 kB view details)

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

faust_cchardet-3.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (150.9 kB view details)

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

faust_cchardet-3.0.1-cp313-cp313-macosx_11_0_arm64.whl (134.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

faust_cchardet-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl (132.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

faust_cchardet-3.0.1-cp312-cp312-win_amd64.whl (301.7 kB view details)

Uploaded CPython 3.12Windows x86-64

faust_cchardet-3.0.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-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

faust_cchardet-3.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (150.5 kB view details)

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

faust_cchardet-3.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (151.3 kB view details)

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

faust_cchardet-3.0.1-cp312-cp312-macosx_11_0_arm64.whl (134.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

faust_cchardet-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl (132.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

faust_cchardet-3.0.1-cp311-cp311-win_amd64.whl (301.6 kB view details)

Uploaded CPython 3.11Windows x86-64

faust_cchardet-3.0.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-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

faust_cchardet-3.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (149.8 kB view details)

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

faust_cchardet-3.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (150.9 kB view details)

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

faust_cchardet-3.0.1-cp311-cp311-macosx_11_0_arm64.whl (134.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

faust_cchardet-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl (131.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

faust_cchardet-3.0.1-cp310-cp310-win_amd64.whl (301.6 kB view details)

Uploaded CPython 3.10Windows x86-64

faust_cchardet-3.0.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-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

faust_cchardet-3.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (149.9 kB view details)

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

faust_cchardet-3.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (151.0 kB view details)

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

faust_cchardet-3.0.1-cp310-cp310-macosx_11_0_arm64.whl (134.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

faust_cchardet-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl (131.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for faust_cchardet-3.0.1.tar.gz
Algorithm Hash digest
SHA256 d8089d207ea954f8ea655d05a6abb9a20c1d700acc5cf3043bf83655ca686351
MD5 2f93fec30e0fc5461c2d4a4c784964e4
BLAKE2b-256 1f0c38355cdb4ef05142053fb91869dd6286d43c2a8c4f57278a4df57fc98c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1e8fb9ab695158df2f55fbd0bd221321ca64f3f2e9c4f49ebcb4e0625946bcc8
MD5 912e6866fc8a3b185d5fdf86cebbb513
BLAKE2b-256 3e5d3df7db213f79732442c901062062f82e365a931534f29ec4d79987932309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be489269b441cd8cbb2d74f59965050a3503086b55683c873a4b99504718927e
MD5 87e9f25dc74a21db7b6a2597d31a79a6
BLAKE2b-256 222395b482f51b7ddb2209159bebf6143f4297ccc951c0acbf4aaed9a50e9c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d4d483b78c86f3351f379a9ad3b02d546d21ff1e82fcdf778cd248261b17903
MD5 f54341f2e8e10c8de80972119438eab7
BLAKE2b-256 df1bf185a1a1e3e4b01a5777bf2f24ec2c571ae64e93ba2822f66fd73a588a55

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 becfdba847c7d9d9a28f4f9dde3996a7ea38b64e9a9c09a118500c60ea7fcdf6
MD5 82c22f1d1e9af0cdf45da8e95973bfad
BLAKE2b-256 6e639509150f00cdc04f15f9da13c902d83cb845a6718ea55f3e47908a7bba85

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 327d91891a5c8514bacc2e5cf5fc159640dd8a71a32f65afa62cda39770a4411
MD5 0c59ec1e23e25c21215ae138a0f5421e
BLAKE2b-256 b0b6f1b0cd5d1ae3f63a6c34ae3233934c1437b8ea82c70fbd593d9921ad6ae4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d35e162b9c3c4751c62a148cf79c16027bc685406d8a30b06a49a4632fc746ff
MD5 4f97f27ddad70fc057ba7cf72bd792f8
BLAKE2b-256 2dfedce59c24238aaa081150f8707def455e24f3c2135c6f9f309204094249b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cdb3135b43d2f6ff20e02098003256a84989733bad91289b4604089c89508a6b
MD5 ee40930831aea14d27d16172291c16d2
BLAKE2b-256 ef2452fb40c3982835f9b654a8fe12d62239ca6ce19d7434a7fa828618790205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 95554065aa44da72674f9da36ffe3622c672e27e7e9309d92619873701ed36fd
MD5 a98d80121da24e23bb0ed16219a4d61d
BLAKE2b-256 23baeb006b0b929edcba3460f3924db10dd5aa4cd978433ad7902f2cad01bd36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03939f9a8837bc663b4fd9c2e7bf74eff9c57835c849370369860f7812f8968e
MD5 e68fb50d2bc66a1ff1e62148c6c4c58c
BLAKE2b-256 b7af3bcd8dcbc8eed6b7bc5f47ac1b39c49604c4b8e359e334791a56f7a4aa30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cf5f73d3ff8e6514839c80b734fdb98ce16c33fe1c0e57106378c83360144e0
MD5 de11db354a1b5beb4719ad4ef8b54e19
BLAKE2b-256 84f84c120fcacf85a81c7deca0b6ca97f00086a15f5c075d79761a85266bdb38

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b091400df93d36ec1f3b1b03a57c0a08ed08702b85b777ea6c35626d4e583786
MD5 60434d56022b6c26445f50aa2682e063
BLAKE2b-256 dd07f4c66cd8374d8859b360b6d3b0323aacca2304348f25b75996fe9d8783ed

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba5f2e95e125a928f7b49d7aa962bd190352f46f0f396590295a28c334555dcf
MD5 d744bd556c2ef84899be5036611d85fa
BLAKE2b-256 2cd7cd5ac681a2d9439b9e752f5f7ab2925747645c65daa90eedca5ce94208a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8949b9c577022e847c8ff78bad51edd19de70276dd47d8dea6a7c654fd4a0e43
MD5 3c765c40befd17d9e41188577f9308c4
BLAKE2b-256 84267c245d3e70188da2b8ae5400b49ddadc4d66d3aaa0a227cf5b737ed4bf9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 527cd2c5c6b6b7683e693961073a6a24a9a4233f03889d6ce0e41493eba97377
MD5 368b315477f6d621a85ccb586bc53067
BLAKE2b-256 38db897a61d1b4d4e4e647954d124d84ac5c9739e0929a3ae9cd7d352e5fd49a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1d4655465bf1beaca8db7259cab1897ba0356f9a47b399107d655b501a6635ff
MD5 157aadeb16d3d086172b38990cd75890
BLAKE2b-256 338a66b198515e2ce4803da43a15d02a1ab58bac39d84c11f022db9aa26c56fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 121968101625d375d4089d09b9e147bd41cbd0e7935f48f5552351a3cde97e76
MD5 b3d47a62e3a55582984e201494bd3b51
BLAKE2b-256 701c839d03a472274c3b71adf306717e2527a302eded3816bc3c696efd42504a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84719a0bcb4aa4f9c4a376648f69c476b2ddce2f9e51ae2a51af950117d5c736
MD5 f5e105010e92468dcb915fc98bc67300
BLAKE2b-256 05acf7972d3ed08fa49492909967a70116d8e8382fcea577f1dbfce0d831f466

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a65fa6dcdedda1d9653cd36c55e33991599693e7c5ad92561982fc476a917f45
MD5 8d15f9a0d377fd21845f3074becd2c71
BLAKE2b-256 c2cd08429e665c7c765eefee995f1f56b2d99fe73807a0a9f4011025ece9563a

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91c331d776d77d0c169d55b0ae7f56437d552719947865fa0c876a336d62e7d3
MD5 5b196ee51c6db7fdce3e1b390b452385
BLAKE2b-256 ccc59b85617e85ae0509ce95ba0e485f73fb294cbfe8998e123578f32d0707bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9840a35cc977bf409425baac71176c0ee7d7ac195f824667e952adc042927972
MD5 e0109f0078bbe084aadedd9e50efbed2
BLAKE2b-256 b5f90823d5fee171d4172f7e51ff73669b73ca3cb9fa5d99c15b10686c3947f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 073d8590a52df0bfcdbdd6796b4569a726b57932b1df77b1c5bbc48a8021492b
MD5 72008b65c6ea6491c031de821ff5e79a
BLAKE2b-256 8626c52b2fea5b81dd16f9cd30ee473a06f2040c7fe338a6af0972b556bf3be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e006cc235650da53ac02504f3d9fc4f4b63790cd44cff527b453ea5fbca084dd
MD5 863614cfe5fafbd5c1a42c4b7a38d13e
BLAKE2b-256 ef104b5ab47b939b6497ef1b381927f2e8108dbd4bf254bb50eaecf3b7b9cd3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3554bf2fe9f1e97e9874303aa418009f4d5b9b6ef4403c157fc5815fa1ee0515
MD5 41254635120231530df8e26415bd6def
BLAKE2b-256 2c74047344138b792377e5a49a2c3952e768dee66335f3d3fe6d2bf8ccf06bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6053e549fe64e4ae8c4c8fa24e3d62f68eb13856a6130b20a89adeba9078aef8
MD5 0ae45345667eea06bd67940dd459ac2b
BLAKE2b-256 e711ca81ccae2582196a42b590382acf1b4e77816c9164890daac238ea8c7e71

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a63c1726209eac2d84a6ed269c15482030afaa85a7690ad939fa8448f0a0d933
MD5 89ed8ff26628747a50c9577b7791805e
BLAKE2b-256 bfcf31b0822322553d9193e9b44de0602dd81f500a2319b57b09c2c69a24f0f2

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e42725d7d324a40f496bc60ab0ea4a2f4e24b37b980cf8304ef13ea49108716f
MD5 6bce3e68bd60698b47f798ab063f58d5
BLAKE2b-256 9aaf3198e7911b7a204254d4411ffcefb12561f602d4a754171d9513f80aa616

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a9d381068f367d9f139e3d261b9cf5ee4d8bb0a0be079cc3c0956993f42300c
MD5 5c65aea52d826acbebe7d3fae28347d8
BLAKE2b-256 c38de5a434692a8491b38edaa8a216b87fb96b3cb1ba3d4d72680c25ebe171be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 317f3d8b377ebcee654a51654f562c04dd435c9422b3c81754ec62875fe2a2d9
MD5 d47598b84de76a57814ea639e023a999
BLAKE2b-256 04daae35ed6794b1b0bee350ef27839ce94c293dafadf15ba1d104444d31cbcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f6697fc6c98ed17fcf19bcac17e1639f39111c518eaa27c3eec18a492d7f0c21
MD5 fda6613a50f1f35b2487db55c57bfbae
BLAKE2b-256 e301f81c2dd5c25921c1bc64af3f548e698ea40f5cec28ef60891f90e24fc3b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5b060580e41473c9e403798b21b9ef0aed2ffaa227785ab5e483cf94f06eda2
MD5 40c0e550b8c5aae0387300ab1d848256
BLAKE2b-256 ad87473b7c103ee52b43d13fe7def3cd2a0a3ccea5059eee093ce1ff9bcbb7d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c7036cc596695235cfa09bc23ce2822e61d965408ad56df596783cb96e9a253
MD5 4ee6b73bd4772517e0195a337319c100
BLAKE2b-256 4a09bfc3961df9d3d40da6ba970f6c9f43c90c8b52733533c1c76ebffc61125d

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bcb385d883802396673470c2edc0029cc5b28e84eed00c44374832e0a35c41a1
MD5 428ab0349f4e787afdcc68fa18030acf
BLAKE2b-256 af3d00ef6eaa2d601ae57f60c89e810a2577a4bbb71de7cedbf14a3aad3f97ec

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9cc2025155a1f8c6939e1db0024281e70d9be43d24c3cae36c7d78b4f7df57df
MD5 13577f1f8ccf8649347a03f944033d36
BLAKE2b-256 a345c53ed780b1f30a944fb865f60d0b1fc515983353f8511dc14e5f611408eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1f3d683a2cb9b8349e6ad61113704b59b5f860923c54107b266942a945cdf0d
MD5 de1fe19acbbe41f7cde267dbd162b2b4
BLAKE2b-256 ea43e4bfc0356c8bbc66f8f3ab00f452b34f9da78439317180fb7b9c67430ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fdc9b0751148b55cc18bf37ffb066b143f39124e64a76deaeb780cda24e7c21
MD5 a0664e1d6b5e0943a033a5b7a04adcba
BLAKE2b-256 01a67b5a53ea5134442795a87e3116d6e5e69458919e95ec4175b5cb9b801e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ccb6c63ba6aa2cf43925eb2c2da112ae853c3cc39db62fb5a5ede6186e22ced2
MD5 010d9d30f1e532db327baa73ce7ee70c
BLAKE2b-256 958697ab8f5dd52799721daeef604590b7d9cf18704babdf26df557b95b35dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0665fdc0258c29aedd6531a322a47a647d08e935325b27192fd242a195b64ce
MD5 2e07db8c7846e81c913ee820a422dc6f
BLAKE2b-256 159cd9b24209b89bcc96bf486b32e527679e32d94c8d5ef0727fbefc430f2193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c84b800e78d6539e9704cacbdcdb5cda700f2da98e1d0e6f3b215884c473853f
MD5 3ca612e2e515bc6673a367a11d186308
BLAKE2b-256 ba3bb5107d5c9bacfcc068ee48ddbf0b78b93a86d48dae285e8dc457e33abfd5

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec527d22208f3a7743306b5cccdb0b9f1c1f718c5149d2f09edf6f12b9cf4e81
MD5 314247d378fef84cb0b4825107a892d6
BLAKE2b-256 ec3a617906c6ad2fe499c37338cf10a63edc33b4cd91da44bc942687465eea87

See more details on using hashes here.

File details

Details for the file faust_cchardet-3.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 efb3c151be545c29d4a111703365aad0e05013d7fd4ccf36f77ead80873958a4
MD5 52784ee113f7003a8fc7ec6d3ed2e3e0
BLAKE2b-256 fd14b48a60d2244b2820e14d5ac19f7b6a6cd93663ead9b1075603bf9188ce8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1a4753acb8948fb3b98e9a938de681147039423692b37d79d9029fe4643a27e
MD5 ad98e8ee8257eaf496f61e2113880843
BLAKE2b-256 c8185df6be859c59760f6c301c578238906bc696b95fe192c8d79f982534984a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8a7d0fde5e179d9c87bec3a2f8feb5b4657f1d76a80a0b1638f22d20c92f253
MD5 486d664da8002579008f3269d25a87d7
BLAKE2b-256 83463b7969888435200d2f8884390118a8a0a5ba2e1c0be4bd94e6a0a2cff231

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 Sentry Error logging StatusPage Status page