Skip to main content

Universal character encoding detector

Project description

chardet

Universal character encoding detector.

License: MIT Documentation codecov

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

Why chardet 7.0?

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

chardet 7.1.0 (mypyc) chardet 7.1.0 (pure) chardet 6.0.0 charset-normalizer
Accuracy (2,510 files) 98.2% 98.2% 88.3% 84.2%
Speed 533 files/s 372 files/s 12 files/s 129 files/s
Language detection 95.2% 95.2% 40.0% 59.0%
Peak memory 25.9 MiB 25.9 MiB 29.5 MiB 101.3 MiB
Streaming detection yes yes yes no
Encoding era filtering yes yes no no
Supported encodings 99 99 84 99
License MIT MIT LGPL MIT

Installation

pip install chardet

Quick Start

import chardet

chardet.detect(b"Hello, world!")
# {'encoding': 'ascii', '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-JP', '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[:4]:
    print(r["encoding"], round(r["confidence"], 2))
# Windows-1252 0.44
# iso8859-15 0.44
# ISO-8859-1 0.44
# MacRoman 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
# MacCyrillic 0.47
# KZ1048 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

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 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
  • 42x faster than chardet 6.0.0 with mypyc (34x pure Python), 4.2x faster than charset-normalizer
  • 98.2% accuracy — +10.0pp vs chardet 6.0.0, +14.0pp vs charset-normalizer
  • Language detection — 95.2% accuracy across 49 languages, returned with every result
  • 99 encodings — full coverage including EBCDIC, Mac, DOS, and Baltic/Central European families
  • EncodingEra filtering — scope detection to modern web encodings, legacy ISO/Mac/DOS, mainframe, or all
  • Optional mypyc compilation — 1.42x additional speedup on CPython
  • Thread-safedetect() and detect_all() are safe to call concurrently; scales on free-threaded Python
  • Same APIdetect(), detect_all(), UniversalDetector, and the chardetect CLI all work as before

Documentation

Full documentation is available at chardet.readthedocs.io.

License

MIT

Project details


Download files

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

Source Distribution

chardet-7.2.0.tar.gz (516.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.2.0-py3-none-any.whl (415.0 kB view details)

Uploaded Python 3

chardet-7.2.0-cp314-cp314-win_amd64.whl (530.8 kB view details)

Uploaded CPython 3.14Windows x86-64

chardet-7.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (564.1 kB view details)

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

chardet-7.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (561.4 kB view details)

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

chardet-7.2.0-cp314-cp314-macosx_11_0_arm64.whl (539.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chardet-7.2.0-cp314-cp314-macosx_10_15_x86_64.whl (546.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

chardet-7.2.0-cp313-cp313-win_amd64.whl (531.0 kB view details)

Uploaded CPython 3.13Windows x86-64

chardet-7.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (564.2 kB view details)

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

chardet-7.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (560.6 kB view details)

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

chardet-7.2.0-cp313-cp313-macosx_11_0_arm64.whl (539.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chardet-7.2.0-cp313-cp313-macosx_10_13_x86_64.whl (547.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

chardet-7.2.0-cp312-cp312-win_amd64.whl (531.2 kB view details)

Uploaded CPython 3.12Windows x86-64

chardet-7.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (564.6 kB view details)

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

chardet-7.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (561.0 kB view details)

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

chardet-7.2.0-cp312-cp312-macosx_11_0_arm64.whl (539.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chardet-7.2.0-cp312-cp312-macosx_10_13_x86_64.whl (547.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

chardet-7.2.0-cp311-cp311-win_amd64.whl (530.9 kB view details)

Uploaded CPython 3.11Windows x86-64

chardet-7.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (562.6 kB view details)

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

chardet-7.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (560.0 kB view details)

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

chardet-7.2.0-cp311-cp311-macosx_11_0_arm64.whl (539.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chardet-7.2.0-cp311-cp311-macosx_10_9_x86_64.whl (545.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

chardet-7.2.0-cp310-cp310-win_amd64.whl (531.2 kB view details)

Uploaded CPython 3.10Windows x86-64

chardet-7.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (564.5 kB view details)

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

chardet-7.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (561.5 kB view details)

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

chardet-7.2.0-cp310-cp310-macosx_11_0_arm64.whl (540.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

chardet-7.2.0-cp310-cp310-macosx_10_9_x86_64.whl (547.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for chardet-7.2.0.tar.gz
Algorithm Hash digest
SHA256 4ef7292b1342ea805c32cce58a45db204f59d080ed311d6cdaa7ca747fcc0cd5
MD5 864003af444685bd6144744e3d78dca4
BLAKE2b-256 1d947af830a4c63df020644aa99d76147d003a1463f255d0a054958978be5a8a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.2.0-py3-none-any.whl
  • Upload date:
  • Size: 415.0 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.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f8ea866b9fbd8df5f19032d765a4d81dcbf6194a3c7388b44d378d02c9784170
MD5 515bfd5b5bdff4f481f6c137aa341e86
BLAKE2b-256 c24797786f40be59ff5ff10ec5ebcb1ef0ad28dd915717cb210cee89ae7a83a6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 530.8 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.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7077dc2435b95163db4206aa71ebc329da5bcddb8bfce69440ff8ecf637400bf
MD5 721ae6eb217fb64f06b102beac126932
BLAKE2b-256 f9c0773b4f0557fdfd6af538e166488824b99a996db558f1c930b1ca27b4775f

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.2.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.2.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.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b56152a17d19249388ae99a85a31c35bb8d5b421b90581226de34b2b316be806
MD5 ecaca818a4e95285f413bee40749b0a4
BLAKE2b-256 cd09aab35a20545b2d70811bfdc8b55f70161856d9e264ab8ba5259fc09af355

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1f081a0f3fce8e1c8f5d6b3691a4960aacc33f213f77ef8b89a6b5f0af4cadf
MD5 6b34eea9351315b165677f64d49296f5
BLAKE2b-256 694efd878a7dc50fe0ece1b3f8baa0c7dcbfc25503d72199200a6f510684549e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13a94d2c0dace263b8dcb61593c165d5749d60e2e2314231938eb87755c9de9f
MD5 a200beddfa51955b2432c85cd2d8fad2
BLAKE2b-256 bd306d216eb2d928ee8db2f30ed7c1451cc7e1a68aa80c551ee9b8ff967e8a38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 719c572c4751c201f42134bd2aa0826928ed5113d29dfa482338c1a89bb925fa
MD5 cf37e0cef19a4d9f98efddaded81a76c
BLAKE2b-256 f07f0157f588bf8e40e75cc5ca5b3b1cf19cf27b90ea177e3ccd56b73a8adab0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 531.0 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.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc5d034faa5b4a2a3af54e24881b2caef9b41fea00a4dddccf97a1e8ec51a213
MD5 af1f3abd6ba5452300f534fad1b7178b
BLAKE2b-256 ddbe4fc8c10513cdb9421e731a0a0752973bf2477dad29c490c1dbab7cd0e8db

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.2.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.2.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.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23e6acd1a58050d7c2aeecca700c0cf27b5ec4f6153a82c3b51c31b94c6ebfad
MD5 fd3f501b5125e42f93f42c2ec60913c3
BLAKE2b-256 e619f474429b3c6f829b0eeaaeb964c06737c7dc148c97822937b1a2def55b40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cad2cd094dfb14cfcb86b0a77568d23375b0005ea0144a726910df6f5c8a46b8
MD5 d8f2aa84ffd18729a500cefdbe30ceba
BLAKE2b-256 4d488886c21375ff29493bad014fd2b258bb686ac635968b34343e94f8d38745

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 427d091994456cc16dbd1e20ae73fee068b9a31f3c90b75072f722d5dbbf156f
MD5 69500827924a569138ef0fc40a3bd1c7
BLAKE2b-256 83f15ef3b6f87e67d73049c632c931baa554364a3826a3522684c4b494e458f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6cdbe9404534cda0d28f172e91fa50db7655ae6262d093b0337a5aa47a47a5f6
MD5 dcf6f49789b942eb739d48f8bb043567
BLAKE2b-256 653e456ceb2f562dc7969ffaec1e989d9315ad82a023d62a27703a5a5ffdb986

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 531.2 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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e8853c71ea1261bcc1b8f8b171acb7c272a5cfd06b57729c460241ee38705049
MD5 5860798f12b69e9332e86a1791d5e133
BLAKE2b-256 ae6b045858a8b6a54777e64ff4880058018cc05e547e49808f84f7a41a45615a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.2.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.2.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.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f6af0fa005b9488c8fbf8fec2ad7023531970320901d6334c50844ccca9b117
MD5 09cab580f21594365148ca47f2a3a1ee
BLAKE2b-256 195e4ddbef974a1036416431ef6ceb13dae8c5ab2193a301f2b58c5348855f1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddd03a67fca8c91287f8718dfbe3f94c2c1aa1fd3a82433b693f5b868dedf319
MD5 bd2abd39734761b577ad642e6e0fa68b
BLAKE2b-256 9eb1c1990fcafa601fcebe9308ae23026906f1e04b53b53ed38e6a81499acd30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 195c54d8f04a7a9c321cb7cebececa35b1c818c7aa7c195086bae10fcbb3391f
MD5 341963070a5e78abce25f41baa21135b
BLAKE2b-256 38fd3effc8151d19b6ced8d1de427df5a039b1cce4cef79a3ac6f3c1d1135502

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c4604344380a6f9b982c28855c1edfd23a45a2c9142b9a34bc0c08986049f398
MD5 7d072536a4c2739467cf5165d309c8c2
BLAKE2b-256 04f25b4bfc3c93458c2d618d71f79e34def05552f178b4d452555a8333696f1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 530.9 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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d298762002a6b6e81dbcc81ade9e0882e579e968f4801daf4d8ffd6a31b99552
MD5 09d076f3ac1d044db3191795b969d4b3
BLAKE2b-256 36f9b757ade39ad981f89e3607abc75827729bf408359ddd31073e7a85cb8aeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.2.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.2.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.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 347ed77bb5eed8929fae7482671690a15c731d66808f1ff0ce7d22224ca7ec79
MD5 752cb0ff49375c374460c1c469ba0d92
BLAKE2b-256 1ecc350b4ac6916291624093ea07ac186733e490bd33948d205d07848dbd51ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4c51a3d8aa3c162be0495404b39bb1c137b44a634c1f46e2909e2c6a60349c00
MD5 8602bdb701dd297cee2fb90d50851a8b
BLAKE2b-256 71518eb14c4b5308225889eb4bdd9499a3d7cab1a77a82e1bcc1ad0ad22cb3a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa14cc0e7d2142dd313524b3a339e15cbd8b7a8a7e11a560686e0b6f58038ec9
MD5 f7b2f83f04c9ccc46f7328869ff97180
BLAKE2b-256 0db4c3d87a7aa5ee1c71fff91a503ae1a0c3bc3b756e646948f6bfdfd2c8c873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8685b331c4896e9135bd748387f713dd53c019475ae1b8238b8f59be1668acd
MD5 e7107e9c482b2a812e3c96193f357c1c
BLAKE2b-256 88633ba1b7828340ac4b4761df5454abd0c48dd620eb4f12a5106c3390539711

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for chardet-7.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dfcf826f413be2d94605ecb2089f29e189cf6ed9baa30d9b2c8868da2e142398
MD5 996958646a20deb3226423f6bc5b7544
BLAKE2b-256 d3c443eebdfa8a76ea00d6cad55ae0d07be455a86d3d9b9bb8769f15c8a27d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.2.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.2.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.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8190584663b8c051db28be5174d1c5774d7b7a5112e47152c02fd50bdf6405ad
MD5 ba2a0a6ddbccd072b9b8ddf6f4355931
BLAKE2b-256 b8c23c62771e0b62feae157ffc99641a2b47a9dbeccfd0ccc455dd6af4b62278

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce80e8b62bb88135d36b9d4b95a6d9624ea862090bfd0228f9fee4a6aafaffc8
MD5 03745eef63e7af1f4cb352f915eb68f7
BLAKE2b-256 ec113773136276ba99974b8fed89b792dabe6ee5ec361726b9bd5558dcbb3849

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8b4c05733a517a2f53beb8d740cd6c5a1f4387c3dcbeb78380b848498fee8a6
MD5 d5ffbc72b9fc2a08d8745b5c4bc9f428
BLAKE2b-256 f5fc1ab28e7141f6d3281ab6cc91e3e8710dbf52087f07b9929e9c14573b549e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 556d6f81bd4131f7b2d4aa535f3061cd381853d4db7ea5c0a15dd5f1a3f39b66
MD5 ce94c931561351bc7f25a0ad779c2528
BLAKE2b-256 2343ecfd2d5bf0a9c8be18c797b66d60679e72ec7d1d90aeff43c16f7d7eb221

See more details on using hashes here.

Provenance

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