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.7% accuracy on 3,125 test files. 312x faster than chardet 6.0.0, and +13.1pp more accurate than charset-normalizer 3.5.0 while being 1.3x faster. Language detection for every result. MIME type detection for binary files. 0BSD licensed.

chardet 7.6.0 (compiled) chardet 6.0.0 charset-normalizer 3.5.0
Accuracy (3,125 files) 99.7% 84.5% 86.6%
Speed 2,793 files/s (647 pure) 10 files/s 2,210 files/s
Language detection 91.8% 38.5% 54.6%
Peak memory 27.7 MiB n/a 71.7 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
  • 312x faster than chardet 6.0.0 when compiled, and 1.3x faster than charset-normalizer 3.5.0 overall (2.0x at the median) while being far more accurate
  • 99.7% accuracy: +15.3pp vs chardet 6.0.0, +13.1pp vs charset-normalizer 3.5.0
  • Language detection: 91.8% 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 compiled builds: mypyc plus a Cython scoring kernel, 4.7x 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.6.0.tar.gz (914.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.6.0-py3-none-any.whl (680.3 kB view details)

Uploaded Python 3

chardet-7.6.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

chardet-7.6.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

chardet-7.6.0-cp315-cp315t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

chardet-7.6.0-cp315-cp315t-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

chardet-7.6.0-cp315-cp315-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.15Windows x86-64

chardet-7.6.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

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

chardet-7.6.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

chardet-7.6.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

chardet-7.6.0-cp315-cp315-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

chardet-7.6.0-cp315-cp315-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

chardet-7.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

chardet-7.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

chardet-7.6.0-cp314-cp314t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

chardet-7.6.0-cp314-cp314t-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

chardet-7.6.0-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

chardet-7.6.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

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

chardet-7.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

chardet-7.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

chardet-7.6.0-cp314-cp314-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chardet-7.6.0-cp314-cp314-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

chardet-7.6.0-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

chardet-7.6.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

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

chardet-7.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

chardet-7.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

chardet-7.6.0-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chardet-7.6.0-cp313-cp313-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

chardet-7.6.0-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

chardet-7.6.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

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

chardet-7.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

chardet-7.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

chardet-7.6.0-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chardet-7.6.0-cp312-cp312-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

chardet-7.6.0-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

chardet-7.6.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

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

chardet-7.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

chardet-7.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

chardet-7.6.0-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chardet-7.6.0-cp311-cp311-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

chardet-7.6.0-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

chardet-7.6.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.4 MB view details)

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

chardet-7.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

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

chardet-7.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

chardet-7.6.0-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

chardet-7.6.0-cp310-cp310-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: chardet-7.6.0.tar.gz
  • Upload date:
  • Size: 914.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.6.0.tar.gz
Algorithm Hash digest
SHA256 93d9df6089ded42ed1fe9f57e272c0b74bd0464d45c0c7d50f09f26f31105c3c
MD5 728517f43e9a435a3239d60d1ab35270
BLAKE2b-256 b151cd61c567092a6cec796144510a68aff158ebfc1df82950a45bae65f28413

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.6.0-py3-none-any.whl
  • Upload date:
  • Size: 680.3 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.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4076d795897ce45239825956a1334e134322ecc4bfe84dbb12acd5390de0fbc1
MD5 65ac69be4b497afe70d8e432de450af3
BLAKE2b-256 cf6e5a0b348fa4cd7847567a28c6e697ccf58391960bfd13a6e7473ee23ca2f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.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.6.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.6.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f14f46ef1977e41ce1f4814ca6984cea7f8b6baf8cbc6626ef7bf3d13cf7ea13
MD5 dd9af23432da26a19fd70464e09e645b
BLAKE2b-256 25d22bc3f1066c6f27bc3fa3a98dfd8a2a9c1e969a9d6bdc1edcd35278791fc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.0-cp315-cp315t-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.6.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.6.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 167d7ba3ee08b654e36d7b43ebd9a36606c9a12e2fabdb361757a095ca3b7e3d
MD5 4faada346075711a64883331d0d1c417
BLAKE2b-256 d12cb6d5f47d878c46e04ae6fcb58e0969467925bc0819b333c682e0c41bbc5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.0-cp315-cp315t-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.6.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.6.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2ec3c78cc6b54bf8e091ec4ee885473078b5d7ef18ab1b01c86ae1e98bf88f7
MD5 71116030cea3b55621676417bee2887b
BLAKE2b-256 293575a90143e4200e197f4f6cf5895d379e22bc785d0c7711120df18fa5347c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.0-cp315-cp315t-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.6.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.6.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 61238d5945b36af9a2ad13494f8969b7deb3c3b4abe223e54670c064e73f5328
MD5 9c4cae5fd809bddbd44fb6a07c101290
BLAKE2b-256 8d9222a609c68c5123ebdccd8fe1a80e423609012ce20166de19a2ed3955b2f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.0-cp315-cp315t-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.6.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: chardet-7.6.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for chardet-7.6.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 b73f277c1ac09c4f8076c4214b816c7aa78a0a2f0cb7156742f4303f856bedc3
MD5 108725dcac19cd73679f45128c4a384f
BLAKE2b-256 d74f3ad1b1bd27ae7f0d3d13cf711366525cd781a9e067950d8a09aa280916cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.0-cp315-cp315-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.6.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for chardet-7.6.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 da86fc1b40ff5996fbb5e4c2d2dca770eac2c893cef157dacc050b8b4d929846
MD5 fe629a3634160023f0e9a7275b2a6adf
BLAKE2b-256 6e98163a75b8b3372a6b6503f5f5a4154a222ac135c7a706b5d176f8e4b237a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.0-cp315-cp315-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.6.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.6.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 271ab71ec1be61dbbce0436de0848895c03eae051c379e937a39573d9ce403d9
MD5 19b2e8604e0ac9d75697b4a2d4357ff1
BLAKE2b-256 c0813ca30c16e6c6015b737fca22d9342957cc617d8a65329d3e963ad754a31b

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.0-cp315-cp315-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.6.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for chardet-7.6.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83512a475a2f3886166aa0bca1bbb39343a4eb3186dd5532127d6f2591d09118
MD5 54889960a2dcc621e2d01a26fe29c59f
BLAKE2b-256 0645f4f3f288496797d2cf1d1e9036f920ed2b4c79787b21c42a3314f4a6d532

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.0-cp315-cp315-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.6.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.6.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bbc8a9652c7f859c593847f220c1d264f25749369abb1a267b404ee8cceb209
MD5 0a71763bbb22e2613f1703c6f5e04728
BLAKE2b-256 fededac4f550cde73c4732b4916e72ec489ae36933fbbd1697e4122d3ae2e9dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.0-cp315-cp315-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.6.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.6.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0c44a32da32cc8b23d6b20d98ace15ec7600950e4955d1bf5ab1f849b0187fdb
MD5 ec1b5716b4cd68ba05459a466ba6fa49
BLAKE2b-256 0c3d2540627b193112e08b8045f3cad9295570866208555aa6625b63cc69c6cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.0-cp315-cp315-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.6.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.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0bdb6f03107b7ace3f44e0edd91aa24456ee558787df265cc19daf45785b31c7
MD5 0763f8d131ba6ebd6da358d52cb27011
BLAKE2b-256 df8c8f09bfabbaedae45caa72b996e96d5e3f6436dfddc55c1311ffa2f6bd7d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 459e2b1c98f9a86a4698112aa42dffa802bbbff883c1ff144071f87224125862
MD5 c2f0ff82e6594c75429ecc86d8e89527
BLAKE2b-256 f3f66a35342b9efa69dcceab0ea8966571c6442a59c336bf460f0a2af95ed234

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75d6c3a4d2046d49e83d2d2206eb073a1f390743e856d90c1bbc19949b26acf4
MD5 b066ef7992b623dbf0de2195efe2aa8f
BLAKE2b-256 e0cd8e68ba12f13aaf4ee82d54ef8a1f83d62942e7a6bc1e579dd2d530a3e26e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a4f0a368ad04d5def08bdfaa17c7e15e71552f93923dc2aa9b2f7d9dee02fbb6
MD5 725166a9a342c0cf646a8b0c7549903f
BLAKE2b-256 314494e6f89485ce6c630e8fec6d388e3fa747e58b7246b0cc8c5c532ba98650

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0f304de7041afaec0195ad6464937cd112392002e9d72ed15d55f20a9abd3a13
MD5 0ece0d5dfe31fe4dc92da7595a16f74f
BLAKE2b-256 7ca9ff4fef15ed25fc3f945a3b981ae0f43c8559b3fbedb40267e59e583d105b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d5dc835e40e0e09c2c3eab43731a8b5127834f42786dda09ba2f4b699ccd527a
MD5 40ad538721a530791e7fb35547ffb7ab
BLAKE2b-256 434c302869fa1c69a5a41e4e78782680b12552ffd4286c3ae3c839b7b8df53d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.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.6.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.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cedbc584789eb2edfde20fd03669972a833ce6019e60014ae613f9bfc440e8e3
MD5 05eff0fd74894130a42da3c07a2371a7
BLAKE2b-256 f488360064c4c7d9d0664561dae03b74c871d2f5332b329f5c99f1c997fb869a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8900f6c7cf6b015b17a51767cc6144689059ba1cdceaa383d29eb037ac28579e
MD5 4274cd2d9b26f8150914784506c709dc
BLAKE2b-256 3ba104404dcc9d6e1253b02583e562d2c7ddca50a7e91f460d62eff7e1d07c92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc1e1571321baf8927582fe34363ad7f02279f11c8c2839c14b4c76894148db6
MD5 b037d42662be61a7c42906073b9d292c
BLAKE2b-256 7a400f95e04cb1820e0a582cd6d86bbf26be8302a94ccf330f8ba5f69735389d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c6061adf247ab5dda173b67010e13904c6071717660c7c8077fb50aca362b264
MD5 2b5bc27c8eb108f39d141b41661fa3d2
BLAKE2b-256 cf78e14991c9487277ed7d006fff58f3084ac792ed94cced081788abb95df70c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b3b4c96c4df93899b3c8b9e8159e06b1f55c66d7ca384d91481108e251a06eb0
MD5 71362d0b3a37d680effe30b066ba31b0
BLAKE2b-256 6c9fe965f1d9eddfb86cf118f980d329cbee43c4ac4b562448b369a6b6ef36af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c54b6a8d3b219560fa5cf4c28df932c37471afe047afdc152067104e741f38c1
MD5 a28ce085edb4449e0e969509fbe267ea
BLAKE2b-256 10040066d7ab2c135e404a6fa166bb7fa49d1c7bf7af07b86ed95b1c48a348c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.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.6.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.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b5d31f9b7f793e15e81cca877e7ccd72bffffa2a3443a9d47be9dfee84fad69
MD5 90c03a58402b8afde9e604caf2697adf
BLAKE2b-256 bdeb93e8036681157f2217a18769927a035984526e6dbd5e91f28a375ca41c14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43ea433e43a23c55e8e17f3fad1e07f5cfe5450c73124b95b0d849c21ad379ee
MD5 159b094d198a14623657d13a17f8b2aa
BLAKE2b-256 d24cf59a39c2bfe4ac99baba8da842e8d2ea0b84dff7ba53a96e7ad8c71602d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 089e3bb81a0a07e94f15461ded9f9ee66d349615b1a9fd557d4de1003e2fc12e
MD5 c81997db29db28b565828ce41008da74
BLAKE2b-256 1d363a14b0f8ddeb302f157281ca656a3ce6874b78e2d6af03682f520b487245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 57e6846cc13ce1ff59979f4ec9da770c57e12aa99046073f632de5a51d9a6f20
MD5 b63266345746d57c187b2dd131ee0ef8
BLAKE2b-256 a32916a7419edfbd60e901e6a797cbc3e038cb2a81903bc16c029db755f0156f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 406936df1328a3284fef366eaa2bfd1cccd0ef1b10cb99781dd5b022ea644b84
MD5 76dce33579b252a8a886bf8796db5f89
BLAKE2b-256 0d538da1f4758286efd8faf71356facddb382788ecf1bbd7c70d63e2e18a4898

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cf6d08c2373b7772a558d141f9e8cee53fe1d222341bac612e4d558b04995f73
MD5 bfb683e316410fcf78da38a5b8e50a37
BLAKE2b-256 561d49f13052b74303bab2789d098063cbd19758217949ea54ffa216b6098cb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.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.6.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.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2cf0adaca8b1c4bacfade9d0a1e4f8f70b1bb122833d6f07ab90e3adc84eb13a
MD5 c64fa475d43a2209c5b26a14841f323b
BLAKE2b-256 7da2c4d99299e9ce7fad561f8bb56babbbbdd3bb6b4fbd7c0ec674c1dbdd2cc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 249993b88ac7a58cad2781acea8f379152a28a719c9b401d614898c63a8c83da
MD5 128c12a194707b7514dabf91296ffc97
BLAKE2b-256 71e9b04e0ec576a77e79fe37279a9a5d5b1ae752d365e43df2eca0d0eee4cea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a12023d48d0e207791c01161d03cb3c0d85c6a15f345eb9d3d56063a63d1e40f
MD5 ee08d54211334a92d12ddb7f5b6f127b
BLAKE2b-256 4499934fb862d102c8756008597f4398323f32cef329f16e87fbb3bf76d4f4be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 19fea52164e6e00f2a21ed418f42e4b0162a09199274c86d07ad3efd661317c4
MD5 26f2fd9b4a7c943546947b4f59b71c79
BLAKE2b-256 6f6264da80dad0c804e743b4156f379183578f1e33918856ae928dc9248a6002

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 360260d074d8712ac1e9048fcafb0fdde246f9d0b12555748ad0017c5ecee43d
MD5 cc8733920a0cd8f4a6f71e308fa402cd
BLAKE2b-256 02af46c80c317f9b4dd61f15c33b1e073fbdd64d13c70fe19e34943071dc9e50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0ad9bc6dab4f338673353fa3f0dc96122f559aaf746087408106e2fcbf132fe8
MD5 337ce08c265e4b603e6eaaf82d85af82
BLAKE2b-256 761b59eb88a78d8f5855c27c25788088df82834ad067f3dddaf4d86ef03cf2d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.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.6.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.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa03322e07ac08d520ec50bb50c73143d0892d1adc067d4c5e58f4ef4b2363a8
MD5 3990d83ee79b460c8cc0c6338c9affa0
BLAKE2b-256 03259c8db4f951e974a4db5558d9eea62e1fd5b5889c9d0ad0315eed67c5cdb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e9b31b9ae93872d66439b046a1e08c2ea99791f3c254dce1e2633e395c5587c
MD5 0132f2561eb9714aae6d488df3b43447
BLAKE2b-256 7f4a60ed03656b28c1f4d378bc3cfe8a6cdda62c7c289398f925610fbbabfd00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 284136186ff90735f901ed0a1c6d41e7af67c666841cc0eceb58482a21b7056c
MD5 9038e6ca001170d5fa1f2d7bd981904f
BLAKE2b-256 5595bd6d59026638cec47dace85858171fbecadd2f9e58cb2b973dc515aa790c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6424512f576fa7e88b7431d38a42d57552c8f717465a975fc42e497cd280d833
MD5 74150842e12e4a656f9c242ad559850c
BLAKE2b-256 112ed8634bee23a07bf512512ddf6218a68e47f045ae061c0cc80657ed79dcc0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6030886e7da2740bf299b6a8cc75b4dcc2c90db0ca8fe0a6e4fd0bfd071dabd
MD5 d1f7ae95d78d91248ed4a6454584672c
BLAKE2b-256 702298d824fe8bce808168dd364e843ccee858bb709e7e72c9b8a60f8d5201e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dde4080fb6bb8db96e8c44893771bcc0d235f4c22cdddb194a765a65e3a72ba7
MD5 4a92401d4e816dafc6e995f9f832df0a
BLAKE2b-256 adbe1c57863e21c1d6cb6b0fcdde313f8a24039eca01cc90ef0f0986c0964969

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.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.6.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.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b81d3f7d7914442d5f7d515b8c6d79cee6b794bc208971fb6902f176671166a
MD5 618ff07273621aebdb9340838ec3b715
BLAKE2b-256 f2340fd9d566df9647d0820a35b4d119db971da3ae9be20899d2b4af11d7ab58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7b586cab9e9072dddd89bc2bd27ee72808d0c84ec73695fe6ec0f3c46b057c65
MD5 266658f703496ce096501e48ac6b23e6
BLAKE2b-256 2038b32daa70f8bacd47e515ec9f85d571c87f31ff1c43c95aea7780eaefe7fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55a4c31adc7c7e83ad412f2f66b6b7358d0d4fe67505e7f58e18f68f75d341bb
MD5 d7e533ce651e3ba01387bb6040e623b6
BLAKE2b-256 b966acab13c5bbe55410273530a41b83fdcde0b653f6bded34702504c0ab95cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbaca8f563a9de07ab1a53157dba93802e54c26afe3339892afcc7c59ea4ef1b
MD5 0ee9aa3db916cf0bb652c195f3a1b211
BLAKE2b-256 8ccddc9df6b57c043037920a3896ccb08a21e0595fe592b7acb9fc85acaf0698

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.6.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 Sentry Error logging StatusPage Status page