Skip to main content

cChardet is high speed universal character encoding detector.

Reason this release was yanked:

Very slooow

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

faust_cchardet-3.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (155.3 kB view details)

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

faust_cchardet-3.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (156.3 kB view details)

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

faust_cchardet-3.0.0-cp314-cp314t-macosx_11_0_arm64.whl (139.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

faust_cchardet-3.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (143.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

faust_cchardet-3.0.0-cp314-cp314-win_amd64.whl (322.6 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

faust_cchardet-3.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (152.9 kB view details)

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

faust_cchardet-3.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (153.3 kB view details)

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

faust_cchardet-3.0.0-cp314-cp314-macosx_11_0_arm64.whl (137.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

faust_cchardet-3.0.0-cp314-cp314-macosx_10_15_x86_64.whl (141.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

faust_cchardet-3.0.0-cp313-cp313-win_amd64.whl (315.8 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

faust_cchardet-3.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (152.6 kB view details)

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

faust_cchardet-3.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (153.1 kB view details)

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

faust_cchardet-3.0.0-cp313-cp313-macosx_11_0_arm64.whl (137.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

faust_cchardet-3.0.0-cp313-cp313-macosx_10_13_x86_64.whl (141.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

faust_cchardet-3.0.0-cp312-cp312-win_amd64.whl (316.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

faust_cchardet-3.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (153.2 kB view details)

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

faust_cchardet-3.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (153.5 kB view details)

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

faust_cchardet-3.0.0-cp312-cp312-macosx_11_0_arm64.whl (138.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

faust_cchardet-3.0.0-cp312-cp312-macosx_10_13_x86_64.whl (141.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

faust_cchardet-3.0.0-cp311-cp311-win_amd64.whl (316.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

faust_cchardet-3.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (152.3 kB view details)

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

faust_cchardet-3.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (153.0 kB view details)

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

faust_cchardet-3.0.0-cp311-cp311-macosx_11_0_arm64.whl (138.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

faust_cchardet-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl (141.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

faust_cchardet-3.0.0-cp310-cp310-win_amd64.whl (316.1 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

faust_cchardet-3.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (152.1 kB view details)

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

faust_cchardet-3.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (152.9 kB view details)

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

faust_cchardet-3.0.0-cp310-cp310-macosx_11_0_arm64.whl (138.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

faust_cchardet-3.0.0-cp310-cp310-macosx_10_9_x86_64.whl (141.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for faust_cchardet-3.0.0.tar.gz
Algorithm Hash digest
SHA256 f15061d949bfeea8430106ea23888364cc3087353007d3a656c50d9fe44d941e
MD5 2158f704408d6890ff270d44fb86bd84
BLAKE2b-256 24f9053e66f19a79a3f461f3b52ae6b7bd6dac32ad6f08d7995aecf73097b5fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 76296915853c9e041dedbd66f0414d0ef435188eaaa06fca10fa8d33273265ec
MD5 855a64ef9c9491c162665d476b020b88
BLAKE2b-256 d09d9e348e74f16fdf9d3a71db7b671211d616f56de0b6a9cd1b1e79e23fe136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f98a1ec521d9d278b6ab246e85d4b11a43a1b679c66866de55372db057adcc74
MD5 96fe4cccadb9f07e2dbf9f48af99d769
BLAKE2b-256 35c27cbff93bfd00f8528307992c784b6b04959fb1a7324aafc95962f5d91fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88241449b167a56f088e100b64b5a11b0831cb6be11a902f2a4afd04218eb6ba
MD5 b5bb00ab5d68d55dfc89eda541c3b78f
BLAKE2b-256 0c83dfffc383ddc9d2cf23cd2f1dec7429192dad7e4bf3a1427511690c5046be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5549f5bdd3634b4ac8527859861be901139280c0cb9c53735e6e550086751115
MD5 0a28f6e27b425f1b7295f3dd87f6dd87
BLAKE2b-256 f940f4da5bcd665f0510627a79a503eb3e0aa1a3159489314c715237e9ac829c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08210c53fdb3d52eae5db34283494d57d242ceefecfe2747bcf5344b3ea7eb1c
MD5 5863f81daae53ebd2ca8612c7c7231d3
BLAKE2b-256 98257717ba4f10eaa321548b39b96b625909113db4b092f10c33c75301ab3d0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 331f2329a0965820bbbad2a1496a493ba631e9110ddb3116728004504674d3c4
MD5 140c9083771a5097f1c4b198c4374916
BLAKE2b-256 c0c87d745307208aa2f677d6a26b7caa48b943720b8359bb45673b91126a9c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7c6b2d1479beecf0ce050338dff72b099bfb8d492c0dbc7db2b404fc12ea839b
MD5 57cf36a18e86caa3fa830871afc26ab0
BLAKE2b-256 ca2d0b774b32284e988bf70b1ccdd732c1823a1a18a0d4155a2d24eb68c3cca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e740d59a393eaf12c4cac51b7e9e6a847cc18e5471c5f8275cbd18826675666d
MD5 df1b64b1e85d7aa8ec71408901d962ff
BLAKE2b-256 c0354dc9d7e22101defbaa2443ddf362ce38d48f1a430f5c6faaf17f99f41a4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 172fe6705bcc164224d83801594d0d3ddc031912a86c2945b1c6e90d51ea91c2
MD5 0bbd24e7879445297c706d26462e9c88
BLAKE2b-256 08ecdd812920c97efade2e59acdb374a1fc128939389f3817a16e41f4ef9009e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13c29fc1e9236715d52b096140dd0b26d99e989da132ce91f0441ac5e0853999
MD5 294badda698a428995ce56aee1bae4b4
BLAKE2b-256 754faf8ecbc57c4a9128848105c4ecb7ba17952b2328c5d916a563e743151d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3191bb7f1ea97c597d5171627f490979fbfcc7bd0d321b675895887e9a706cdb
MD5 4acb9996a68d5af21a865f25b6108576
BLAKE2b-256 f9561c0ea8ea9e483f0a30f2c319a8acef39ec63eac588d52703215b88337d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1f6678b0aedbdc38aba75a0c40941e0cda21cfd2c4ade484743cc77cabbe3a9
MD5 4b8f7b9ad6556feb2eff107087597598
BLAKE2b-256 c2982edacb0e0b88e0c816d05d5c5feb90aa20deb86faf6e52b180769744c63b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1b58787f79827010e2031fc3a84352a05844752bfe86a00e644beacf0e3db69
MD5 65e5b8249de7ff3edf4765e388e9bc17
BLAKE2b-256 ea8a37155927d92554117e18ff5af6d3a85574ca2fa3993c5793e9509875fca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 819c7a5220563a83b5d3ee2306740aa72af71f99b63b312a2fae3823fd4ee55b
MD5 cfdae953f2080e2057e6a079263d11e0
BLAKE2b-256 51f469ff622d75af0bd86ec208f2e9b7dcf7f46ad15ad11bd752a9f0816df251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 90d572649dda17e36310657e372301201b021032c10cc6a05f66222a51cfe9b1
MD5 b0a84eed8efe0a03d41d438942b3fff9
BLAKE2b-256 8baa623d6c694bdec63d1c78e679e5e5d56776327e91a61efd77a53639b254a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8e4c37909356ed75ad8a7a45fb4f826a31852fa77e94160ff2f944d3ce10a60
MD5 98a06507fc213c230132c4d92e50d2ab
BLAKE2b-256 96b060bcd8cc4dd135c5c7994e950959ae0b15fdb418e62355ab12204b064464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d684ca1a9638a861a08add125f43546c87fd01b3d90b1cae1c12a5ef1fcf66bd
MD5 60670b946e68aa9de22ea8ae4a76b577
BLAKE2b-256 8b780ed0e97df188bffa5d7a4f354d0ae08ffe18a642239db0b0f6210590191c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d70e8ff45d1b33b218c51a945a1fc0117af6dbf020e87d4de963c5b72ff5a944
MD5 2fd6ca4e92c96f736fbc1f9ad41fa4ce
BLAKE2b-256 def714ddd81e60cd30506cb2c48a3dbe361295bc37add30db39732765d224873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bff788ca6f4da7bf64378f80167f9df1e8714af7668605ded43b3924a5488a24
MD5 01a469c65358d91e51974e5faf42b1a5
BLAKE2b-256 2b7d0382df1d42fc4ded7502a75c63627a0dab461de22fd33d6b8e7948a62a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83ef798d6eb1f0485d4be54388404def432614ff71091712818358f17ca58ae0
MD5 ceb4d694351d5c6e460d661c9af6ea0a
BLAKE2b-256 9e0a2ca5f0e4a8c6e63d49d494521e7637ed7cd82367988652cf063cad4f5cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 25ec2e274e50a502330853872afeffb8e94dacdf3c760ed68e65a6f165c7a7b5
MD5 1380f232c9468bf387b99e4751a3e049
BLAKE2b-256 2ebcc7bea7211158583013722c63ea37ad425db3ccd5cffed6ddddc58e4cb22a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 794f8f2b0f63c30b6bed83ae7a85d3c99cb8ca45d273db11127ed477d70db3d0
MD5 77854cc5906aba50bdae462643a975fc
BLAKE2b-256 a79ef547011965351a99ffe526ab54db311ae7d28fc228a7badda7fdc01105ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e976474706a682fd168528c34062506266a950707ce5a44520c9deff51fbd22
MD5 49ea4c924da7a77278919599875153ae
BLAKE2b-256 1f27616c314a9bc5277e1f253c6d84013aea7c572c88b1bacd639cc8bb4abd29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9004b753df93b3dd12003cd23f428c2d967fc684b8c67cf4dc6eaedd02f7888
MD5 6403c6e9305ad0d570b0c42f3c18f07a
BLAKE2b-256 40a82d285e65b3fd715f9ddce661b7144187148dcdf02dc1be6a174f0b35dac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4e1cc1b28461b7e50af98d9d7e123b2b3930efa38c237e6dd37628f1652a0f1
MD5 0cc86de2746d24846d869f96128c17a8
BLAKE2b-256 f73dd0b63d9768cc3e7ce392c9f9c42d4cab76c4f309dac5363c1e30e6aaf308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4d95bebaf2629ef74f230dfe855c8c1c973aefe9b164263c66ea7de69c7bd89
MD5 39cf91476aa97df73bc9b14cb8bd537c
BLAKE2b-256 df4934b5d84e03b9785505d80663826a9793e7850a2a65bf102e5e0718dd2a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9d481dc350de6005d5a9f52b70de3108c89e4b1b1c1f45b5703fc60a0cbaf2d
MD5 6b04779f6e205edc55d15a1f467943ab
BLAKE2b-256 24d1a0d0d08c0989524c92de0c4ea7568b56a7477d87c569a0cd418746aec892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 59d8907f156fd1737be8d130781ba3fd30a5ee863b690abeefd5e1d7df3e0a89
MD5 cfd29a8103733fff63984f8f8fb1392d
BLAKE2b-256 8d7e9ca48b9091c197b44e091c8e330aea66290152f62ae5a46a4576fa90becd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a0889897b01e62255a8175d203b6f2bc2810a2a7a0bc4e60443c964e95f5ee3b
MD5 110ba13e402075aa2ea58f56d3fbf22f
BLAKE2b-256 afc30e25caca0c66316c92b57ad216b86b3f1c0475e56a636ac7b6ce53e6807e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eecab7342571f0d2e6e9da5e7eb45e6e6c80f8add34fec10454a907161388577
MD5 08e49119ddb58b76094b6ed7f0fba42d
BLAKE2b-256 d11fdf5503da74436843e0b0bd49904cfb1c2360234f7d13eb38b1759c53926d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 666938bb4dc3baa1823c967f18d518a59241e0b77c88a07e6cd49cb5ae9158fd
MD5 03f51bd004be555235ab0b49624c548e
BLAKE2b-256 449d5b35a19a981959b6a6ce43f9c9c6b5509a26a5adf8dbc0fbffa4e62bdc47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13cff458696d71afa7c1503fd7b6f8467475b00605ccafe7c7c233ac7d5d6f04
MD5 b1064f407433cd42be17ef33044ca12b
BLAKE2b-256 b71bd045671cd7b8d9944dd6bda6deea65844e7c08d9ce3a99e24615b3a28846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15f3448fadf48a900931f178aa71797efc244faf3ce686d91eef77e88acbfc5a
MD5 7e23ae60bb310a08841ecfbd6533920d
BLAKE2b-256 3d6ad01fc98b89f3a091c617746f31676b91d913e42d1e45a5435c9d5dcd1be6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdd334203a07a0bad9cb0c15469967ecca8c1a0c9e96a80e3438e7a608eafbab
MD5 429dbcbf77298362eaec835eeac468e9
BLAKE2b-256 bd08d697ef2eeeb6efc6c1b0fe19c7f06c3ed0899f8f477e8c78f1e39621a5f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd3d12873a95a7182d85dcbfdb0faee09176e1f3e01c371bb10b9e80aa0a62ab
MD5 dd5a78030a931569557c81ed7dd242cf
BLAKE2b-256 29705845c0f03d3a1ef2454cd42fd3c15b0753d6c58f1da28c310cb3a7b9e87a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b836c6dc81f85bc7885d0cacb339fe447231fbb7d0f1e44af3a63ebc7440056a
MD5 0030413dd7108a9e1384f1f5faf99f0e
BLAKE2b-256 8c873c41a21d3146deb06e56a18a938a8522a3dd4b069c24a2cae8064e1d8904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1ab9afe3686bd7082832c36956169c38507acf7eb78630495019fdf6afb9f64
MD5 1385e476d60a78c26bfb26b0aa9ecee9
BLAKE2b-256 ba8070caad6823408d96927c9c38aaaf97cec732ba9d84bfabf3cd38d4104289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9ba18344efe2a45d9c1ea4feb6797dbe14f91ccee57f5661d70121b752a471c
MD5 15d6720529a28a3359c6b4bc3e9ce320
BLAKE2b-256 6e4586232379434b977912dde64f732fe21bf1b2f5130c2293aa5fd3d4818d37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a26b31917d1191a4bf4a3aaff1d2f2e7af7b6aedf4b9522df68cbf787081ab38
MD5 78dff3753ee6c6ac59095f9661bc42f7
BLAKE2b-256 0ee18447bbf9766e677aa96180f6f56761c10c2e70b7282add7c13a169e042ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d078c0a945814ba641d96a2ba507b92823375216deecf93e33873ccbf0aba9f
MD5 8b5b75515034c3b26ff7c931a49150d3
BLAKE2b-256 da336d98e8ffeffdfb935f31923a71d99b16c833e474b93acaabcd9c5688181b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a713cb64ccf6ed8bbdfc4e7066169ee9057bb7321b76cc5a68e6c2b7d8676ea0
MD5 3c2a03918be50ba8d3e20f5573ec0422
BLAKE2b-256 c774b7d9fbf25d246b78de8677e5778cec005b01d3276a83d683367f7848d706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-3.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 11dfdfa7b05a63e3bd59e195b0a921062b843b8ef31e905a538e83da868ed7ab
MD5 6bba891c3569fec933b4bbbf5cafa8e3
BLAKE2b-256 0c9eb84c52c3498ce8ce21c5d009d37d1f1dffbd1a44b3995518bb2e14f34ad4

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