Skip to main content

Universal character encoding detector

Project description

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.

Why chardet 7?

98.1% accuracy on 2,521 test files. 50x faster than chardet 6.0.0 and 1.6x faster than charset-normalizer. Language detection for every result. MIME type detection for binary files. 0BSD licensed.

chardet 7.3.0 (mypyc) chardet 6.0.0 charset-normalizer 3.4.6
Accuracy (2,521 files) 98.1% 88.2% 85.4%
Speed 582 files/s 12 files/s 373 files/s
Language detection 95.2% 40.0% 59.3%
Peak memory 25.9 MiB 29.5 MiB 101.3 MiB
Streaming detection yes yes no
Encoding era filtering yes no no
Encoding filters yes no no
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"Hello, world!")
# {'encoding': 'ascii', 'confidence': 1.0, 'language': 'en', 'mime_type': 'text/plain'}

# 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', 'mime_type': 'text/plain'}

# Japanese EUC-JP
chardet.detect("これは日本語のテストです。文字コードの検出を行います。".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.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 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
  • 50x faster than chardet 6.0.0 with mypyc, 1.6x faster than charset-normalizer
  • 98.1% accuracy — +9.9pp vs chardet 6.0.0, +12.7pp vs charset-normalizer
  • Language detection — 95.2% 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 filtersinclude_encodings and exclude_encodings parameters to restrict or exclude specific encodings from the candidate set
  • 99 encodings — full coverage including EBCDIC, Mac, DOS, and Baltic/Central European families
  • Optional mypyc compilation — 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

0BSD

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.3.0.tar.gz (554.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.3.0-py3-none-any.whl (420.0 kB view details)

Uploaded Python 3

chardet-7.3.0-cp314-cp314-win_amd64.whl (611.0 kB view details)

Uploaded CPython 3.14Windows x86-64

chardet-7.3.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (648.7 kB view details)

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

chardet-7.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (653.4 kB view details)

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

chardet-7.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (647.0 kB view details)

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

chardet-7.3.0-cp314-cp314-macosx_11_0_arm64.whl (623.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chardet-7.3.0-cp314-cp314-macosx_10_15_x86_64.whl (637.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

chardet-7.3.0-cp313-cp313-win_amd64.whl (609.1 kB view details)

Uploaded CPython 3.13Windows x86-64

chardet-7.3.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (648.0 kB view details)

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

chardet-7.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (652.9 kB view details)

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

chardet-7.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (644.8 kB view details)

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

chardet-7.3.0-cp313-cp313-macosx_11_0_arm64.whl (623.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chardet-7.3.0-cp313-cp313-macosx_10_13_x86_64.whl (638.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

chardet-7.3.0-cp312-cp312-win_amd64.whl (609.1 kB view details)

Uploaded CPython 3.12Windows x86-64

chardet-7.3.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (648.4 kB view details)

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

chardet-7.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (653.6 kB view details)

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

chardet-7.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (645.4 kB view details)

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

chardet-7.3.0-cp312-cp312-macosx_11_0_arm64.whl (623.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chardet-7.3.0-cp312-cp312-macosx_10_13_x86_64.whl (639.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

chardet-7.3.0-cp311-cp311-win_amd64.whl (610.3 kB view details)

Uploaded CPython 3.11Windows x86-64

chardet-7.3.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (645.0 kB view details)

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

chardet-7.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (649.1 kB view details)

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

chardet-7.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (643.0 kB view details)

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

chardet-7.3.0-cp311-cp311-macosx_11_0_arm64.whl (622.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chardet-7.3.0-cp311-cp311-macosx_10_9_x86_64.whl (635.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

chardet-7.3.0-cp310-cp310-win_amd64.whl (610.5 kB view details)

Uploaded CPython 3.10Windows x86-64

chardet-7.3.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (649.6 kB view details)

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

chardet-7.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (652.1 kB view details)

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

chardet-7.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (646.0 kB view details)

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

chardet-7.3.0-cp310-cp310-macosx_11_0_arm64.whl (625.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

chardet-7.3.0-cp310-cp310-macosx_10_9_x86_64.whl (638.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: chardet-7.3.0.tar.gz
  • Upload date:
  • Size: 554.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.3.0.tar.gz
Algorithm Hash digest
SHA256 e6bf602bb8a070524a19bac1cff2a10d62c71b09606f066251282870fa1466e5
MD5 9352e223375d2b82da54972d6235f9e1
BLAKE2b-256 3eaf8d6ad988a6a4b9830c4e39e4c2e390e3037465b76a5e32e92273df27a973

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.3.0-py3-none-any.whl
  • Upload date:
  • Size: 420.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.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dc4726af6ee00ee386293c34d86ba1fe18e0bd70a74612f1486da217d6a01249
MD5 db2b2c1d2c03d1055f93377e90c4e02b
BLAKE2b-256 a685e37beeb6abd6e64d79e624cb66855c95d919b55ca0f61b81d9e8e288183d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 611.0 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.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aab48b166f8aa8b086c93147ed6427376b8db2d783aff3f787c1c0819f6486bb
MD5 313fc0c180130056bd7122138f093b6d
BLAKE2b-256 76cf29c1abaa6ee970a2d655232468ae81257ae8eba8133cc68aef42d6465794

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 328a79efb197d6e9460ce33ebb8002a0bf85faa123d56aa1f75c21696ee70070
MD5 e8c34f1ce94f16818e5fe1e9f052f6e8
BLAKE2b-256 e9ec7895eb868204ff55b5a2e0b96afa153fc34428cb59eec9d41c577242b8f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.3.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.3.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.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80139a006a598e2db83fe6eaf7ac29c2a30cc5d10f255a89a9c6b9c04f81d67f
MD5 d87591c2f4a17971b40ef7840691424d
BLAKE2b-256 7036217c0f370fa114ca42f44a4febd4b809a94fbfcc3e85e7bbf78a4227ba18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 920b91e9436c4d546862143313f48d4e6e0dd8510114ae0c5b194ff8c878a6c8
MD5 1f7a7a4391f69d5f1ced563c4b9438c2
BLAKE2b-256 f474017aeae27faa2d0763b1eed434b63425b515fcc4e5dded7608f0ad5bad65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4ea1f94f17fce29600e1661f773048ee9ed90a9300f1226018987f7d5961019
MD5 3092c42cfd371726972a1fb72fbbdaf1
BLAKE2b-256 3a888f56b482570247810bb43c55fed96ed10057d75e4fa5a01363ac8f9c2ae1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8267de33ade8a496cb441eb86dd08c803043870a66b4f55aa44c02e1dbdbf93e
MD5 6af613ae198b44e6304a255231712932
BLAKE2b-256 476bca20c180d22ad7b7918dc0796969765087872ccf8ac70c422dd09d89dcf2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 609.1 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.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 340f4eccafa17cfc5a90af1fb8558dc791156f815f8d800d8ac2b1b9fb2b8103
MD5 4298613ad0b5f040f45907ab6b7a8c0a
BLAKE2b-256 a26b2ac79f482dc59ea6ca2205830396ee23efd767db9a757394b7cf486ff00a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 58388f412a76d1449c6ce4631edbd1b0087385ff00b6fb1f521879d8e8d99484
MD5 2c0abacc277cf6cc95ed2c7cb60668f2
BLAKE2b-256 177cab2a41aba350be50249a8da44ee3872fb7547f78e873f1bb840c480ba0d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.3.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.3.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.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 622206fdb0d274766559fa172e2d680d58cc5fc6a67015c21c36fec500e7bd50
MD5 45ad7bcad26fc3a8500f5b900998ef26
BLAKE2b-256 d0c18f69e69303554fb3a5ada668683690d68623dcfb1eb52067cce85c91012a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 963e6cac79e3a4fc51c8517b8df03b3467550dd00d53e775059dce6e2fc0d0ca
MD5 4c3ea1f812922cae4e2fdd374f99dca5
BLAKE2b-256 3ef08c1aac8a8f046aa7d0b8e2aea5aaa00ac9725df74e2a1ccf707eb7913141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23d264962f680deec691308cc753685b4c5a69798a26e00ce4f4cf96d2e43fcb
MD5 f9c6bc11fd17104f2c32bf9a57825d02
BLAKE2b-256 dccadf314f70a6ed83394ac31eb835d024c04c9b46f6c2fe5d260fc7287058c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 51a0ad2031bd10d24357d7e52de68abe29efb62b7aedf1bd9d1c593fd438cec5
MD5 f3a231cff4206a0ded72f77a54f5ed9c
BLAKE2b-256 542fca2f6d868e450eb37c8b91903f6741024caa2c884418e6a26c96df34751d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 609.1 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.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5276bc68736cf6d530ca2dc4ea1c2101d2b50015b09d48242615cc3818623574
MD5 a9fcd249c2e68f37f8ef5a58fefb03b8
BLAKE2b-256 d497298ae0f18434f231e9be5858d7cd118de899c78db3d9fb787dd97d00738f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7f3758c122aebb411eac37452c5774c56a5500147e1c24af0d460cb0d748fb48
MD5 a295473ba8c4ceb5793ad4cb707ae215
BLAKE2b-256 87037633eaa7bf5426691809480af963c2b3eb3170623381bfd489897ec6e6ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.3.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.3.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.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e912948f27c0124da8ce8fcd5ed8fe3b5e06fe8c0ecb66dd95180edf1122a6c
MD5 1e96565c650a386e73bb13a35d428f28
BLAKE2b-256 dac712dbe1cf53143de0008e562408533deb610c2bdc868edc820486e9d5264f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ccec08ee572dfd7a9486835ceba06ef88fa3e15deb1b76130b5ba6012fbb0c0
MD5 f39657657372a745e4cb250817acb863
BLAKE2b-256 df0cde630f3ae2671e205f89e32b74a5da4f4ab6747b444cd8a694d9b2f2b8a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ed513fb0b35ebf663bd4f8be2d61af701202e98f77e6d8301d1a2c7d0f2985d
MD5 31d2a06e520ad436cc39e29c470a8696
BLAKE2b-256 47b9f505898ae69b6de98aa1dab56bd52cc5d3fda7999a9d313515c9fdb255d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 04ef4b65c18afb298ac7c1326fbd83e1524250ceb7e61df67115a4a48e9e8e0e
MD5 352716cc5d83754c2166b9e7f6e9ba93
BLAKE2b-256 990b08370f00aca62c516869417fb984bc9d8652da0d62ca3596e924019bd031

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 610.3 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.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ff4d81f5561f2382343dc922e533c017d52bc55125e50551c18034fffcdbd0cb
MD5 e82e4113a0790dd12e6c89d71bfa0cbb
BLAKE2b-256 c8a4067808ec52282aa4c4a5e2a87b5afb3ed5270b7ebb81c969c75169bc8947

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7193bcca96ffd87a7d6695056d3e875707b25eda588957756dd5c95d125fcb89
MD5 e79ef292e6b27365df3bd4aafc8707fb
BLAKE2b-256 3441ca801a77a01aafa119d6af0ec20165226c4d6d75179b364d04aeab01171a

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.3.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.3.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.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90a6249a455b8ecdb207a9f5a5eb46e1c21f2173eacb5e1603def61ed4784303
MD5 a62232dc67147fff78bfaa0303b6c322
BLAKE2b-256 96919cb4259a08689fd0d7f0552e8f78bead89a1778429a478e9857cc0ccfb43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fef009cdb37225b1f6259ddc18c3017cd1edddd85d57823f1c46c53503da41a1
MD5 afbd967701b97d5e48412222ec133abc
BLAKE2b-256 f7ea7d42eff9980490fe4c6e2f0025b4cb1beeca7d89f7f8463bd15151e99b63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 811029a7cf397ed32441aa134475f7047826fba496047a6afd7bba1da7fc4ab7
MD5 4ae76f0e4e5d603533ea1e8d084b2d15
BLAKE2b-256 6b024b814ab51e5b3981ea1ded8bd97dee878e64458f7e954597692dc37c00ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b58eb6d6dea67fc3b578dd956dd6e92aafea383aa559ccea55265554ff062a3
MD5 11ab7092d64c28cd9370da7cce9d2842
BLAKE2b-256 ef97eaf0d2b7c62d4de86e0c95adb30d9d56febe1bf78e57d62f198ece85b236

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: chardet-7.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 610.5 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.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5dbfbaef7de55aee008de9b886a63e60e916016507ed7845c9b7bfe1357f4f54
MD5 27465606e9b087e92193e81c38404792
BLAKE2b-256 8449c0754542e67959205cb19167e973bb52d8c3b357289df7c85733da2f4afd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c88c464b5b65859984386c698b43ccfe88e96814f80433c2d5fdf40dc4b68bcb
MD5 771d55de0f3f1b9d6dcd762edfc89958
BLAKE2b-256 0ca6c255eaf255e4e681ab8610cf6036505863aad88f41e7f01abd98066a8831

See more details on using hashes here.

Provenance

The following attestation bundles were made for chardet-7.3.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.3.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.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b69fd9685a7aada6e236a50bb93b51bd4fc08d29d1029492e64823a69c015f46
MD5 530765c0bd94fada9402835c0d1fec03
BLAKE2b-256 77d18be99162c353a4908bfb16e6435075c53e1f83d3b6853aeba9e2a8f73743

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c296044993dab62281176c07d0ca2b6e865044e38944d3f6e4ad661e222f4db8
MD5 0c3359f57c77d1232b50b1fe495d6c11
BLAKE2b-256 17995393aa9be32bcd923bbbe2968521d191953d858fb556d61b9c1f148d3d26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e464c2ec0be69ab6d5792c1acf354001b34e201efa2bee60ff4f7ded0e23f6a8
MD5 b58665287461513bff68fcd7c961dedd
BLAKE2b-256 de264eebcaed4959e4fc85b577afa79d0a562291dccd2caa645183792435506d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for chardet-7.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 015f9d697f796a5bb0ac4d19e0108fd6cc84d141521089d0385d2a00c5f5d74e
MD5 425aa29140608616ea47a128525f459e
BLAKE2b-256 f70ae926b5b29ff5a822e03279bcc2ab9a216f08111d409e3e6ef51954b23570

See more details on using hashes here.

Provenance

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