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.0.tar.gz (641.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.0-cp314-cp314t-win_amd64.whl (108.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

faust_cchardet-2.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (120.6 kB view details)

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

faust_cchardet-2.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (122.9 kB view details)

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

faust_cchardet-2.2.0-cp314-cp314t-macosx_11_0_arm64.whl (108.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

faust_cchardet-2.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (106.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

faust_cchardet-2.2.0-cp314-cp314-win_amd64.whl (104.4 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

faust_cchardet-2.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (118.6 kB view details)

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

faust_cchardet-2.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (120.2 kB view details)

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

faust_cchardet-2.2.0-cp314-cp314-macosx_11_0_arm64.whl (106.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

faust_cchardet-2.2.0-cp314-cp314-macosx_10_15_x86_64.whl (105.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

faust_cchardet-2.2.0-cp313-cp313-win_amd64.whl (103.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

faust_cchardet-2.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (118.5 kB view details)

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

faust_cchardet-2.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (119.9 kB view details)

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

faust_cchardet-2.2.0-cp313-cp313-macosx_11_0_arm64.whl (106.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

faust_cchardet-2.2.0-cp313-cp313-macosx_10_13_x86_64.whl (105.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

faust_cchardet-2.2.0-cp312-cp312-win_amd64.whl (104.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

faust_cchardet-2.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (119.0 kB view details)

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

faust_cchardet-2.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (120.5 kB view details)

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

faust_cchardet-2.2.0-cp312-cp312-macosx_11_0_arm64.whl (107.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

faust_cchardet-2.2.0-cp312-cp312-macosx_10_13_x86_64.whl (105.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

faust_cchardet-2.2.0-cp311-cp311-win_amd64.whl (103.7 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

faust_cchardet-2.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (118.2 kB view details)

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

faust_cchardet-2.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (119.9 kB view details)

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

faust_cchardet-2.2.0-cp311-cp311-macosx_11_0_arm64.whl (107.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

faust_cchardet-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl (105.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

faust_cchardet-2.2.0-cp310-cp310-win_amd64.whl (103.7 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

faust_cchardet-2.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (118.0 kB view details)

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

faust_cchardet-2.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (119.9 kB view details)

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

faust_cchardet-2.2.0-cp310-cp310-macosx_11_0_arm64.whl (107.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

faust_cchardet-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl (105.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: faust_cchardet-2.2.0.tar.gz
  • Upload date:
  • Size: 641.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.0.tar.gz
Algorithm Hash digest
SHA256 01537b49c6f76185dfd138cd06f30e2be29eb4bbfd8fc8a7c91fe2dc9ce16da9
MD5 1ba468d3cae1a470d5124497a52e05c3
BLAKE2b-256 acec086929d13a8f4fbb397d2532ef7c53ebbba199cb3279887bf8dfcbde21c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9a5fbc63a9fb12a4fb63b01570994003150e026d688bcfd32d3916914db1f1f5
MD5 1c264e08412ccca4efa5b6b8bfb2325e
BLAKE2b-256 5128f8adb0339bf6189e9b52fa578a2efa23fb75d1e213946500e8a67d5a1565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b22c2546c75eb0814014e355c2634688c0dcdc8d40133350bca5461e34bcf2bc
MD5 d2c1a6a7487a6fc60c548fe966282117
BLAKE2b-256 5a6d197c7b765996f0802056db7edeebbae232d087d2370aa288b1951a1fc455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59dc74a2d01024610bafe6dea1db87a6b4fb461d15a0cf3b686a61ed3e537d92
MD5 ed6de65e607d7481226e467837b9ebbb
BLAKE2b-256 d5e17d583ea64d4ab67b0a06ea785883c3e07f840d27d3fa644927a7c5ecb492

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d0c69429d575d010d47afd303d8de1c9307a0571cf123ccd3f897a1fae56fb4
MD5 56ee8a499f7f68b6eeebc2a5495da640
BLAKE2b-256 10ecbc88c9cb61506a6bbe5d3ea6acf10799b27f371e522f0bb5ccbd3c995738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70374cd00fab1037aa8b967441dc0e9d5f29274177772bdda777b7e3b56c4c2a
MD5 9ba571e4e90b23a2f3cae7fa6a6f2414
BLAKE2b-256 387e5824429165eab7253ad9a24251565f6a9cca4eb634ace4d478c9d2e2cab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba3037e42ab094448fc407185fc6d1cee6278b26db2172044041951554705482
MD5 e83ad89a1ce5f5e7270bc47b9b234b70
BLAKE2b-256 e7bec3f7961ffe7e046d5e25eec212a9dae3f074b9805b43a007ff3bdda79012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e2ae06d6dd1ba0904256585f18148762353bf4a593d5edd9373f2a6ae33dfb54
MD5 fa8f4686ef3920a0a36bd79048daa7d2
BLAKE2b-256 e912321f5dc1ef321ccfefbfc0b4460de577a6fc3bd24a55325c1f77bca17e72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9838a45c8b2f40c061e34186eaafc2384839ce4c129c5e560abf460d0b7a18b0
MD5 2de42d2c94f5509e73a71ddb1b0a7b7b
BLAKE2b-256 bdacd5eb09580dc2d740cc6e4756eb8df8bdc28e13b5e3f9655ec17c7b47e949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 feb3201e3f5819da3635dac1441504086e38c6b84c6a27d01d45fa509cf4b2a9
MD5 f726ffa8c0bdef76f70dca4d1ce510d8
BLAKE2b-256 899eacc1f5327134834280471e0aaf971a4d87de27509c7fc52469eabd0c55c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e4fa1009b5c70fc32c732a18bdc4b79bfee83994d85e4045608404cbe94e12c
MD5 2e1f1cbebd2b4e5edddbf14f5a2d7164
BLAKE2b-256 1757032d7dfb2eef1a04bc6266406a076cfe8d985e0c7c799e95b558e8db5bf9

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7ad24907cc111e9abc3d857c7d870b430ea151a28f0eafe50b06017edbacbdf6
MD5 601e1175ebd237679ad4936ec51ce3b7
BLAKE2b-256 306966335a73dfa81bf3f212556c413b4111b9d7dfc46ac3a90078975f5a7bb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93483825412df9d6804759c34bfbd770c5caf1d38b8be5bcddcef3030612e1f9
MD5 ab69e2f5cc33cb1dba5d8bd0043f425b
BLAKE2b-256 6899005b420f399014847761c746bc2b90b94d516cc5a0aa35bce2d74aa3662d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a6ecba7bcb496723343ce483a72b7463842681a696cdfbd7f11ed69f65438e8
MD5 56076e5fc54b2f66c329813265af9e44
BLAKE2b-256 7bf29866a25a170ac459ad90549b8c197fb33a5332e034a56fcdd6f03f7d6265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f51ab3da3864b523cb528a8fe62e347c538295fff398e3b160001de904badb7e
MD5 7f5245c764d6de829c9f50a74c880a37
BLAKE2b-256 01deb374271faad1537d473397fe391ceb1b4d3929389803b2e99a5f95c6d328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 86a0b7ce90a6f5674469e6bde3f4ed7de013250b7ed9e219db440248957f1ff7
MD5 8922d744efebcdbe4da3697824ecd61a
BLAKE2b-256 5e1bcdef07927a6f8cd3705f502d53ee35d06d3eb3bd2cf962bafd9d16d5f835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f318d915924b1d34c73b4e9d0aa3a4e75f57613790114f000df6ca1f448d721c
MD5 69caa8649fe4984c04af3d2c5c34cac0
BLAKE2b-256 a8abccd612e8c1b3f0df0bf43ca0718aad6d0b4394afd04bc379eb0b556b104b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f5a13dd5c220c4fc42c14f68625899bdac532836ae8d31bdd933f0bd1d278b0
MD5 2906db4eeffc65f805e34d42a027dbd9
BLAKE2b-256 2460ff6768b547af769f9bd6e5cc51abc5c89987e8eab16e29edfdfdccdd991f

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18764a708bf394d6ad9b37066a01b909f63fd91d51ff59029e995a6ba59e3a08
MD5 90920ed660ce16b4cc647aa1e460f36e
BLAKE2b-256 a20d686bc23f67006c70a7b4a838dbeb4cb7cab05e16c41074034dfc4050f430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 037ad4836166040d50748ee227d30c0e64372447ac92cf42c5899d4281cd2a02
MD5 5e66ccf87e81a0b66755f0390c3d2460
BLAKE2b-256 acf2f3dc03bc483e22e2e5cd90eb2cb9ce331a75fe7619c0270a844cb17dec8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d2e5e605c3fbe5825862dc67f7d0fcfb048b953e94eea8fd168af604ed35a91
MD5 a79f20a5b1142c0d3c3b0456b9db33c2
BLAKE2b-256 6345dbbb52e209e6ca112deb1c4cf549bba67b56727c26fbd575a11ce4ac5d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 46e108728875427e832f646ab7117dd86fcccac9abf2afef06b8531515bfeb14
MD5 149848f3a6daf533f7efed6579c1cb97
BLAKE2b-256 afdc0b8c542d906ab99973b2935c3af8951eb130447bb76ffd12f3252c35801f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 741a2af513e49e3c4c66218de59b1660f330f07b55e892888ba81bb7555efaf1
MD5 f21576619782dc52734628a0ac14c267
BLAKE2b-256 6708fee3608dda0223d691cd7a8e22168538eb2b6858b697c07ac30f293801c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41bf7653a2b6408520da5a4ada10d2e327c9348a924c8cf0ee4b0c01eea4505e
MD5 b8efc4fcc991e8efcbc8b6229a993b7e
BLAKE2b-256 7e4123935bd997ed800104d6ef8690d1c0115c8f17970c6f7ba8c780c53afff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc7c5d536aa23a213094a3c499f488dcdf49f6fefd514df962015c445b7feb5b
MD5 6653f06846cfb21bf1523885e0279db3
BLAKE2b-256 47aa7b81786411ac8a0fa37e96399785a38b86f47e562769c468a0a6326326d1

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1779077f6bd012fb64cba2ad7176b5a5ab5c9874d11993dc5e0f32c01e6862ab
MD5 60e7c9d7225c900b9b2ce57259a4320f
BLAKE2b-256 eb82480882db1a97110c81f3d1d7717f66988bc6d24c152f8dc136479636bcf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78f4e037c3e3c40e46a506dc6cdf42c0144a91fddc979dd0b9968078f50d4226
MD5 4057f75c7db5f903ee29cf9479c9f90f
BLAKE2b-256 48e5ed93747cf3c133e9ddc05543b077eb05798f9c75e7b3acde7813bb002e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7c48fe633ff83a5217081960a128ac90c9b37b9a25d15747a0d86f4620c59a1
MD5 239d7b1f5db02e137b8d47991bbc94b5
BLAKE2b-256 41c05ac1cf2d41cfa9dcb00db2a5f12cb770b256f0e9da8b214eb4254912a151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e7c95c03d0f613951467b1d1e11eb7dc6d0b69103ef16cea6a62f737a160b87c
MD5 5317972f3f6b7e85bf3bda7273d97cd8
BLAKE2b-256 f8420b766d19ae9039bd76072a2cd5f474e4ee43f6f8fe598d0439c875e46c03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40be7a305d858f6624efc876186318a3625ed20ece915bd3d5e32723bc7f3978
MD5 e85b9f35fea24e5a39d8d007b1a10042
BLAKE2b-256 0edfbb515631cc94850db29d5143e2bfb988fb6e539c2d9365d480fc66ae570d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2485e2abf55fa645edd7420f57568ffaa6694d937381ffa78d1a53eaf5f0590a
MD5 34dddf7f9c21592e7c48889d2588373b
BLAKE2b-256 c516f1b8e4b7d4e0735b9a77426c23608234632eacae22080fec53d47251d2ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d823e9a90b5867bbcadda77dfb62b0077738a5d4841299cc2ebd0644ffde88a
MD5 a75b2e5be90ac63bd5eee87982025951
BLAKE2b-256 96df81a4a9f50314a4028cf83b3c1063b50b10a1d0ad37d1704d3344489d0f6b

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cbe96e265e3e300bbbcb78c772dcd0cd3ee6a128b7ab1b595df5b3266b1cad84
MD5 b049e9879092b326bf421d699e35439a
BLAKE2b-256 4560b42a1ae355267df951f28c57430b52b0bb691fe20fef83cdd66093774559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5ec36c9967aa052c3e6bd31fd4392949a66406b7bb67d8ad0caaca3747f7317
MD5 690c47fb005e9760b1f1ba71063dd189
BLAKE2b-256 7c3693347d60004dc3080cd40e364ca225cda997e7490c9ecdfe45d7205f6f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a66b6e529ca805236fbbcdfc7e1cd06dcdb6dc67f619118983473115ecaff2f
MD5 a6313f36bf07d34a3613e702ce772085
BLAKE2b-256 3bb13f05f649d34813aeda118f70822611b05035e3f9f4eeae3a72ced0650407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c160a725c0d5795b8101bf878d11feb47db08ee04c2148a34b8e0a2d454ab2d
MD5 a67f3505f6151115632166a798f6f2f5
BLAKE2b-256 487a59ff795ddfc42fb67a4cc23d227b861a29c6ea51b0ad0e320a2e52c0e1e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 104edbca84e974e220f541f494379bf9ce613df65af44513ce5ec62edec8ee51
MD5 2599045f117be16466ed399d21e52a41
BLAKE2b-256 736d93e09b83f525c286355ffd36843105404672a5d71bc26cccb278fcf5b636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ef849314002d5124ad73a440f57fe31b9c0d275abf2dc0e0723e99b54541e03
MD5 f46753eedeb5a3b3ab1b85fb9131bc44
BLAKE2b-256 9d6b3befe4032c989f3f7452568b8bcdded4d751f2742bea4d73ef229c21109d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74ce04c317fa840234cfdcebf8a5b4bc206f9e7ccfd88c8ba8cedbbd73199997
MD5 b9a942f7d7466cf59f1f4bfa6a41a567
BLAKE2b-256 d85283c53c23cb01c0dfe92d25f64d2984b2e6eac6a87a020d06312c5d05dca5

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.2.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1150c5a75bf0174faf1453a11f7e88a0dc1b9b3c09330cc821ac96a557872cf8
MD5 aff28937af8b91afe2b85ab53f880654
BLAKE2b-256 98035668d5b61db93f40bb6a0e0d5ad9801f3c37b4f33dfedf908d7cc5bcd454

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1dc3b74002dafbcfce29eea3928f0382ccbf7d44c4d4c9d0936a21ba84c84e73
MD5 b760c9737526286eabae024ec7b5de4b
BLAKE2b-256 2ef13af1387cb32d9843612f16164dac2f7edec4c7d99c2f9aeb89b65450a2cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31ab63ec3602913202459abf10b75e7a04979721a8fd6eb8279a02cfe7779551
MD5 e5d3cfafe0f45e46b649c7f66b2224b3
BLAKE2b-256 df0d8cd388f89229921073880b0ab821a174d51e3c7dfb9dc69862bc064a6a4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e179a8dc4885d1785a660840780ad0f361d8c47b5d1e3bd4c7ea8d0f807836f0
MD5 3a85aebb092dade5131556015d731aa0
BLAKE2b-256 5b54a4ab11ec2b97c200dc930b64f5dd4650be45b643e2af2463e6f3cbaf667c

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