Skip to main content

Universal character encoding detector

Project description

chardet

Universal character encoding detector.

License: MIT Documentation codecov

chardet 7.0 is a ground-up, MIT-licensed rewrite of chardet. Same package name, same public API — drop-in replacement for chardet 5.x/6.x, just much faster and more accurate. Python 3.10+, zero runtime dependencies, works on PyPy.

Why chardet 7.0?

98.1% accuracy on 2,510 test files. 43x faster than chardet 6.0.0 and 6.8x faster than charset-normalizer. Language detection for every result. MIT licensed.

chardet 7.0 (mypyc) chardet 7.0 (pure) chardet 6.0.0 charset-normalizer
Accuracy (2,510 files) 98.1% 98.1% 88.2% 78.5%
Speed 546 files/s 383 files/s 13 files/s 80 files/s
Language detection 95.1% 95.1% -- --
Peak memory 26.2 MiB 26.3 MiB 29.5 MiB 101.2 MiB
Streaming detection yes yes yes no
Encoding era filtering yes yes no no
Supported encodings 99 99 84 99
License MIT MIT LGPL MIT

Installation

pip install chardet

Quick Start

import chardet

# Plain ASCII is reported as its superset Windows-1252 by default,
# keeping with WHATWG guidelines for encoding detection.
chardet.detect(b"Hello, world!")
# {'encoding': 'Windows-1252', 'confidence': 1.0, 'language': 'en'}

# UTF-8 with typographic punctuation
chardet.detect("It\u2019s a lovely day \u2014 let\u2019s grab coffee.".encode("utf-8"))
# {'encoding': 'utf-8', 'confidence': 0.99, 'language': 'es'}

# Japanese EUC-JP
chardet.detect("これは日本語のテストです。文字コードの検出を行います。".encode("euc-jp"))
# {'encoding': 'euc-jis-2004', 'confidence': 1.0, 'language': 'ja'}

# Get all candidate encodings ranked by confidence
text = "Le café est une boisson très populaire en France et dans le monde entier."
results = chardet.detect_all(text.encode("windows-1252"))
for r in results:
    print(r["encoding"], r["confidence"])
# windows-1252 0.44
# iso-8859-15 0.44
# mac-roman 0.42
# cp858 0.42

Streaming Detection

For large files or network streams, use UniversalDetector to feed data incrementally:

from chardet import UniversalDetector

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

Encoding Era Filtering

Restrict detection to specific encoding eras to reduce false positives:

from chardet import detect_all
from chardet.enums import EncodingEra

data = "Москва является столицей Российской Федерации и крупнейшим городом страны.".encode("windows-1251")

# All encoding eras are considered by default — 4 candidates across eras
for r in detect_all(data):
    print(r["encoding"], round(r["confidence"], 2))
# windows-1251 0.5
# mac-cyrillic 0.47
# kz-1048 0.22
# ptcp154 0.22

# Restrict to modern web encodings — 1 confident result
for r in detect_all(data, encoding_era=EncodingEra.MODERN_WEB):
    print(r["encoding"], round(r["confidence"], 2))
# windows-1251 0.5

CLI

chardetect somefile.txt
# somefile.txt: utf-8 with confidence 0.99

chardetect --minimal somefile.txt
# utf-8

# Pipe from stdin
cat somefile.txt | chardetect

What's New in 7.0

  • MIT license (previous versions were LGPL)
  • Ground-up rewrite — 12-stage detection pipeline using BOM detection, structural probing, byte validity filtering, and bigram statistical models
  • 43x faster than chardet 6.0.0 with mypyc (30x pure Python), 6.8x faster than charset-normalizer
  • 98.1% accuracy — +9.9pp vs chardet 6.0.0, +19.6pp vs charset-normalizer
  • Language detection — 95.1% accuracy across 49 languages, returned with every result
  • 99 encodings — full coverage including EBCDIC, Mac, DOS, and Baltic/Central European families
  • EncodingEra filtering — scope detection to modern web encodings, legacy ISO/Mac/DOS, mainframe, or all
  • Optional mypyc compilation — 1.42x additional speedup on CPython
  • Thread-safedetect() and detect_all() are safe to call concurrently; scales on free-threaded Python
  • Same APIdetect(), detect_all(), UniversalDetector, and the chardetect CLI all work as before

Documentation

Full documentation is available at chardet.readthedocs.io.

License

MIT

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

chardet-7.0.1.tar.gz (490.2 kB view details)

Uploaded Source

Built Distributions

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

chardet-7.0.1-py3-none-any.whl (408.3 kB view details)

Uploaded Python 3

chardet-7.0.1-cp314-cp314-win_amd64.whl (524.0 kB view details)

Uploaded CPython 3.14Windows x86-64

chardet-7.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (557.4 kB view details)

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

chardet-7.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (554.6 kB view details)

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

chardet-7.0.1-cp314-cp314-macosx_11_0_arm64.whl (533.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chardet-7.0.1-cp314-cp314-macosx_10_15_x86_64.whl (541.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

chardet-7.0.1-cp313-cp313-win_amd64.whl (524.1 kB view details)

Uploaded CPython 3.13Windows x86-64

chardet-7.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (557.5 kB view details)

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

chardet-7.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (553.8 kB view details)

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

chardet-7.0.1-cp313-cp313-macosx_11_0_arm64.whl (533.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chardet-7.0.1-cp313-cp313-macosx_10_13_x86_64.whl (541.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

chardet-7.0.1-cp312-cp312-win_amd64.whl (524.3 kB view details)

Uploaded CPython 3.12Windows x86-64

chardet-7.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (557.9 kB view details)

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

chardet-7.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (554.2 kB view details)

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

chardet-7.0.1-cp312-cp312-macosx_11_0_arm64.whl (533.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chardet-7.0.1-cp312-cp312-macosx_10_13_x86_64.whl (541.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

chardet-7.0.1-cp311-cp311-win_amd64.whl (524.1 kB view details)

Uploaded CPython 3.11Windows x86-64

chardet-7.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (555.6 kB view details)

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

chardet-7.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (553.0 kB view details)

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

chardet-7.0.1-cp311-cp311-macosx_11_0_arm64.whl (533.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chardet-7.0.1-cp311-cp311-macosx_10_9_x86_64.whl (540.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

chardet-7.0.1-cp310-cp310-win_amd64.whl (524.2 kB view details)

Uploaded CPython 3.10Windows x86-64

chardet-7.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (557.3 kB view details)

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

chardet-7.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (554.7 kB view details)

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

chardet-7.0.1-cp310-cp310-macosx_11_0_arm64.whl (535.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

chardet-7.0.1-cp310-cp310-macosx_10_9_x86_64.whl (542.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file chardet-7.0.1.tar.gz.

File metadata

  • Download URL: chardet-7.0.1.tar.gz
  • Upload date:
  • Size: 490.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chardet-7.0.1.tar.gz
Algorithm Hash digest
SHA256 6fce895c12c5495bb598e59ae3cd89306969b4464ec7b6dd609b9c86e3397fe3
MD5 756f63c6ef61b53dbfe8b9d0a14eb7ef
BLAKE2b-256 6c804684035f1a2a3096506bc377276a815ccf0be3c3316eab35d589e82d9f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1.tar.gz:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-py3-none-any.whl.

File metadata

  • Download URL: chardet-7.0.1-py3-none-any.whl
  • Upload date:
  • Size: 408.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chardet-7.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e51e1ff2c51b2d622d97c9737bd5ee9d9b9038f05b7dd8f9ea10b9e2d9674c24
MD5 b3b653538559f1f4081460d29c7fddad
BLAKE2b-256 a31fc1a089db6333b1283409cad3714b8935e7e56722c9c60f9299726a1e57c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-py3-none-any.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: chardet-7.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 524.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chardet-7.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9e827211249d8e3cacc1adf6950a7a8cf56920e5e303e56dcab827b71c03df33
MD5 76fd1182df9d7d88447e72728600c4aa
BLAKE2b-256 9c4671151da7b43673ef8b1bb83503e0e4ac9658d24b908f208a84d439767036

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1566d0f91990b8f33b53836391d557f779584bd48beabf90efbf7a6efa89179e
MD5 996961e493b5e7d433a0376727c0f6ef
BLAKE2b-256 893ba8d2a8ee1baa43f8d3b06c8fd9a86317ea4418b2c90fbe084c45665916e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33f4132f9781302beff34713fe6c990badd009aa8ea730611aef0931b27f1541
MD5 5d6d68c0ef44b1e1fc2b379ccb815b96
BLAKE2b-256 15030f3fe90b5fba51e3f79c48b299497626ff231a1a3326865cf8edb94f65f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44011e3b4fd4a8a15bc94736717414b7ec82880066fb22d9f476c68a4ded2647
MD5 a4836853b3ee7fb2cc123fe8dc316f36
BLAKE2b-256 982d5f77ea0d96cf89e8312261a435c6899e023c672a7d20287997647c0da079

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 88793aeebb28a5296eea9bdd9b5e74ee4e3582766a6a2cb7f39e4761a96fdd55
MD5 63d90e3c4acb483f1b9cba5e09276c4f
BLAKE2b-256 b5bd30c131115b0b3ba72da996ba4fefe23d9ac96ff55f9e981bcf1896bff516

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: chardet-7.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 524.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chardet-7.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c12abc65830068ad05bd257fb953aaaf63a551446688e03e145522086be5738c
MD5 e31bb1ad3f82417486921d74e1c90606
BLAKE2b-256 ed447acb8f84fc7b5ad3c977ac31865b308881da1c0a6ca58be35554d2473dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8714f0013c208452a98e23595d99cef53c5364565454425f431446eb586e2591
MD5 f1ead08c40fdc3e652444fe61c51c90a
BLAKE2b-256 b945860a82d618e5c3930faef0a0fe205b752323e5d10ce0c18fe5016fd4f8d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11f51985946b49739968b6dc2fa70e7d8f490bb15574377c5ee114f33d19ef7e
MD5 64d2e6682bb1ce69a7b91221acef4c7c
BLAKE2b-256 b28c6b5f4b49c471b396bdbddad55b569e05d686ea65d91795dae6c774b285f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63bc210ce73f8a1b87430b949f84d086cb326d67eb259305862e7c8861b73374
MD5 e6348a55189d4904aadedf647eb49d55
BLAKE2b-256 24fe2f2425f3b0801e897653723ee827bc87e5a0feacf826ab268a9216680615

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 67fe3f453416ed9343057dcf06583b36aae6d8bdb013370b3ff46bc37b7e30ac
MD5 c719a6a73763895da9228021dbb13dc3
BLAKE2b-256 56261a22b9a19b4ca167ca462eaf91d0fc31285874d80b0381c55fdc5bc5f066

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: chardet-7.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 524.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chardet-7.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 302798e1e62008ca34a216dd04ecc5e240993b2090628e2a35d4c0754313ea9a
MD5 bc9e06cd5ef4604a4c36e9c0846d80a2
BLAKE2b-256 07ba7ca89301e492ac4184ba7f4736565d954ba3125acf6bf02c66a38a802bda

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f907962b18df78d5ca87a7484e4034354408d2c97cec6f53634b0ea0424c594
MD5 220f1062397bc58714d40f90231b719c
BLAKE2b-256 e8ed2fe5ea435ae480bd3a76be1415920ce52b3ff6e188d8eab6a635d6a2a1d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd6db7505556ae8f9e2a3bf6d689c2b86aa6b459cf39552645d2c4d3fdbf489c
MD5 af2d69b81434fd4d01024fedf598efab
BLAKE2b-256 d97537bee6900183ea08a3a0ae04b9f018f9e64c6b10716e1f7b423db0c4356c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 169951fa88d449e72e0c6194cec1c5e405fd36a6cfbe74c7dab5494cc35f1700
MD5 8093ba3aa4180ac1f544744ef54f829a
BLAKE2b-256 f9fb3b92a2433eadef83ae131fa720a17857cfbf7687c5f188bfb2f9eee2d3dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f661edbfa77b8683a503043ddc9b9fe9036cf28af13064200e11fa1844ded79c
MD5 1753229931f7b2b883a1c8923c3f0049
BLAKE2b-256 f6884c6fe7dcd5d36a2cfd7030084fbd79264083f329faaf96038c23888a8e05

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: chardet-7.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 524.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chardet-7.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 26186f0ea03c4c1f9be20c088b127c71b0e9d487676930fab77625ddec2a4ef2
MD5 627b1bb3066a7851ca6837e45cb70f10
BLAKE2b-256 73649c5c450ba18359a8e8ab2943e6c3a0b100bd394799bc73a844e3c5cd9c7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 265cb3b5dafc0411c0949800a0692f07e986fb663b6ae1ecfba32ad193a55a03
MD5 2aca314d439f4f51ec32426d2226d8fc
BLAKE2b-256 e49f3d4ba1650e3eb3e7431a054e3bf1b5eaea25b84c72afabf5ef6fc33305d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5333f9967863ea7d8642df0e00cf4d33e8ed7e99fe7b6464b40ba969a2808544
MD5 2ca4ae145d02407bc689d62c3d822a3d
BLAKE2b-256 ad53a57a8a6be34379e55c8bdbf2b988c145d3b7675577bd152e73bff7c4ba3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3355a3c8453d673e7c1664fdd24a0c6ef39964c3d41befc4849250f7eb1de3b5
MD5 dc4325c502e744aedef996a8ddf430ba
BLAKE2b-256 24fa3ad0b454a55376b7971fe64c2f225dfe56a491d8d8728fbfba63f8ff416d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3f59dc3e148b54813ec5c7b4b2e025d37f5dc221ee28a06d1a62f169cfaedf5
MD5 e157a49c6a6c98c6a99691ea4dd85a1a
BLAKE2b-256 00fba90b4510aa9080966c65321db2084bcfa184518ee1ed15570d351649ecb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: chardet-7.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 524.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chardet-7.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 69708a504a43464b60ea16d031250b58206969c9bbd6851266e2f39afef53168
MD5 7738c6194d491fa74b5376bd387d9696
BLAKE2b-256 5ebb388f15997240ea245087e66a258ed301247f84cd34328dd8f73a6bba9184

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54e448fab0c11b27bb908ea0218e2094578c583d05faa5f65b91fa6ccfa45570
MD5 93dac962c8dccb1bf3c9a1feaee969e5
BLAKE2b-256 23b37494df94d362bc5602fdb7bd3df20afc9d6005c6e781030c1415c40e812f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4af34cf0652a9da44720540c97f11e30781a77900c89547b311984a7272b33f7
MD5 e68451ea65bc00b2292c1d13d2284d4d
BLAKE2b-256 c0e447a9306a1c5757e86309f558d0e206d71842efb7b5109ab8e5991a63e926

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb14755377d8de845c69378bbaedc0e35109c21a43824450524fd9c3178792d5
MD5 1a48136cd8f329ab78c34c00fb0ebed9
BLAKE2b-256 a7a25f9afb10c47852de7bd2399e25dd72fe3884b16b79a195c230e9e4affd4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a8d87853c7f191029933307094a8896b087c2c436703281cb289a22aa4ae8bd
MD5 e1b6edbac887aed9e63129e0b792fe53
BLAKE2b-256 259707c01ad079ede646f241fe34de7686f2385e0deae4feb36ca2041a9ed059

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on chardet/chardet

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

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