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. 41x faster than chardet 6.0.0 and 7.5x faster than charset-normalizer. Language detection for every result. MIT licensed.

chardet 7.0 (mypyc) chardet 7.0 (pure) chardet 6.0.0 charset-normalizer
Accuracy (2,179 files) 96.8% 96.8% 94.5% 89.1%
Speed 494 files/s 336 files/s 12 files/s 66 files/s
Language detection 90.5% 90.5% 47.0% --
Peak memory 22.5 MiB 22.5 MiB 16.4 MiB 102.2 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

# 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
  • 41x faster than chardet 6.0.0 with mypyc (28x pure Python), 7.5x faster than charset-normalizer
  • 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.0.tar.gz (493.8 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.0-py3-none-any.whl (392.4 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14Windows x86-64

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

chardet-7.0.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (534.8 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

chardet-7.0.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (535.1 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: chardet-7.0.0.tar.gz
  • Upload date:
  • Size: 493.8 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.0.tar.gz
Algorithm Hash digest
SHA256 5272ea14c48cb5f38e87e698c641a7ea2a8b1db6c42ea729527fbe8bd621f39c
MD5 baeaaa0dbfd85d14d73f18e806bffb29
BLAKE2b-256 a320e1e92c8f05666debb7c0c18285646195ef9915e72127771962408609815e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.0.0-py3-none-any.whl
  • Upload date:
  • Size: 392.4 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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d5a8f8edda42b016352de4cdb36e1145e19a66ddd5ac42a1b2bbb6592f4d070c
MD5 d7368d422eb5f6e1331258627c921e73
BLAKE2b-256 4b898607111108b362ba444db6f054d1c1f2f28791428e7f177804c998efee2c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 505.9 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ebf9d2af092f2660b43a25b4043ab5d72f0714106edc580b41ea5a3d03b0760c
MD5 3ec260465cee71afb9f02aff568b8554
BLAKE2b-256 6cee87f528b78bbda1f7e360ae19c2050c05ac89acdebe9f5def496bd73359ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.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.0.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.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8aeb797bd40a75f620feb6f4ed3aaa48ea969b8f5ff537b23043a08efbf135fe
MD5 def734ff9203d8cff2912417fe85ac7c
BLAKE2b-256 aebcabd5539ae99b2e10c50ede3f398e0cd657ca52744aa1cb6cadd5bea17df4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89889ec2f64e49956d70e35c57e4d52bb7680616de8577beefef081edf9f7216
MD5 8e767cf72799d0d9b4bf55ad612f3857
BLAKE2b-256 ef13a5fd9e60ced4f4bd16f372f2b7dde02696858009a006b032f1b960053d3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8102637cb2695535f35f2f6a1df3edd5c0a3b63f3572d52a88a83f3d4a50e556
MD5 211785bbb7a3bf2139685a72748f9759
BLAKE2b-256 7ca375a91d7b3de6dc3df4426a0f6817595d6c9dab679b5727a55f8f0ea5ad1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8883e3fd31f8125952c3c4d8b3a0245f5095268706a43794f4431c74744e3cb8
MD5 335ed2e7dccdaa7cde5d406514ba2ba0
BLAKE2b-256 54748311899ecad99e0e07b1f76b1afb1ce8c464bd6955070b6ff37c6fdab51e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 506.4 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cc175fa09a813297a2db957ea71e7a5b708cf2cff4b8e2e7580e3ffd1940f1ad
MD5 d67027e984a97c98bd43e7a3f771aa5f
BLAKE2b-256 fb5ed65da9bac1eb1648125fd1e68a3faab5c41931659820c2f690f35d49cad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.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.0.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.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8657ef6a394b64e7dc36c7a5bfcdc653cb99909a0292a83707db0e0da84b34a3
MD5 9001456385e1a077f55745e80a45e116
BLAKE2b-256 46d88ba7e01ea462fd20f969cf059cddc45765d8f3020b006b408c9603c1c5d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e74e95c1284c374e05aa061f5629ba3f13cb82e3040395447b4de9659b155ff
MD5 3ba6b1955d678af88774ed6e4df7997f
BLAKE2b-256 1472498a2d3922fc1ccff3bda47c4589fa3ca4c52fd4a85e527dbd5a4164dd2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23ceffa098b95da7ffa88aaf62c45e316438f2c7ea9e0c63cf42a5c0361fa505
MD5 3658f0f05e01b14a2bdf53bd2b61cdf4
BLAKE2b-256 782161558595f048445f8231541e28f907491cd0f267774dc9ee8a34bbc1185d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7d8bf5429bbba5d3c3709af873753e00d03352389177e65b2d00732ef0a28619
MD5 495d0ac45c7a06e074dc882069aafea8
BLAKE2b-256 8b433ba3731d7c35ff5f1586ce7879e317fde94a48a8d75bf7a8e0ac5e42ddf4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 506.5 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8bfe685e10855f7e8a89a18830088db4988768df5935f5febd8dedf933b3fbd4
MD5 2a564b2c0c415768387265b33927e913
BLAKE2b-256 4c510b2d396782306bc8c1d18edce1492ea97b37c3e8eae601a5f544d1a9b67e

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.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.0.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.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f71dcd89e24f77439cdaf1398b79adcb21b7e8f42b3e92b359dfba4271212c39
MD5 ea37609d48c696c5c1ef570f9d9842f4
BLAKE2b-256 62d07ffba4cf8f9a1b43ece1c48081b8de07995b75ec71fcff35cf380093d050

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25682c2655978e247b45dcc9eccce497599886745aaee1205a23d43cb5aa93f3
MD5 c3938ee4a5b07efdbe35eaef40da0d83
BLAKE2b-256 b12ede4b6e8a4f257442e473e60e5e18a21c9f83bf545189d481a1046dc7fec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f81d9b6caa13e0c9db313f6f6bcce00a6f6cbfa786abfbdbf222924ebe4d13f1
MD5 8aae8901501eb327c795d98466de7f51
BLAKE2b-256 6ec4926abd191032b7e8585ee4db6daa9ff7810b71e607c750295330a5e67b6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4108c8dde681107d73f2b2e3fb74c3a521eed97024547ce4b7b191da5fd6b2ac
MD5 bf0f0fe525414b0bdb6864b2d05b0cf4
BLAKE2b-256 7397ad1980a7ff8ba92ef29111f993a71ad7fdff70533f679748d155e4f07994

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 506.2 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6751ef77c6826b464615a25adff8887a64a061a9a4c61fb61c2d1bb4d90a5630
MD5 a204286ded4499d89dd4722e2d2dc5bd
BLAKE2b-256 47d704bab6410675d58411e65b163a772398b726788c6eae770e7f21d3d1fd01

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.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.0.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.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ada0fada6199007f9c46e7a43f8563e0c843d98e8a491f15e0209198d1912f85
MD5 e95c0f706e163f52c96c583103931358
BLAKE2b-256 986110cb2332999fb676c4c043538af798b40dea36e931f2f1f06d757569396f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79f8a53a25596c21a1f6df75cc948ab83bf443978cdad64de4595484a426716b
MD5 cde19978fcaa5f2070d0c5626d253c34
BLAKE2b-256 d529b4a803b5ad8200b05251d09bfad7163d193387b03457d7e157b6ff993635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11bb4541efc6b82ca7809d8044fed19ee3c8d0a0e2632dfe9f9e0828bda48883
MD5 0bd4eda3bb59d112db4bf1249092a8b8
BLAKE2b-256 03e5d986cb5d7de4cf4906d8799d594991db971b4ac8933eb8d48dc3ff89ef90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 884cbd66256e7d82b885d1c3ed4d8c7b0285ea329f41a475f4d13d17b6047f44
MD5 9fa11158ee9c0a872bd418e22c03e6d7
BLAKE2b-256 2e2678bceb5b6811ef6b8f0cdf343a7e27a4a7efaceea71aebcc1366b660d032

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 506.4 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 432c4c063ca184eeb3da7d2803b7f3681a7ae352b538d8c6ef86d15eab1448a1
MD5 e4da11a066d172275294f661b2eb73eb
BLAKE2b-256 6fd67cebb2188d6577f5392c9d843cfcbeb270d81dbd82ad77bf801615ec3957

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.0.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.0.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.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49966634d83fc7ebc305a31cf931fc398118805d838b3c123b2ddb78d5ace9f3
MD5 21d4c81ccd9ec24c186af9a52a3f9d27
BLAKE2b-256 de79fb8555228fcd012abeb98810ae57056a90c1dd061a8000d85035fee7e02b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23a7c9aa3674f62721d6c34a3666d8c28aff0ec5908790f3985a73b10b355be4
MD5 b8b51dfe2774964445d4c410ba34e8ea
BLAKE2b-256 7e4692117450bd18eb7b779f13e433d20cf3c0c19c266f1970cd3ccbe96ca76e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daef86877738cb7d310bc8d74ca73e98c543d07c5d2e0b957779591d38796651
MD5 3652d040bf2eca59eb65cc2b5a061d34
BLAKE2b-256 a0d834ec4737783379e3dade793b4ca5fce620c61144ea5ad907d42df6b2d40d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c174e06e0be69c84bcec4fb21c416cc6c9858f47c814b8c632d55c7a8739263
MD5 c8843658e461612785b0b9bf4aba330d
BLAKE2b-256 3667d40a3217a0bbd5fcda7bcd099205946165c321b02ad46cf6cdad88dcb42d

See more details on using hashes here.

Provenance

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