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.0.tar.gz (834.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.0-py3-none-any.whl (653.8 kB view details)

Uploaded Python 3

chardet-7.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (973.3 kB view details)

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

chardet-7.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (961.1 kB view details)

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

chardet-7.5.0-cp314-cp314t-macosx_11_0_arm64.whl (933.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

chardet-7.5.0-cp314-cp314t-macosx_10_15_x86_64.whl (951.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

chardet-7.5.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (947.9 kB view details)

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

chardet-7.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (957.7 kB view details)

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

chardet-7.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (945.1 kB view details)

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

chardet-7.5.0-cp314-cp314-macosx_11_0_arm64.whl (914.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chardet-7.5.0-cp314-cp314-macosx_10_15_x86_64.whl (931.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

chardet-7.5.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (947.0 kB view details)

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

chardet-7.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (957.2 kB view details)

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

chardet-7.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (942.7 kB view details)

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

chardet-7.5.0-cp313-cp313-macosx_11_0_arm64.whl (915.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chardet-7.5.0-cp313-cp313-macosx_10_13_x86_64.whl (932.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

chardet-7.5.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (948.0 kB view details)

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

chardet-7.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (958.7 kB view details)

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

chardet-7.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (943.7 kB view details)

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

chardet-7.5.0-cp312-cp312-macosx_11_0_arm64.whl (919.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chardet-7.5.0-cp312-cp312-macosx_10_13_x86_64.whl (937.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

chardet-7.5.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (943.7 kB view details)

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

chardet-7.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (952.7 kB view details)

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

chardet-7.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (942.6 kB view details)

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

chardet-7.5.0-cp311-cp311-macosx_11_0_arm64.whl (917.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chardet-7.5.0-cp311-cp311-macosx_10_9_x86_64.whl (931.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

chardet-7.5.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (950.4 kB view details)

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

chardet-7.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (957.3 kB view details)

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

chardet-7.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (946.6 kB view details)

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

chardet-7.5.0-cp310-cp310-macosx_11_0_arm64.whl (921.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

chardet-7.5.0-cp310-cp310-macosx_10_9_x86_64.whl (935.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: chardet-7.5.0.tar.gz
  • Upload date:
  • Size: 834.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.0.tar.gz
Algorithm Hash digest
SHA256 f782ffd6298e993e9ac8dbc33404cf63283696b9e7eb5475cc4aa10fa50f8ed6
MD5 dbf3be01b7e91bda2af82c46ee426e0d
BLAKE2b-256 9e97f8c11730ad5f0a1916a60ccdbf3237f3b4c7872488158afb9faf9f9cf6a8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.5.0-py3-none-any.whl
  • Upload date:
  • Size: 653.8 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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ce1df595840f830ffb499f9fa7eab9740e21d8c894dbcac2706b2a6b7486bfac
MD5 dee5e13f42daac860243c1a492816276
BLAKE2b-256 6bb96f4c09fd75400adafd075f3a3141aa4cc31ef4feecd105373a36ec30a3e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c80d5461228c0500e241195d1054d74816044bdcc65b1c3d30f72687b2facb8f
MD5 9b7a7fd8b04ac3bd62ceb8ed2ec3dfc4
BLAKE2b-256 b1b1b646c88a69d14f8300ea4a272915c08c8935d5430bed655a07d4143a31db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e8a59cebe880b24de4af43ad5b4bdc46b50e6995b5291c724dc8487ca2cce25
MD5 3a5a6d85dec8a2671b103c8981490ff8
BLAKE2b-256 fd43f299b8bd15803132226555fc121cded8ef5e7875513f903643c036a6d290

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69ef54974cec68a6935c6360c6b2546a0d9d8f2aebb1e03f9e90341ea2afb557
MD5 0d55d47e787d7f3aef4416d2b19b6e5e
BLAKE2b-256 38c3c9beb14d81971f6820ec5d50ab86a48f79bc0cc820614061ae5a93f6ba53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8e3425d784a012b70a95db224b1f8b3d35302bf5ee281c58027927d146884864
MD5 6d15f3708c9528ddb3206eb85589fa0a
BLAKE2b-256 7ba9b846f1ccca00ce1ab5fb6ceb9fd100270885dbdae0bd5a5ceef3763583b2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.5.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cb8bf3d832fd91109ac80e0954b34d946c72d8f3b77f7e94d34b3c1a9e00e6e3
MD5 3bfbdec6e12e1c0298bd7dc8ac491b7e
BLAKE2b-256 ad1efd4f46e55844a6da59f9300678f941f9c02528e3eb6c2391e8bd09fae880

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 69a079752ffdf0318d4ffcf464dd746189c4608389df5e3e352c6cfd22b2533f
MD5 3225355d218b47e33eaa2ef144b07329
BLAKE2b-256 340c08533a88224c1ab81d81d17a7c06928a70385851ea7f572d0aa5cce0db74

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5cbcbebb4a08f94a042452bd914919cf13eab215c45726c0daa8b7aecd2d613f
MD5 3fa5df1adc174b54fcfd03daeca90225
BLAKE2b-256 b7c38f5644804c074b7be92eebfa5b78932b518cbe51266bdb697702396194e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa2f2fed3b08bc6e3b57dfa02bbd229fbb6a2786cdedd02b0b0a9b4cede68d68
MD5 fa6e030566517046ee61d5cc842e14c0
BLAKE2b-256 c9fe88bd0ad2e1bc19ebe356271145f87ee13bcbdc64a0661c52d1dc01b019fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37bdffaf2929ed2bf51c354d8dd0dbaba56383901d2b7e18d6f9166d758d3494
MD5 872c09cc9fc30a11e6e3e992fbf8ff94
BLAKE2b-256 a901fb75b69ae6928b1e29019ce2f56a0b458c3b9a55fee2f463e0b49db8bcff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f22a1ffc2d730da29d73725df0c86fffec092f93e37b5fa8b87efcf842176c5
MD5 cd020a860945cf5d1874e7a8ac06c0e7
BLAKE2b-256 bac688e37a845ebf3d12f65f21cea95cdb3b3f5e7f64c8506c55e499479c3d24

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.5.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5fc9109b44ee05320846c61f9e83b9b3cf81e874d85fc2aec1f8004408cf0570
MD5 3b603e37d59d956a418aea8401dddf8e
BLAKE2b-256 6b168f5a19314a8502d488136e6911d149e96ab870231251fc009e811015e898

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c6266ad2b28e334898c92be1d0fd9d5b1a687a94f0a828cd6db23626fab0f878
MD5 c54038bca3ccf6b7be4b074447211381
BLAKE2b-256 ec74f095b597d0f7fcab40518115016cbecd7f7287e552fe11a94b8c16509b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3db8e5a145048766367a37a1c4d9940e2a71b692d0fe311967f8d881bb89e1d5
MD5 a5088af6128033f5cca4f7ea91e8ae02
BLAKE2b-256 431d1e487c454a7d6a5e83cf9687055ae8e805dce01983a409a303adfd10f546

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c556ec9f7e6c1b022c4598c05d66a2320dd3f2f656ac7f8900b7941929fa0f08
MD5 d863d69d6b3a2c66d6d3a6b9f8d7b7d4
BLAKE2b-256 f1e49187eb90fef957a38f53a0b76b5f7b6fcb4283075ec823f95fe4c6314018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f162bb5d79b84bf5253a191a501cbed4dc6315d629d78fa596a3c1f9a7e022db
MD5 63c729b0f45a6d35c4188997f0e76270
BLAKE2b-256 5fdc55676e9084af2c3fd46db7afcb0b52bfbcc67babf8ffbf963572c88391db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9591f8230465b782390d8cbe364b2ed6b46c206dbc2b94424556ed0b11260fb1
MD5 d31e2452e874fc301667ac1ceea67bd2
BLAKE2b-256 a430908a92b73e4b4e6854ea50abb3343a5f19318f22677a367703546155a315

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.5.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fb35d8a6234f3815ed5164aa7e7f56f8cc0dd7fa5860f2ce71b3c4f8328eee95
MD5 4a1f1dd13067d8c7b5687d6f608c46c8
BLAKE2b-256 9f1017ee5acd776cf8947a8235c089f158643ba3d9df253b36cd315a3b23292b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 883c12e5bdf7b012c910a2b8c930c2c5413be5f58c9bb7e2900edf3ca279a8ef
MD5 df7d92a57dfed2a826972ab3173c2ac5
BLAKE2b-256 e6fc2f9ebc3bc39d5def5461c36a0044dc24a97df2f1367f307fc902089fd5aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98f7de1b8cb385b4bd65a8c287aa61d9b9748ca294ee1a563711fa08e6467599
MD5 cb3d205b4066c57f1f7c2b2e910f83a3
BLAKE2b-256 021d3c7e1e38363cdcd4bb6e8809ef292642119013e87bcb9eaacd037ac8bfd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d7828fa61df6fecdcacc667b169b0915d866044ed7be01a382a07abaa990cf0
MD5 4dad21668072be14ed191d25086eb6a9
BLAKE2b-256 5ee208cdcaef4492fdf6dfc3c4970f4db58e15d0c7eb842dce7cd018ec6a2df3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89d2fcaeec2196b8f281c82e9ac51635b58cca6f6934648bbde41bee59ddd76e
MD5 dbfe3e3404da83f8b3ed4eb44f597426
BLAKE2b-256 2685ebb08a69c595db068668428e2d8b8bb86cc2684306f4918975a00971d624

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 be4c91db017330a503e03086c2a363bda32c967c562dcfd1c3316d559deca070
MD5 f5434fd51df0f97652545096d3e401e8
BLAKE2b-256 6b842cd1f5e871b58da75436f00d672e559b2138ef1020af3b44d660f342c8da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.5.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3515dd5bb5696b9c3b8fd1a438bd7cecae525b6d13ec45a2fe24fe66d58a89c2
MD5 dae2a76a38358bea39e0e854ea508372
BLAKE2b-256 b3451f6b0d474f2d8e80e4d9d85953ccbc46cbf88592aae6f10301187df91652

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e41cda6661d0feda4099ee0203e0c541c1ad49c231a27dc2ebab26539d92a9c1
MD5 b66ead83ba612d455d953d2a250c11d6
BLAKE2b-256 563e849ed6b560b50c3cc8f07c62257ebccd16af59bacc1878dcbac82ca6ebf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a586509d9077491cdf7f5e6ac99cdcf9894330550d6de81cc4fa2d25ac9c460
MD5 c2f5d8540a521bbc0374741ac68668bb
BLAKE2b-256 feabe6041cad239748005917a235c7ea9a55155fe1d689cca25c5e7c82de123f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06dff305bdff45a2692e8f0358b38015f8a8bb0e10283ed9fe0190ed720fd761
MD5 2c5bb6fe2c54ab795cda2578db8f71fc
BLAKE2b-256 ed26edf73dc012e03b11c45896c35a1b0d865417101c8538448be9a0cc37786f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69a1df49672f660e226e6a1527ee9bf3f7b85c05a38505815d8fdea4f92443d4
MD5 00691c30b5ba9b02e105b7201f4a29ef
BLAKE2b-256 db1db8a0df9b0cf0f0da35ec62d9526f31db98321d32374fa2fad25c9d6d4527

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f912092f40409dcbd907d4637ebe0935bb1a77d824d6a898f33dac82505a97c5
MD5 fe188eeeb1f9733649cd0079356df207
BLAKE2b-256 d41b9335a1cde57f730d627c1dec987d9ac39ee7d20bb8963b2b0a41a2d439f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.5.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7fc7ed438dde2f316f548ee4a8a47cfc508584b3c698e3c3f19c91168f1b7e58
MD5 349f169af1aa525175b5b0ea329ab324
BLAKE2b-256 1e56514c9ff9ba33184c2dc41782fb18bdb5701c6d4c0fee7814e39b88e7460c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6d3c0bfd44b40be506ec889397b61ce0a69e3c510c75de55a137066b20756863
MD5 73372feb7a9b3a2a5fb17b1c4cb0c5e5
BLAKE2b-256 06d9770186e0942b9603ad4ca0596c52f6ce0ddec5692c97d62d20f520421b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.5.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73c603993993d88471e2022eeeaba3aa8faeeef12bf723e32bc512b48480676b
MD5 43f285664183954012512d3c65aa95ce
BLAKE2b-256 6e1679e5adeab9c4e8772c93de64c28f884bbaded1ce1ce1aacf4aac55efa6cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 244272beb556ce4b84f2657ca84fb7c32d622ada02d2a6e2f6d1e89b99debd4c
MD5 50cf5a7b1fb4a2dfcdd1e46fc57557c6
BLAKE2b-256 331e9154176a02ad9b86caa705d1d97c95e8832c49d4ef7b5fbd4f9579fa021a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c76d04bc911b2fb4ef8697bbd6ec7b3564845d4719fcd3ac655878a4007e895b
MD5 2f6d0983825abec6dcf1901f57e77ba4
BLAKE2b-256 9c27a14a22faeb322fd348b4d390179c9e4ed7f04c0e272695410b78ca5582e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d0a62f0909be24d579fea86c38308372a3091eae76ace75b457a83a1566dfdb7
MD5 9523c22b5bd4eba3cc148ecdbfee604e
BLAKE2b-256 7799f55eb26faeea9d656124db4fe5dae387af9e5e4f6c7b9f5dd9a04a0eb040

See more details on using hashes here.

Provenance

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