Skip to main content

chardet

Universal character encoding detector.

License: 0BSD Documentation codecov

chardet 7 is a ground-up, 0BSD-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.

Read more details about the rewrite process.

Why chardet 7?

99.3% accuracy on 2,517 test files. 134x faster than chardet 6.0.0, and +13.9pp more accurate than charset-normalizer 3.4.9 at 2.6x its speed. Language detection for every result. MIME type detection for binary files. 0BSD licensed.

chardet 7.5.0 (mypyc) chardet 6.0.0 charset-normalizer 3.4.9
Accuracy (2,517 files) 99.3% 88.2% 85.4%
Speed 2,724 files/s (839 pure) 20 files/s 1,051 files/s
Language detection 95.7% 40.0% 59.2%
Peak memory 27.4 MiB 28.8 MiB 69.9 MiB
Streaming detection yes yes no
Encoding era filtering yes no no
Encoding filters yes no yes
MIME type detection yes no no
Supported encodings 99 84 99
License 0BSD LGPL MIT

Installation

pip install chardet

Quick Start

import chardet

chardet.detect(b"Python is a great programming language for beginners and experts alike.")
# {'encoding': 'ascii', 'confidence': 1.0, 'language': 'en', 'mime_type': 'text/plain'}

# UTF-8 English with accented characters
chardet.detect("The naïve approach doesn't always work in complex systems.".encode("utf-8"))
# {'encoding': 'utf-8', 'confidence': 0.84, 'language': 'en', 'mime_type': 'text/plain'}

# Japanese EUC-JP
chardet.detect("日本語の文字コード検出テストです。このテキストはEUC-JPでエンコードされています。正しく検出できるか確認します。".encode("euc-jp"))
# {'encoding': 'EUC-JP', 'confidence': 1.0, 'language': 'ja', 'mime_type': 'text/plain'}

# 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[:4]:
    print(r["encoding"], round(r["confidence"], 2))
# Windows-1252 0.32
# iso8859-15 0.32
# ISO-8859-1 0.32
# MacRoman 0.31

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.46
# MacCyrillic 0.42
# KZ1048 0.2
# ptcp154 0.2

# 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.46

Encoding Filters

Restrict detection to specific encodings, or exclude encodings you don't want:

# Only consider UTF-8 and Windows-1252
chardet.detect(data, include_encodings=["utf-8", "windows-1252"])

# Consider everything except EBCDIC
chardet.detect(data, exclude_encodings=["cp037", "cp500"])

CLI

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

chardetect --minimal somefile.txt
# utf-8

# Include detected language
chardetect -l somefile.txt
# somefile.txt: utf-8 en (English) with confidence 0.99

# Only consider specific encodings
chardetect -i utf-8,windows-1252 somefile.txt
# somefile.txt: utf-8 with confidence 0.99

# Pipe from stdin
cat somefile.txt | chardetect
# stdin: utf-8 with confidence 0.99

What's New in chardet 7?

  • 0BSD license (previous versions were LGPL)
  • Ground-up rewrite: 13-stage detection pipeline using BOM detection, magic number identification, structural probing, byte validity filtering, and bigram statistical models
  • 134x faster than chardet 6.0.0 with mypyc, and 2.6x faster than charset-normalizer 3.4.9 while being far more accurate
  • 99.3% accuracy: +11.1pp vs chardet 6.0.0, +13.9pp vs charset-normalizer 3.4.9
  • Language detection: 95.7% accuracy across 49 languages, returned with every result
  • MIME type detection: identifies 40+ binary file formats (images, audio/video, archives, documents, executables, fonts) via magic number signatures, plus text/html, text/xml, and text/x-python for markup
  • Encoding filters: include_encodings and exclude_encodings parameters to restrict or exclude specific encodings from the candidate set
  • 99 encodings: full coverage including EBCDIC, Mac, DOS, and Baltic/Central European families
  • Optional mypyc compilation: 3.2x additional speedup on CPython
  • Thread-safe: detect() and detect_all() are safe to call concurrently; scales on free-threaded Python
  • Same API: detect(), detect_all(), UniversalDetector, and the chardetect CLI all work as before

Documentation

Full documentation is available at chardet.readthedocs.io.

Project History

chardet was originally created by Mark Pilgrim in 2006 as a Python port of Mozilla's universal charset detection library. He released versions 1.0 (2006) and 1.0.1 (2008) on PyPI, then developed an unreleased Python 3 port (2.0.1) on Google Code. After Mark deleted his online accounts in 2011, the project was continued by David Cramer, Erik Rose, Toshio Kuratomi, Ian Cordasco, and Dan Blanchard.

In 2026, Dan Blanchard rewrote chardet using Claude, releasing chardet 7.0 under a new license. All releases after 7 are not derivative of the original chardet code, but are released under the same name to allow an easier transition for users who can immediately benefit from the speed and accuracy improvements. For historical preservation and to allow easier comparison with the other releases, Dan has restored Mark's lost commits to this repository in the history/pilgrim branch.

To see the full history from 2006 to present in git log, fetch the graft refs:

git fetch origin 'refs/replace/*:refs/replace/*'

License

0BSD

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.5.1.tar.gz (837.5 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.5.1-py3-none-any.whl (655.0 kB view details)

Uploaded Python 3

chardet-7.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (975.8 kB view details)

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

chardet-7.5.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (963.2 kB view details)

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

chardet-7.5.1-cp314-cp314t-macosx_11_0_arm64.whl (935.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

chardet-7.5.1-cp314-cp314t-macosx_10_15_x86_64.whl (954.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

chardet-7.5.1-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

chardet-7.5.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (950.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

chardet-7.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (959.7 kB view details)

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

chardet-7.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (947.1 kB view details)

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

chardet-7.5.1-cp314-cp314-macosx_11_0_arm64.whl (917.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chardet-7.5.1-cp314-cp314-macosx_10_15_x86_64.whl (934.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

chardet-7.5.1-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

chardet-7.5.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (949.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

chardet-7.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (959.6 kB view details)

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

chardet-7.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (944.7 kB view details)

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

chardet-7.5.1-cp313-cp313-macosx_11_0_arm64.whl (917.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chardet-7.5.1-cp313-cp313-macosx_10_13_x86_64.whl (935.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

chardet-7.5.1-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

chardet-7.5.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (950.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

chardet-7.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (961.1 kB view details)

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

chardet-7.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (945.6 kB view details)

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

chardet-7.5.1-cp312-cp312-macosx_11_0_arm64.whl (922.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chardet-7.5.1-cp312-cp312-macosx_10_13_x86_64.whl (939.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

chardet-7.5.1-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

chardet-7.5.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (945.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

chardet-7.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (954.8 kB view details)

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

chardet-7.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (944.7 kB view details)

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

chardet-7.5.1-cp311-cp311-macosx_11_0_arm64.whl (920.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chardet-7.5.1-cp311-cp311-macosx_10_9_x86_64.whl (934.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

chardet-7.5.1-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

chardet-7.5.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (952.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

chardet-7.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (959.4 kB view details)

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

chardet-7.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (948.6 kB view details)

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

chardet-7.5.1-cp310-cp310-macosx_11_0_arm64.whl (924.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

chardet-7.5.1-cp310-cp310-macosx_10_9_x86_64.whl (938.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for chardet-7.5.1.tar.gz
Algorithm Hash digest
SHA256 0df08f2b2f6ac04b3e7f9e8ad1b1559c2e8497338ff9dfa1e0922335ff9dfe8d
MD5 93cb0d270a1a21cd444c303404ad4e5d
BLAKE2b-256 567cc9cf52695364a0609829ccc9e88adea553587ef70349314f29ed1b62bcff

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-py3-none-any.whl.

File metadata

  • Download URL: chardet-7.5.1-py3-none-any.whl
  • Upload date:
  • Size: 655.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for chardet-7.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ba7e9b6c15b4fcdf07ae675e5116dee610425f9ad6955c9bdb6bf99aed2e555d
MD5 6bc70702bce9372bfe3f7f777f3fa9c6
BLAKE2b-256 366bf195e0d66b1e18ccbcc3adc52c1c7e1263203e70b9bbe12c5a4198d1935b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26160da949c66f0cca280101d85e6e4fddca53bfe465a1b69ceb3c9998295cc0
MD5 aab9f8ea50721e4fa0585d02d941d057
BLAKE2b-256 5821eaa124a4a7beb8bc4df5e7a4df78021c09b2e5d68fbf66a24544228e583b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.1-cp314-cp314t-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.5.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c461fc9746912d19ab77efc1912b7f9a364b7fca1d787e1215207d5f6f68685d
MD5 80b17a1323cb21ab5825474ba48472d6
BLAKE2b-256 78ebd69d9013a67de60fc71da55d8cd6b25efdeaba0b0f4f9ae655fb71d82604

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.1-cp314-cp314t-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.5.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44214df32ff7c87fe82d7f1f21c7fe95c04769869e523f944413e668e001f52c
MD5 4e8e94d3a4fc069a8bf30d5d382691fa
BLAKE2b-256 de6041497afb2f225cc0c8cd731b34ee0f7bd5a85ab76547035f22b0326c0342

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.1-cp314-cp314t-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.5.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a198d47eaa28e1ba458f11ab636f0677f34c5d1ce7e909bec6ca2f346c21e78c
MD5 15d8f7adb5a4650aa3b0ad2ad3b83a80
BLAKE2b-256 3ef9746f0b494b2a08e694e4f97259979dce9f16740f0c624abcc76e9d2642c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.1-cp314-cp314t-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.5.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: chardet-7.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • 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 chardet-7.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 46d10bbb7ba7ba345694fe0276a61290d4cc25d3624c03282311dbc58c1d49b4
MD5 ab31355929350c8e1cc3121799124726
BLAKE2b-256 e98fd871b357287caae0483d2cd235fae476da3768dd7d56e1fe733ffd3f707c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1cd58589a52211901c5ac57016feffbe8a7e7e6328f5bf0b03ce44043e221e99
MD5 4a90d21c4ee0cf5802d971a1831c6720
BLAKE2b-256 8569cd0f5a176ed50787a9f143dd79a6a2cb47ce30cc1b164c76445bf3d971ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.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.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c378ccd8c0fab30171ed7c54d501f72c4294d9b98c71ea1ff7852aa9ccac399
MD5 9bd51bcafacf915d9362051febbb8cda
BLAKE2b-256 76bb32871c9e393f174a60930a29873b6a4217b3f1c65667cad303ef146caedc

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c99dea9eea1bdc6cc20dcb3555581234899d58a4147163c7d03d8fca11402b0
MD5 84ec92bfe8f7400ed10fc7fab25f5500
BLAKE2b-256 bf7bdf208823a1c53aa765caa4511479a7182399a397fb247aa30e0adccdd1a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eefafa763b7099c3c0a86c343097d69b766b3fe5705edba9400bae26450af1f
MD5 4822179bc1b507a8a174d77d30e13729
BLAKE2b-256 85845690a64afecf9967c3844ec96842d549e6f3ef72009bfd5524b69111245a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a6b20b42a9e6048d557aec9903df33239c299b4643c6553203127c8f92f47e78
MD5 c039e20758734bc92104896b5cbc8c57
BLAKE2b-256 680471d601ad6b13b30921c7c0e085aec44b152df206bef45b164988d4ea143b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: chardet-7.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • 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 chardet-7.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 71f152d66e7bd1faad615897d34765243cb567ad6aef07bf0d7c0cdd69bf6cce
MD5 b505912d32261099535406ed21ad04a3
BLAKE2b-256 88d4ed3b7e5c882ba24b71df8554840898ebbbbc3a57844d218edd4a1f8770a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 59598a8e15769ebe62fd0c153a5e4347a7a126cc7b376a724ff63ad80b890506
MD5 010081d89f4bb9f9acbfd7724d52a981
BLAKE2b-256 11b71e49d101a790501e540f9d9b33e52a65ccfcc0c0748220cb3ffb44987823

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.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.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36843a0e9e3196142e317806d5ca29ab0bb714de2315897124a018438cc535a3
MD5 352936b61b2ecd8b9eb3d8dc9e6c36ee
BLAKE2b-256 05c29e5200bd6f8c6a32d0f2bbb6235783b3ca421630cb4f18507d5c9edc07ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6faa6b18c7af2fca8d4cbb51fa035fa47f8f4b68547ae927a1c0be34dfc96fa
MD5 2a3be774b7feec41761db0e6ca8f2dc6
BLAKE2b-256 ead21773383d05a6cc1a69ee075cf477942edbb00c90bf8ac9778bce884e4c0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d30a84ec52c37532ad7978329a41224c454959b22503b8f8ed4df763e6c3ed2
MD5 1a43fc77473030fb39a39576af284706
BLAKE2b-256 c5e9bd883f6ed3cb53a66b6752da493ef4b82f6435e7c085e0eee21296a0a31c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b72b9b95c636d170d9a6284d99be9fd93ca08bb2221385ff1a5b69da98ec4f76
MD5 ece987d0827755911cfd74e27450a20e
BLAKE2b-256 533d3aed10edee5735bc92cf0bd1a469335f596331b3ffc82bbdd157f8d5135f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: chardet-7.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • 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 chardet-7.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fad6fbc154113e3b17bb757c34b21477e4b6d69fdd4ce51ff2b3f29a42f08b5b
MD5 ac568b41e5f3e1971ca04fe108bdb1c6
BLAKE2b-256 dc9a9e17c1c6fbc65f9cba07951d359a24c8f7b17d3ca26bd54f33fd98b70f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 469f164a608ccee4a8a2c0c2b4328470df9b07443e8269714f8e8a51f6fdf4c4
MD5 df15e37f0dc53b92040d6b9445eedb9d
BLAKE2b-256 1bfef568f20d0cea7f853769d3015915daf8bb8460a4265237a051bb374fdcd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.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.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecbe0e0a9fff7825fc48650ef297ede49c71a7abc411a0638416207a70bf78c0
MD5 29ae892055070d351e165faddddc7d8f
BLAKE2b-256 105689866e9995fdb2c8e8ff1336c4ecd4c86ba0f7e4622ccfacad2c13b2ba7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54bae16fc5b7ea39956ee737dd09b5f5438deafa9f565ac27c882992c3965b88
MD5 67a9437c617bea9a482191ae4119f078
BLAKE2b-256 fb9f841f7d9f1ff7b99ef2a7e7596b14199dbfe289a11b39c7f98cfb23d0c55a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a001a8f030625b705d9a4e68116e573462bd38192cc6c1bfa318b45606747ac
MD5 019257e3c9546e5fc6346e78d3f52613
BLAKE2b-256 c48e847935c588455b0d82fa57a5a8ced4c73a928e30f2012639228e566e3283

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3eb37b2c0aa67bfb1112aa90bfdd95cd3b4006fe051a2ea4872c3c6ba9cf855b
MD5 9d96c115011d10107c6339d1f08a797a
BLAKE2b-256 299560f047ece9faf585d6f625adea8786bb15a453fbf183e77a5762c8755c86

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: chardet-7.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • 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 chardet-7.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a77d6d2d61f39b40423bd0abaee32175739cec9f11edf9e7236a5341d0e05c99
MD5 be7d4817eebdb0504d2d8468b9365a61
BLAKE2b-256 ea214b8782d18fbec3b12a57fe9e5fcf252edbaefbe9386bc4a1620b7872d43d

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 bbf6948b7a5b85af5e435993c4e5fdb092d0d8f38c00d68c96e2640bafce5ec2
MD5 a5c46b822a762d0b1ce70bcb888481c7
BLAKE2b-256 c528e8df108688d80ac4e983c489fa6ddf14899b8513e3c93d6909c7de60245a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.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.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a599a836fbd41ff5a2a0c20e211da13ba8cc14dcba1e4bcfad8a7bcad64a2ff6
MD5 6d09ab8e67f12d2ca8e77288aa349eb4
BLAKE2b-256 6e8c8120efdadbf8a54f3bb4892ce6051be055eab7cedd7f85ed389f47c59299

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d06a8bacc8b6a26e900c3bd825601f9a8c02e063e687e960cf77363a9a397a0b
MD5 c36355ee13fc98ca2dceeb60b48dabc2
BLAKE2b-256 82087d2cf6856455588aad4f92f1efc8dcab6850a2cb20629ac57214cd8fb693

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6df2e255413c5f277067d9af7444ab1e9719126335efbefae24d8370aedf35c5
MD5 25efa833419940ec33d4ae1b062eb066
BLAKE2b-256 7989d683635b8da75762c4c7c1978cbe374bb0e03c236b97124c8913b0010290

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e72489029c1f6e4be6138dd045a4e52bffaba5d5da0398df585bfcf8b239e324
MD5 2a70cde1d53bfe122667d25d59015c71
BLAKE2b-256 2ae986ebd066a78fc3c1c368e6448eee363e596e5e4b802460566af40e09dbbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: chardet-7.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for chardet-7.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5953d8236049aed0411908cfeaeeec03984ab2f109f980f0ec70fbe6938c8f9e
MD5 c354f43c494acaedf82c9afaa4f6a5a3
BLAKE2b-256 2715e82da34603cda9962fa4627a8d89f11d808c2b616d58138416c78277f05c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 61312fd3ff363c3ec549548250630a02fd3123c360dd492bf1fce0d28e915b87
MD5 4f112c54883092b65790b5f39612dfe2
BLAKE2b-256 d4e4714cfd3de9e34964f4c8fe85fe929ef2a9d889bd908d5cdc822ecee3a1cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.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.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1c049906b95db7b12fd674f661f75285baf925eae98aa52a4a09305fc786855
MD5 c5f972748506cf0dab43b2349ff278dc
BLAKE2b-256 038e47ded9c693655501231a001dba9a1319d1c89010a772b7752aa69ce8ca0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 126b2a65141ed8a460c721d19f487c7b6fd12542aa761ce449f543296d0dd71e
MD5 498e7f591586269282fdd469cdf951e4
BLAKE2b-256 922f0ed2206d6efbd1cd4888e83ee9f8a0a2f89893bd750c987cd8bea8245a2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f22396ad419f1e78594057e200aa7253be56840f5b04d07b86ccecd99e09c068
MD5 192b1245c8cb102fe3440938d0d605af
BLAKE2b-256 da6e9a9c51f5d8b918c3e1ece93ce0369ca34768044749208058659095de9d78

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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.5.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 951ccab3a037a563079f4d448e82bbfee5f2715239440f732ffb0ac9f251dedb
MD5 9acc8df23c768490def199f60bb159bb
BLAKE2b-256 64c312e838956015a4c3d4cf6af1ea843fddd0854e43e03d69d13897133ac845

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.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