Skip to main content

cChardet

PyPI version Run tests Build Wheels

cChardet is a high-speed universal character encoding detector built on the PyYoshi/uchardet fork, which tracks upstream uchardet.

Python support

cChardet supports CPython 3.11 through 3.14, including the free-threaded CPython 3.14 build. Each version is tested on Linux, macOS, and Windows.

Development

Install uv, clone this repository with its submodules, then create the locked development environment and run the checks:

git submodule update --init --recursive
uv sync --locked
make check

Build and validate the source distribution and wheel with:

uv build
uv run twine check dist/*

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
    • M

Example

import cchardet as chardet

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

# Bound work for large inputs without copying msg[:200_000].
result = chardet.detect(msg, max_bytes=200_000)

# Inspect alternative encoding/language candidates ordered by confidence.
for candidate in chardet.detect_all(msg, max_bytes=200_000):
    print(candidate)

# Optionally downweight unlikely languages with ISO 639-1 codes. Values must
# be between 0 and 1; omitting this argument preserves the default ranking.
result = chardet.detect(msg, language_weights={"ru": 0.2, "uk": 0.2})

The CLI accepts the same opt-in weighting as repeatable arguments, for example cchardetect --language-weight ru=0.2 --language-weight uk=0.2 file.txt.

cChardet ships PEP 561 type information. The detect() and detect_all() results are typed as cchardet.ResultDict, and bytes, bytearray, and memoryview inputs are accepted by the type checker.

Benchmark

uv sync --locked
uv run python tests/bench.py

# Process-isolated statistical benchmark (optimized installed builds).
uv run python setup.py build_ext --inplace
uv run --no-sync python benchmarks/pyperf_compare.py \
  --corpus src/ext/uchardet/test --corpus tests/samples \
  --corpus ../charset_normalizer/data --rigorous -o benchmark.json

# Measure the sibling Pure Python fallbacks under the same harness.
uv run --no-sync python benchmarks/pyperf_compare.py \
  --pythonpath ../chardet/src --pythonpath ../charset_normalizer/src \
  --corpus src/ext/uchardet/test --rigorous -o benchmark-pure.json

# Compare regular and free-threaded CPython installations independently.
uv run --no-sync python benchmarks/pyperf_free_threading.py \
  --corpus src/ext/uchardet/test --rigorous -o free-threading.json

# Compare encoding and language accuracy on separately reported corpora.
uv run --no-sync python benchmarks/accuracy.py \
  --uchardet-corpus src/ext/uchardet/test \
  --chardet-corpus /path/to/chardet-test-data \
  --charset-normalizer-corpus /path/to/char-dataset

Results

See the detector and performance analysis for the methodology, current results, limitations, and optimization roadmap. External fixtures and detector-tuning changes follow the test data policy. Maintainer release steps are documented in the release process.

LICENSE

See COPYING file.

Contact

Support Platforms

  • Windows x86, x86_64
  • Linux x86_64, 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

cchardet-2.3.0.tar.gz (246.0 kB view details)

Uploaded Source

Built Distributions

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

cchardet-2.3.0-cp314-cp314t-win_amd64.whl (353.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

cchardet-2.3.0-cp314-cp314t-win32.whl (350.8 kB view details)

Uploaded CPython 3.14tWindows x86

cchardet-2.3.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (646.8 kB view details)

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

cchardet-2.3.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (654.0 kB view details)

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

cchardet-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl (196.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cchardet-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (192.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

cchardet-2.3.0-cp314-cp314-win_amd64.whl (350.2 kB view details)

Uploaded CPython 3.14Windows x86-64

cchardet-2.3.0-cp314-cp314-win32.whl (348.0 kB view details)

Uploaded CPython 3.14Windows x86

cchardet-2.3.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (585.6 kB view details)

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

cchardet-2.3.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (584.8 kB view details)

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

cchardet-2.3.0-cp314-cp314-macosx_11_0_arm64.whl (192.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cchardet-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl (188.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

cchardet-2.3.0-cp313-cp313-win_amd64.whl (343.1 kB view details)

Uploaded CPython 3.13Windows x86-64

cchardet-2.3.0-cp313-cp313-win32.whl (342.1 kB view details)

Uploaded CPython 3.13Windows x86

cchardet-2.3.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (588.2 kB view details)

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

cchardet-2.3.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (584.6 kB view details)

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

cchardet-2.3.0-cp313-cp313-macosx_11_0_arm64.whl (191.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cchardet-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl (188.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

cchardet-2.3.0-cp312-cp312-win_amd64.whl (343.5 kB view details)

Uploaded CPython 3.12Windows x86-64

cchardet-2.3.0-cp312-cp312-win32.whl (342.5 kB view details)

Uploaded CPython 3.12Windows x86

cchardet-2.3.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (592.6 kB view details)

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

cchardet-2.3.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (588.6 kB view details)

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

cchardet-2.3.0-cp312-cp312-macosx_11_0_arm64.whl (192.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cchardet-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl (189.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cchardet-2.3.0-cp311-cp311-win_amd64.whl (343.1 kB view details)

Uploaded CPython 3.11Windows x86-64

cchardet-2.3.0-cp311-cp311-win32.whl (341.7 kB view details)

Uploaded CPython 3.11Windows x86

cchardet-2.3.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (583.8 kB view details)

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

cchardet-2.3.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (582.6 kB view details)

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

cchardet-2.3.0-cp311-cp311-macosx_11_0_arm64.whl (191.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cchardet-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl (188.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file cchardet-2.3.0.tar.gz.

File metadata

  • Download URL: cchardet-2.3.0.tar.gz
  • Upload date:
  • Size: 246.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0.tar.gz
Algorithm Hash digest
SHA256 e08fade06af9aa4888ad99609a66bbce99ad01c1269c0ea673af75a15a6f762e
MD5 e8a5838c4d705346489d4335fda539b2
BLAKE2b-256 86806b87429533a8a6fc5b970c44a3a844c315c3313377ecc4fb9efeb56a3241

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0.tar.gz:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: cchardet-2.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 353.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bc3134da17537d92abdf007d0c3a4847d8b5aa9618e08d98faa0c789b8f6c6b7
MD5 2ab6e08394e1850c78fa9e075cdd6fc5
BLAKE2b-256 cf1fe9398b51b4282751c2326506317dd6d098d03015d4aa47fa438cc113e5ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314t-win_amd64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: cchardet-2.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 350.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8a87115e27f545e057a88525dc798b9a8e931257b9855901284b0517c4ee7ac1
MD5 6861ad0d331e21a644c01e147fafb90b
BLAKE2b-256 9aafc4ba97008ccfa53c157169e1882c29a5c23e191ef963220ae099375420f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314t-win32.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 005115a05089c83209939abae30183d632ee643fb7dfad7970798b7450edacf9
MD5 05d12665acfba17ac27d6f2f0a044810
BLAKE2b-256 728d56a3d3180bd3b87464ee597b1f3231dde21a03b6d91fb771275c22e9a148

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d245060e94b345215d565af7957958f2bd9c42b714ef19cfce746e7a91fea9a5
MD5 5b1e26eb1e770a15ba2962669eaaba40
BLAKE2b-256 4f427b698236bf143ac8869fae0883272de994ba074def05a81bf9015f37c6e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b075ed32c646d0adfb2ce2b5c949bf8da7fda36a97b35816b354797a18fbecd
MD5 d074e1028fff5771a7fb5581994b62ec
BLAKE2b-256 9b751709cb7bd8dff494a88c9a77880010aaccc60fb73a9340c62f218c2dab39

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 794686f41e4d1424fea2d6143ceee17f9b95114290b26e0d0c8a3b7c7820187d
MD5 d87d7bc0c36a0df5bcc5a51b8cb34c3b
BLAKE2b-256 5ba6cc1ac04f30afe6e04fee1bc4dfbcbd507ee30f5860a1a079ee4bde9246bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cchardet-2.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 350.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 45013b35d67869b73d005253c96f856512704f1987a260562ec2338f5df803db
MD5 1f8112d10c4e302ed3c52b7699abb5b5
BLAKE2b-256 cd2c558828d77e988d44344ef9e39eea355b6be76e2478ae9c702e13b9d0bd71

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314-win_amd64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: cchardet-2.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 348.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 628a3651dae035e8278e0dc47f63a7259cf4f8e330d97a5b1dc3c6e0ff878eef
MD5 e75825e055ed65c5e14d9e21a3525fa3
BLAKE2b-256 92dec91b7911a6103756a6cf8f360946998f81c7bb72b8579702efd26a8272bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314-win32.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d09b601dbbf6dda9a51365b3b4655a5385cde237fbde6419e650e67ba4e60b0
MD5 83186850818b36432e49bb7f8e57e64e
BLAKE2b-256 0776dec51b234303639b3309dab625f4f541efd16e9a577bdb74b6ea7d216969

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba78cb008b2e44f3aac8416ba20600eb8f4ec4ede7c0c268e857f4a641171626
MD5 d9894016526840fe6c5880df98314479
BLAKE2b-256 aed5c050818046ff44f752363e07ac5738f89ab4c551325bc51ea7e2cb96afd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61375f13bf0268c7b75fa499e3414571c81bb0604cc26742f619a6896ddf9a35
MD5 e690a73ec5fc7b46264c4f8bbf63e812
BLAKE2b-256 01af16ecf4eab62376d8e64a68d2608aaf5acdad7d5f88a2e3af746164c771ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f5c9bf3c27603688a82c214076bf4af11a836adb93c477f7f459e431f14ebaf0
MD5 b35e8062650a4017d3b355beebf702e4
BLAKE2b-256 693a91988d823f5a4b44539c945c2c438535985f58d2f3dc71dbab6b6048f4cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cchardet-2.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 343.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3473232f1c7ad91fc499ce26de1c400abe111241ab4a6b9e01fcc3eacb8c452a
MD5 b022a1881cbc9538c6c69f12ac142a32
BLAKE2b-256 53bb1994e32e9359346601c803ce54dec6698d40612b45c76b24bfc1bf64b177

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp313-cp313-win_amd64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: cchardet-2.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 342.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 56caa068f8ef527fda4a6d9f0ef5c665c3f1b89111bb9d79bc43eef1c77af2d7
MD5 e664d9b1bda32defe3ba70551bbc6422
BLAKE2b-256 53224185bc386abe6d27757bfa6b7ce39dd8346ac9ab457e82ff111430b856ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp313-cp313-win32.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dece839f4454ce49877c8de9b75869b2e5ed5bbda7e5d1754b42c5f3c347ecf5
MD5 54e4c8360f39bbedd8cb2f4b9d11a417
BLAKE2b-256 fd8f462792f89f19ae783873b1c003008f9ce091f35ea85cb3ba737f6a3672ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3915b8c79b6de24f4a4947420b88a09177ad176017661281942887348e156508
MD5 d375bc3c0b0142997673a6fe49194955
BLAKE2b-256 a10e45c562c13bfe24b85ae7f94e6e059333dc49fc075b79a6694cd244702ce8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 539765e350e0177b0eb3ea6e860557a9e054f75c5546b886c770f9ce6104009e
MD5 9e80329a673d604174509fd203c9ff3d
BLAKE2b-256 a9d44b456a6dd7fd9640fbec866b84dd593de30e08d3b4674023ebd9a130618a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6f98ea3142e5bda6410497d728673db14a5759c06b43f7365e1d26f2ee211886
MD5 90e1d2e6a2d5906147ee3fb4275cff79
BLAKE2b-256 8554d62a5d2ed199e7dc9eaf62fc6d2b31a5b79c30d9e5f091b3dbcdac4a5578

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cchardet-2.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 343.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a9007d63c6f0de2733b69cd22371e51297fb1e0850f0b870cab93eaf202c030d
MD5 d7422a41717f13db9ddb0baffabf2472
BLAKE2b-256 45e957601d17d5d49a6106ea69956df4d17122376b0a31e8de99f7a8a9971fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp312-cp312-win_amd64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: cchardet-2.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 342.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0c2c83c763ee9082f5cf48bbf912cb2f86c7b806c9b8ff1291ad0da296c7042c
MD5 97fa589025237600a2034261641c7efb
BLAKE2b-256 bbd4ef3b2eb4792c25b8527087d9f30e5c67f3e1e01aaab118897b800a3ee160

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp312-cp312-win32.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 736b041f884a6bc665a70b669518a05a77ccb7091ff11cd6bde620e9d207ac0a
MD5 d893923e49d692b99e4515636ff9b0e7
BLAKE2b-256 899daec2c83e8b233d859e1745d72fa6d12f228fa15fe2b71445f4e4f159e846

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55dba83a862d83c01ee71fa40471d1b6a1e979f10621bb8be927b07cb63ff169
MD5 f82baf1517e54da32bf2ed628e539eca
BLAKE2b-256 ecb312b275c58007f0414e77d9a9a8ad946d2f3e4b3068fc35838392cbf2e225

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57f736f4760dfc377beca6487885f896b432b20d0d8b4e1e28c4d5d5030fe5f5
MD5 488551ad0d423db6723c52be6f2e04b0
BLAKE2b-256 43b0bd47d2873a67d43c5b1baa5442c80ae4b6c53271971c45ad6ddf492011f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 369e560db7b9d5f46824efa657b4168c591e7dfb1c734d4d774f22ec083ef3cc
MD5 06887d570bb43f399b396c9bc1cad13a
BLAKE2b-256 4e711396ac3794a7f0664e89a5d0ba39ec16469130da2962ba63ab131b586a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cchardet-2.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 343.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e19a279d5162feb5b577d3b70e84767e9bfcea135ffb9f98db7d541e39a3cde3
MD5 d25baa08cd72d7a50547f25e15bf03fd
BLAKE2b-256 9f9f6d1ec2ee1c061dcb119d23cceefbbdd2c05b77520de8675cf4113113d93f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp311-cp311-win_amd64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: cchardet-2.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 341.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cchardet-2.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 03c72d008ea85cdcfb8c65dedcface4f06a4650372ab3302ce5f84768fedfa32
MD5 9edf232e3b077b37a1ed91631a901c5e
BLAKE2b-256 64a416333919e443eb25ea2fc0748e61fdc8edfde3b35fb95a29e9afcd5dd7ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp311-cp311-win32.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c202d35b7c606259e01a55a0899feff7e28d32a4e6fa92cf859c78258aa7394
MD5 284030d52cad262c749e24e30f873fd2
BLAKE2b-256 3e01ff17607ec95992ec16bd0d77829458fb50da14be4f90cf5e674a3c34ce10

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 252b63e86d062f8735ce84bd0526e1d2f6629967fc1710af8a858d40029e83c9
MD5 effbc8025daec70b2100544d7ad9f120
BLAKE2b-256 f97a122a28c0581ea7ed61fc522cbbd42da48f0e1da54abf676ab78a8d9be3f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4580edbcc1edf92a42dcc9ed59485dd0fa81ea7d56c11dc4d3740646d8ec9994
MD5 ca6549ea6f541e7bd827ccaf909daaaa
BLAKE2b-256 593c6a99f2c78fd3cbf046cc4a1c9bd8bf5803212881627dcfa7608f0b7625cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cchardet-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cchardet-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e22284a6af4919aea95746b1aa6e522f919a5ea58600780243f31bdb0aaeff9c
MD5 4f6fc8331ddb992e21c44b4d97a98526
BLAKE2b-256 38c15f0524f0bc9d6965c9cd4cf73fe2b1ec10ca55eb8b7dbfd31d862d17fd50

See more details on using hashes here.

Provenance

The following attestation bundles were made for cchardet-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build.yaml on PyYoshi/cChardet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

2.3.0 This release

31 files

2.2.0

25 files

2.1.7

29 files

2.1.6

29 files

2.1.5

23 files

2.1.4

23 files

2.1.3

23 files

2.1.1

19 files

2.1.0

19 files

2.0.1

19 files

2.0.0

19 files

1.1.3

19 files

1.1.2

19 files

1.1.1

15 files

1.1.0

7 files

1.0.0

4 files

0.3.5

1 file

0.3.4

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page