Skip to main content

Universal character encoding detector

Project description

chardet

Universal character encoding detector.

License: MIT Documentation codecov

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

Why chardet 7.0?

96.8% accuracy on 2,179 test files. 28x faster than chardet 6.0.0. 5x faster than charset-normalizer. Language detection for every result. MIT licensed.

chardet 7.0 chardet 6.0.0 charset-normalizer
Accuracy (2,179 files) 96.8% 94.5% 89.1%
Speed (pure Python) 335 files/s 12 files/s 66 files/s
Speed (mypyc compiled) 494 files/s -- 66 files/s
Language detection accuracy 90.5% 47.0% --
Peak memory 22.5 MiB 16.4 MiB 102.2 MiB
Streaming detection yes yes no
Encoding era filtering yes no no
Supported encodings 99 84 99
Optional mypyc compilation yes no yes
License MIT LGPL MIT

Installation

pip install chardet

Quick Start

import chardet

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

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

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

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

Streaming Detection

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

from chardet import UniversalDetector

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

Encoding Era Filtering

Restrict detection to specific encoding eras to reduce false positives:

from chardet import detect_all
from chardet.enums import EncodingEra

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

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

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

CLI

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

chardetect --minimal somefile.txt
# utf-8

# Pipe from stdin
cat somefile.txt | chardetect

What's New in 7.0

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

Documentation

Full documentation is available at chardet.readthedocs.io.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chardet-7.0.0rc4.tar.gz (468.3 kB view details)

Uploaded Source

Built Distributions

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

chardet-7.0.0rc4-py3-none-any.whl (392.3 kB view details)

Uploaded Python 3

chardet-7.0.0rc4-cp314-cp314-win_amd64.whl (506.2 kB view details)

Uploaded CPython 3.14Windows x86-64

chardet-7.0.0rc4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (537.9 kB view details)

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

chardet-7.0.0rc4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (535.7 kB view details)

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

chardet-7.0.0rc4-cp314-cp314-macosx_11_0_arm64.whl (514.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chardet-7.0.0rc4-cp314-cp314-macosx_10_15_x86_64.whl (521.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

chardet-7.0.0rc4-cp313-cp313-win_amd64.whl (506.6 kB view details)

Uploaded CPython 3.13Windows x86-64

chardet-7.0.0rc4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (537.9 kB view details)

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

chardet-7.0.0rc4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (534.9 kB view details)

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

chardet-7.0.0rc4-cp313-cp313-macosx_11_0_arm64.whl (514.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chardet-7.0.0rc4-cp313-cp313-macosx_10_13_x86_64.whl (521.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

chardet-7.0.0rc4-cp312-cp312-win_amd64.whl (506.7 kB view details)

Uploaded CPython 3.12Windows x86-64

chardet-7.0.0rc4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (538.5 kB view details)

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

chardet-7.0.0rc4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (535.2 kB view details)

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

chardet-7.0.0rc4-cp312-cp312-macosx_11_0_arm64.whl (514.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chardet-7.0.0rc4-cp312-cp312-macosx_10_13_x86_64.whl (521.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

chardet-7.0.0rc4-cp311-cp311-win_amd64.whl (506.5 kB view details)

Uploaded CPython 3.11Windows x86-64

chardet-7.0.0rc4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (536.2 kB view details)

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

chardet-7.0.0rc4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (534.1 kB view details)

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

chardet-7.0.0rc4-cp311-cp311-macosx_11_0_arm64.whl (514.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chardet-7.0.0rc4-cp311-cp311-macosx_10_9_x86_64.whl (520.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

chardet-7.0.0rc4-cp310-cp310-win_amd64.whl (506.6 kB view details)

Uploaded CPython 3.10Windows x86-64

chardet-7.0.0rc4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (537.9 kB view details)

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

chardet-7.0.0rc4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (535.9 kB view details)

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

chardet-7.0.0rc4-cp310-cp310-macosx_11_0_arm64.whl (515.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

chardet-7.0.0rc4-cp310-cp310-macosx_10_9_x86_64.whl (522.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file chardet-7.0.0rc4.tar.gz.

File metadata

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

File hashes

Hashes for chardet-7.0.0rc4.tar.gz
Algorithm Hash digest
SHA256 95dcd4c8648b689f685007f129c3809ba6f32dd9501ddf395245bf4fcde0c8ed
MD5 c6c4a98a9eb0acc8d44eff1401d72b99
BLAKE2b-256 c09b95e995541065ce61aa4b77ccb0d252ad35db064eddbedcc6974ceb56fd07

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-py3-none-any.whl.

File metadata

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

File hashes

Hashes for chardet-7.0.0rc4-py3-none-any.whl
Algorithm Hash digest
SHA256 e9641677fd474d71e665761a600aa1715ec71fee08411202bbcaf97c6552a80d
MD5 11a36143b716f585be0fbaa9fe4880b4
BLAKE2b-256 a747db731497d1f98f21c77cfe5164d123def48a7182ce8bc7570b18e497608f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for chardet-7.0.0rc4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aa6e4a381f50ede18e79615f10e879fd592894f7d08996b88fe42c954882078f
MD5 0a23b7704a1adfefe2a652db196818b4
BLAKE2b-256 7c6fa4ea3a19b9e8fdd8e03d3543d9a40c2011bc2bf6c305d059058e6aea59ac

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

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

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e9ac9d415003874e2d7c7133d3d075b0f9ca7187e911cf91a8a173a86d51bf0f
MD5 dcfee128f474dfe17652693354190cc3
BLAKE2b-256 3eb1f97f4b8e78ddaa7b661173bdb2c2e018bb4ffcb24e0ccc4e484387bd37ea

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

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

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f3f65d55f41d4f9f0a5ca1a93984f2dee3afe4af0f27cd401ad32aa9dde0a42
MD5 0f57c1320dce8bb389fa3eb4752033ac
BLAKE2b-256 4d94414d82c4389b953de01d7f211f7b63dc4fc217f0a43882df977e5e69cc84

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f22a7cec1d843fa2d4ec4863e1be746486ae7506ccc18d21b2b8ee6d93a1c7a2
MD5 3b3f54beacdd70b88df579495b9fadc9
BLAKE2b-256 fddd894c2b7a48517f4064fd33be6625050efb074ab57ce58b747b9aa0fd35de

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f337d0c420c105196014496b523732347934ec98db170f703c1fdc3338dd230
MD5 020c0972e907a64c11c5771104a93239
BLAKE2b-256 2b33a21c9dc42ae716049edcda577cc33a8168d0b76f1e3a8590a8f8e86296b0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for chardet-7.0.0rc4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4cfe89cc500a0c3f7b530a659e252d5bcf71412c84473c1933510b3a0483a9f6
MD5 f0cb95288e4b481f194414014d9e4566
BLAKE2b-256 8e9a2514f7a50c45d35b06e0a85cc6d95477b7431dfd755546996c6177bca723

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

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

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb5693aa64d60a81231167560ecc24b040344846f3ddd81f81491da164d807aa
MD5 9813b14ca91084991ac54eb9ea7bc12f
BLAKE2b-256 56b40d88de7218ada06fcdcda773b06910722de7d55a46fe57ac35d2c6a0ceb6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

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

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 496a4deec0c1c71c7b8647e5dcc3a00d64d4b295c48a60fe5edd42b3816b0a9f
MD5 ce5a63ccc0c094737b764b55e7b25998
BLAKE2b-256 9ef5703b8582f76b1d1039f3cf5f34e5ac4d7ac40a8589f21c63276714d45b6d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ee3dc66f7cbeb034758388f329236907429e1d4076a0a37345d5496be5e7ebb
MD5 e2d561e19ae1475821199d9b73e98a31
BLAKE2b-256 656b02b2166966a21296d530d9f36e59e0b885cfd98f9eebb1f912e4d5455aa6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 04cce62d8ca94794e596f26970daca14c9ae38d48ff1936333ffc7884de9e410
MD5 401005b832f69e888cd336fef5959f8a
BLAKE2b-256 85dfd6c5687babfe073d7f8e60f69a474b350a18768671cafdc287a8043638fc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for chardet-7.0.0rc4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dd1a0d20f887f9b782eb89ebdd70c1b1e6e683386fd465a478fb70e71b8a53eb
MD5 6008c9f06d525fdad72ed45d0e9d2b51
BLAKE2b-256 ed49a98a1980c5e7496b165eab69e67bdaafaeedacd91e44457b9a1cc16f4294

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

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

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 740dd2bfe97b4b48b51ef448cc54207f993773dd0a6e0fd60587b6c0b0cb3312
MD5 9ba04d34c9f97b210cde0d7401905676
BLAKE2b-256 668efeb55e48024a4c8dc5f69265f6c666503bbc488775476fc8c582cfe6f9c8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

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

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ca8ebf919d803d616eb69f1167d55c8cba20105c38637d3883e6eea799fe343
MD5 c9d2c0edfe076538454d603f7248dc9c
BLAKE2b-256 b0c58eacc43be31d29f41562eb62ec9875769b0b99e3683762b0e57f6ee0f673

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f55227bbb723c2da8f9b876d4085145131abb6ec72c05a9fced6ec570e44d235
MD5 6f058545bab13f092c761a9b289a1a6f
BLAKE2b-256 52c7eece48df2d26b4b77034a11e1fd2074f631eee4f25f3bb943f3de7aa55fc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 82c9e78233071c2a1827c955da499bb573c02799d91e50d0c3eeb418b1cac4b0
MD5 3fa85cf561f4c10ed2a8a8cfe605d8fd
BLAKE2b-256 eec2fb1f5ad655cf672804dae80c9d9f35556d35e0589311a358f4e96034c9b3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for chardet-7.0.0rc4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0a856fe27c5b7faef006e2813542d71f6921b7b56a175c7b1cd0755a28140900
MD5 1c852321a614f510133ca06ad27bb4f2
BLAKE2b-256 6831335feb5131dc368bdfbc961998658085bdc0e6b5ace7d2c4b07b2aae23a3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

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

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e742a41ce7c8fc81bbc978dedc2d7358c4b62e7b8b1c80a0de8c94fab6bf425e
MD5 f4c716ae393820c0c710d3ee91d484d9
BLAKE2b-256 5ca19d8a6f594b73a86f6a12b09588e9d75dbcaa2ea618aee9b7947597b15be4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

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

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c502059e99c635b4b912cf87431fd1992eeec371012b90e7e30eea9ccd799fc7
MD5 bee90362f0ec26b4e5e11f8baa7eecd4
BLAKE2b-256 15159b610a702705ee48827bdab24ea840eb32bedb6782108681c437f711a778

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b3a655f1e597a06328af041cbb48238ecaef3c47271f2f869581be73bf8dbb8
MD5 f400715e80b607c440abc67b8a5302c9
BLAKE2b-256 4c6ee497176f7b78632a0771576d9c443769ddf16a3b4da6a2a5298a1440070f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d49c98aeb7919ca2505446c67f5ab8cdfa9cb66c4e72686808e3c231ff61c9d6
MD5 d0383caa1d2f804c1012867979871a26
BLAKE2b-256 1b11ebcff5e2a5400369aba7131d0314cf9db03ac48f3c4760cae7112bd03069

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for chardet-7.0.0rc4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6be23220bd276108811267c2daa248218b41c85ac276d42765669c1b1a3609bc
MD5 c1408e10a67bf8d897e89f5578c6d01a
BLAKE2b-256 6c349d0db37d97796e2ef46f01fc5711a9bbc4de5e1de37dbd7d3402a3ede5e9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

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

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e67d4c955a531b7786d7b01a8e478c37b1868eb76a8dc9c51f8a65e0f40f529
MD5 2de33c142cf12397f200f6019e935c4a
BLAKE2b-256 8ea8c31f79cc34272cc2731c1a30a217429268df5d65be36aba417e86883cad8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

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

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24d9cac6af1d74fd804cd6d8e82137c04f96cc1dbce4891aea43dd1a88b01b60
MD5 e4cfa1270ca9aa63d1e3a5e85729df5b
BLAKE2b-256 8bb481abccf427eb9d171b7e0290d24d406abf627806ef3686ed8d73afb7eb6d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7c53b3801a69d7a82b90d350a7304256f1bff35ecf54de7867c14c4358c1f77
MD5 d2f04e99e8f2e2f24094000c7811841a
BLAKE2b-256 a48774b832978c05d0c598ce52ea2230419d35f8583c69972ce22b8f0892a838

See more details on using hashes here.

Provenance

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

Publisher: release.yml on chardet/chardet

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

File details

Details for the file chardet-7.0.0rc4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for chardet-7.0.0rc4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10e29a8529f8d4db461eeeec36e48c2ae70918d5c37a0908f060b9138c6ee228
MD5 6931acad22fde2d7e6e647f0794f18d7
BLAKE2b-256 ab002cc56d44c42a0520d5b6920aab4cc6921dc49f5272b6b49f11c3db610c85

See more details on using hashes here.

Provenance

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