Skip to main content

The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.

Project description

Charset Detection, for Everyone 👋

The Real First Universal Charset Detector
Download Count Total

A library that helps you read text from an unknown charset encoding.
Motivated by chardet, I'm trying to resolve the issue by taking a new approach. All IANA character set names for which the Python core library provides codecs are supported.

>>>>> 👉 Try Me Online Now, Then Adopt Me 👈 <<<<<

This project offers you an alternative to Universal Charset Encoding Detector, also known as Chardet.

Feature Chardet Charset Normalizer cChardet
Fast


Universal**
Reliable without distinguishable standards
Reliable with distinguishable standards
License LGPL-2.1
restrictive
MIT MPL-1.1
restrictive
Native Python
Detect spoken language N/A
UnicodeDecodeError Safety
Whl Size 193.6 kB 39.5 kB ~200 kB
Supported Encoding 33 :tada: 93 40

Reading Normalized TextCat Reading Text

** : They are clearly using specific code for a specific encoding even if covering most of used one
Did you got there because of the logs? See https://charset-normalizer.readthedocs.io/en/latest/user/miscellaneous.html

⭐ Your support

Fork, test-it, star-it, submit your ideas! We do listen.

⚡ Performance

This package offer better performance than its counterpart Chardet. Here are some numbers.

Package Accuracy Mean per file (ms) File per sec (est)
chardet 86 % 200 ms 5 file/sec
charset-normalizer 98 % 10 ms 100 file/sec
Package 99th percentile 95th percentile 50th percentile
chardet 1200 ms 287 ms 23 ms
charset-normalizer 100 ms 50 ms 5 ms

Chardet's performance on larger file (1MB+) are very poor. Expect huge difference on large payload.

Stats are generated using 400+ files using default parameters. More details on used files, see GHA workflows. And yes, these results might change at any time. The dataset can be updated to include more files. The actual delays heavily depends on your CPU capabilities. The factors should remain the same. Keep in mind that the stats are generous and that Chardet accuracy vs our is measured using Chardet initial capability (eg. Supported Encoding) Challenge-them if you want.

✨ Installation

Using PyPi for latest stable

pip install charset-normalizer -U

🚀 Basic Usage

CLI

This package comes with a CLI.

usage: normalizer [-h] [-v] [-a] [-n] [-m] [-r] [-f] [-t THRESHOLD]
                  file [file ...]

The Real First Universal Charset Detector. Discover originating encoding used
on text file. Normalize text to unicode.

positional arguments:
  files                 File(s) to be analysed

optional arguments:
  -h, --help            show this help message and exit
  -v, --verbose         Display complementary information about file if any.
                        Stdout will contain logs about the detection process.
  -a, --with-alternative
                        Output complementary possibilities if any. Top-level
                        JSON WILL be a list.
  -n, --normalize       Permit to normalize input file. If not set, program
                        does not write anything.
  -m, --minimal         Only output the charset detected to STDOUT. Disabling
                        JSON output.
  -r, --replace         Replace file when trying to normalize it instead of
                        creating a new one.
  -f, --force           Replace file without asking if you are sure, use this
                        flag with caution.
  -t THRESHOLD, --threshold THRESHOLD
                        Define a custom maximum amount of chaos allowed in
                        decoded content. 0. <= chaos <= 1.
  --version             Show version information and exit.
normalizer ./data/sample.1.fr.srt

:tada: Since version 1.4.0 the CLI produce easily usable stdout result in JSON format.

{
    "path": "/home/default/projects/charset_normalizer/data/sample.1.fr.srt",
    "encoding": "cp1252",
    "encoding_aliases": [
        "1252",
        "windows_1252"
    ],
    "alternative_encodings": [
        "cp1254",
        "cp1256",
        "cp1258",
        "iso8859_14",
        "iso8859_15",
        "iso8859_16",
        "iso8859_3",
        "iso8859_9",
        "latin_1",
        "mbcs"
    ],
    "language": "French",
    "alphabets": [
        "Basic Latin",
        "Latin-1 Supplement"
    ],
    "has_sig_or_bom": false,
    "chaos": 0.149,
    "coherence": 97.152,
    "unicode_path": null,
    "is_preferred": true
}

Python

Just print out normalized text

from charset_normalizer import from_path

results = from_path('./my_subtitle.srt')

print(str(results.best()))

Normalize any text file

from charset_normalizer import normalize
try:
    normalize('./my_subtitle.srt') # should write to disk my_subtitle-***.srt
except IOError as e:
    print('Sadly, we are unable to perform charset normalization.', str(e))

Upgrade your code without effort

from charset_normalizer import detect

The above code will behave the same as chardet. We ensure that we offer the best (reasonable) BC result possible.

See the docs for advanced usage : readthedocs.io

😇 Why

When I started using Chardet, I noticed that it was not suited to my expectations, and I wanted to propose a reliable alternative using a completely different method. Also! I never back down on a good challenge!

I don't care about the originating charset encoding, because two different tables can produce two identical rendered string. What I want is to get readable text, the best I can.

In a way, I'm brute forcing text decoding. How cool is that ? 😎

Don't confuse package ftfy with charset-normalizer or chardet. ftfy goal is to repair unicode string whereas charset-normalizer to convert raw file in unknown encoding to unicode.

🍰 How

  • Discard all charset encoding table that could not fit the binary content.
  • Measure chaos, or the mess once opened (by chunks) with a corresponding charset encoding.
  • Extract matches with the lowest mess detected.
  • Additionally, we measure coherence / probe for a language.

Wait a minute, what is chaos/mess and coherence according to YOU ?

Chaos : I opened hundred of text files, written by humans, with the wrong encoding table. I observed, then I established some ground rules about what is obvious when it seems like a mess. I know that my interpretation of what is chaotic is very subjective, feel free to contribute in order to improve or rewrite it.

Coherence : For each language there is on earth, we have computed ranked letter appearance occurrences (the best we can). So I thought that intel is worth something here. So I use those records against decoded text to check if I can detect intelligent design.

⚡ Known limitations

  • Language detection is unreliable when text contains two or more languages sharing identical letters. (eg. HTML (english tags) + Turkish content (Sharing Latin characters))
  • Every charset detector heavily depends on sufficient content. In common cases, do not bother run detection on very tiny content.

👤 Contributing

Contributions, issues and feature requests are very much welcome.
Feel free to check issues page if you want to contribute.

📝 License

Copyright © 2019 Ahmed TAHRI @Ousret.
This project is MIT licensed.

Characters frequencies used in this project © 2012 Denny Vrandečić

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

charset-normalizer-3.0.0b1.tar.gz (81.7 kB view details)

Uploaded Source

Built Distributions

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

charset_normalizer-3.0.0b1-py3-none-any.whl (38.5 kB view details)

Uploaded Python 3

charset_normalizer-3.0.0b1-cp310-cp310-win_amd64.whl (86.6 kB view details)

Uploaded CPython 3.10Windows x86-64

charset_normalizer-3.0.0b1-cp310-cp310-win32.whl (79.5 kB view details)

Uploaded CPython 3.10Windows x86

charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_x86_64.whl (180.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_s390x.whl (183.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_ppc64le.whl (192.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_i686.whl (182.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_aarch64.whl (180.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (186.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (187.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (196.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (183.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (187.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

charset_normalizer-3.0.0b1-cp310-cp310-macosx_11_0_arm64.whl (110.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

charset_normalizer-3.0.0b1-cp310-cp310-macosx_10_9_x86_64.whl (113.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

charset_normalizer-3.0.0b1-cp310-cp310-macosx_10_9_universal2.whl (185.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

charset_normalizer-3.0.0b1-cp39-cp39-win_amd64.whl (86.6 kB view details)

Uploaded CPython 3.9Windows x86-64

charset_normalizer-3.0.0b1-cp39-cp39-win32.whl (79.5 kB view details)

Uploaded CPython 3.9Windows x86

charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_x86_64.whl (180.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_s390x.whl (183.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_ppc64le.whl (191.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_i686.whl (182.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_aarch64.whl (180.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (186.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (187.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (195.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (183.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (187.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

charset_normalizer-3.0.0b1-cp39-cp39-macosx_11_0_arm64.whl (110.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

charset_normalizer-3.0.0b1-cp39-cp39-macosx_10_9_x86_64.whl (113.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

charset_normalizer-3.0.0b1-cp39-cp39-macosx_10_9_universal2.whl (185.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

charset_normalizer-3.0.0b1-cp38-cp38-win_amd64.whl (86.1 kB view details)

Uploaded CPython 3.8Windows x86-64

charset_normalizer-3.0.0b1-cp38-cp38-win32.whl (79.5 kB view details)

Uploaded CPython 3.8Windows x86

charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_x86_64.whl (179.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_s390x.whl (182.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_ppc64le.whl (189.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_i686.whl (181.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_aarch64.whl (177.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (183.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (184.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (192.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (180.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (185.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

charset_normalizer-3.0.0b1-cp38-cp38-macosx_11_0_arm64.whl (109.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

charset_normalizer-3.0.0b1-cp38-cp38-macosx_10_9_x86_64.whl (112.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

charset_normalizer-3.0.0b1-cp38-cp38-macosx_10_9_universal2.whl (183.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

charset_normalizer-3.0.0b1-cp37-cp37m-win_amd64.whl (84.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

charset_normalizer-3.0.0b1-cp37-cp37m-win32.whl (78.5 kB view details)

Uploaded CPython 3.7mWindows x86

charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_x86_64.whl (155.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_s390x.whl (155.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_ppc64le.whl (163.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_i686.whl (157.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_aarch64.whl (152.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (160.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (157.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (166.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (155.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (161.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

charset_normalizer-3.0.0b1-cp37-cp37m-macosx_10_9_x86_64.whl (110.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

charset_normalizer-3.0.0b1-cp36-cp36m-win_amd64.whl (82.0 kB view details)

Uploaded CPython 3.6mWindows x86-64

charset_normalizer-3.0.0b1-cp36-cp36m-win32.whl (76.2 kB view details)

Uploaded CPython 3.6mWindows x86

charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_x86_64.whl (149.4 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_s390x.whl (149.2 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ s390x

charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_ppc64le.whl (156.5 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_i686.whl (151.4 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_aarch64.whl (146.9 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (153.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (151.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (159.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (149.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (155.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

charset_normalizer-3.0.0b1-cp36-cp36m-macosx_10_9_x86_64.whl (106.4 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file charset-normalizer-3.0.0b1.tar.gz.

File metadata

  • Download URL: charset-normalizer-3.0.0b1.tar.gz
  • Upload date:
  • Size: 81.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.6

File hashes

Hashes for charset-normalizer-3.0.0b1.tar.gz
Algorithm Hash digest
SHA256 53b871a0b44a0979438afa56c7520096c467c42ee7396d47f3338a7d0be277c2
MD5 63a1849c05385a907f0c235d79edb6bb
BLAKE2b-256 fb9d2ce1a0e8106932df4290bb8eabf6c79918aae6a141e619d6654b32aa12cd

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-py3-none-any.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-py3-none-any.whl
Algorithm Hash digest
SHA256 629d308c84ced1f5097a1b4d6d01e9b8baeee0a98b6935f29a6207da18afe446
MD5 e7e9ec1d0db300687443957964e48439
BLAKE2b-256 8581e5f5d6e9ee896f9c39b3592e7d990123aeb46631b3a9c6413118a4eac878

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6a167758143dc2305b2ec6db46bd6627be617a6baad5be0cde98e597e4ce8a9d
MD5 e7f2fa1b3861b3add1edf30143a6e0bb
BLAKE2b-256 42d2e99a9c26afdc48e68ed49a130ecaff55134bde49951510b535fdb31a3a7a

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0cb124c78b60d343e93d456292b2fb3a6cc4c5b1bb0ca42908a331fdd831aaea
MD5 4036e224c3e9e0276a5a046e77774d8c
BLAKE2b-256 e1e46686d709678e17d86dbc2a6d7988567562b1e3ef8f0a2ffa7b75d1bf3717

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 57f9aadc688db3cf0dc518e7074d0080715e08e7b87d4271a10c11a9ba5a22a3
MD5 bb682a6312a549448867fcf501ccccee
BLAKE2b-256 cc244fcc58484c61192de45367c9447ade920d4ea5bae65e1d5c71afefd25964

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 5bdc2b4fd04db0b8ef14cf88ed21cefe1677b2217faa512011950b5d0b48a006
MD5 73ea349fb7ee8c8d96a4d6a9c68b824e
BLAKE2b-256 f2069ab68bb0fc8a7054398785db91a2d280835d34050bcffeed84ecbc67a304

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 07debd158ab1b4cbc529084bb4b8c1f18dcb1b230d377af6c7b1d6d8b4d4c42a
MD5 7527c02e39892567be6b3405fb33051d
BLAKE2b-256 285ca0beef9a90b3b6642754751f0f248264cbe571597cb4d85158ab481f1817

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5910c2fdb7fde6a75e0457196cb5c6c28b25d7181ddc98d2d3bf3fbb6dc237c3
MD5 df96e96ebafa8a065b8e1f831ea6adc0
BLAKE2b-256 f6700bdebba79aa1dca2ddf037108cc33c668ae5f46828cedcb8e522232952dd

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 19538920c48c8306f5da17c8ab81b3b7ae4e40998f2172f354b2d15f3153a51d
MD5 424be1b3d511c03edca6dc5eedc34beb
BLAKE2b-256 8574dd66efe42ffa08323117062af39dcc03755097b18c2fba51b36c93513187

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16f243674c501e6878b70b5680d6b55f7805d2ff48aeddc6b988e0f70a475242
MD5 833d7a08ecefaecd0d712c165efe2fc8
BLAKE2b-256 bdda726d9bb2c8a1ff1aa81acf6163033e86dad9a0f044d2f0ecbba03219a358

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9ba3096e6d32634654a7676a1eedeced39f5477ac1c83a19159aec724710070
MD5 01565dd8dd1da752570acfd0c0289820
BLAKE2b-256 85e198b23cc431ef42ab48f42d5050cc7e801e8561689702063f2af7795d96b0

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ade3d7005ac0a0cc3de884da599102f611687aee23859bb44fefc4469a8d55b
MD5 70cb8a238d255a32f91a3d7b32cdcb09
BLAKE2b-256 4aa54d4e9d9db9987ea724e3f8ee7001aeeae66612b0614787d0a7824376b685

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b6d6b6b669a248a94ca7d3fbb20e1da6801168458a24237185cf19b5752e376
MD5 de0a0ab67eb3561227ff3692a58e6581
BLAKE2b-256 4acb6f2be3aa4cd4e4d77c3563f58baa9fab7adfc9f91590b003788b606c92a6

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4d9f5f6bb48b777a18aa056b1cc993cd7b117a438bad7a7a1679ffc8bdc7ccc
MD5 2fb16c7781be04d44226aea215ea8aaa
BLAKE2b-256 632d16c2625bd1a55c91c123e2033dba4957e133ce7cbbe4ef4601be656c417f

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cc7c7de4f4c7959bd56e1cf4a62f7a3e8c036ddc90e9a79bea409d284773f27
MD5 d7f167ed064f1731ad2875ac54095b05
BLAKE2b-256 a0f9b3b8f592e4de932485cc14db2f694f5b17b42ae9823dc7f173dfad8b9f01

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5420ff403fe8242c59335055df3d52ac5373476b5dea46b8b842bf78f981f2c5
MD5 a08df75bcf79152a9d1a44f472e6ccc2
BLAKE2b-256 845fabeec5c8a157163ee3eaf051c7a07319fad4827b745eb3a7ac0459decd11

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0ca8dc1b97bfda1ff4720401309f0f779ba209531af8be20f7a6edc995d30ff3
MD5 43169444d66928fc0bf71cc2d6aeb59e
BLAKE2b-256 52903e3898ae7fc3759720902f25aecdd30f8e0fb8895f7dca5a9701dcfc04e7

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d38ecbb0bd666de80a5b3a3e6868336cd0f1afdeda96b8f922106f167a093210
MD5 d9a4fa31ebc3ec866aafccc71472be43
BLAKE2b-256 4d582629777f063d43f799c0e62a68ed693f1da03cddf0e7101ac3c12f65aaa1

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fe801b015a96bdbc27052c19c4a4860b40c871536681804a128fa7ccb57f7869
MD5 8e0d9cd711200dce641047846906f4dd
BLAKE2b-256 fbe6be428d0dfff776d48c1707b34844d5a87d8045c26a80e6d153e55bff4d60

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 28e5702b16019ffd02b69db13b9cdb26fe510aafc6736ccf3591f841f51d6983
MD5 30798d36e8106227d805a59111f26721
BLAKE2b-256 c45da549fc7cc3b65d01aa0b025033973ce7c9d8c765fc2e6146b966ce8279d3

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 18cd50d580b3528cab99e4f42e022e0b185e90d195a484c0f1dcec487ec199f2
MD5 f7b150028693a909fc119c9db32abe6d
BLAKE2b-256 51dc9978cbaee6a49230b56359e696539a9a7b51da0e59dce77847c7c58ca77a

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 08ec5404322246c2a0d3ed9d133b02ba2cbbafd79287c9980fcf9f0c8c664c11
MD5 f872d2a6886e1d8192e560a697975849
BLAKE2b-256 a088b389b94e18edb05806957c2053a665f65f4d909512ebb463fdb4cc33fec6

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1dfd1fe00c152c746dd3a31ff4dc19b70630a61304617d7dc2bce6c07c946c19
MD5 25b7408184e34d49829e59d48c7a9a14
BLAKE2b-256 742d4024c9b3dac7e163eb695f787eb13e11b63f0b8b5a9f0795d8cd3be187ca

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d94e26b8d34f4236e05d338cdd5b125b33702867afcdb7f4c4dcde1342179b6c
MD5 48d586faec6810ea7b74cc87b3f4dd75
BLAKE2b-256 b034b87e5c82e1a4734dfc0bc5a8d385de5a080cd83103348faf819cb90fbcc9

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 327655553be317786af906243cd151ad8f8c62845a211b18ed74ee3c05acff49
MD5 7bb65aea8388344aeceb4ce88cb8f651
BLAKE2b-256 43a5ae912650fb59bc646b842ac1bc14f5143b5607d5964f2990b48537efa885

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e47fa5da53c8bbd18021552a2246cd6e6c73f6f24b5383b1938e1f1c1010b96
MD5 fa66602d9b868dfaa788f573038784ba
BLAKE2b-256 3b45a7248caeacd8c66ea9bb3f3332e641a63874d89c7815fb6beaefa3352cd5

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38d3e3a07ba34f752434fab43e389e534ce51d47af1a7842bc3a865dda136e24
MD5 ccc03895a390c7497a0f6098d5112ac4
BLAKE2b-256 02eea99285d3836763c21e99f491f3e86feaa392d87c5dab161fe1fd30ec1c46

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e791e1e82f90af11ac27d35ac442b1a3fc25f105be00302bd2d393ebb093bcc
MD5 8cc815bae558871a556eaea7462707ab
BLAKE2b-256 90852822ce99e2487bfd01d356e52820333c9fe01eaadfa5b1d89310e45b140f

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cbd718255cd8eb3a4ad9deed517c39713f8de8def5b7c909e0b1e09af1d9aad3
MD5 d026fb501e98cf5affad8869455b0d7d
BLAKE2b-256 f3d41e60c1288d4ac5461ecdffc36452ebe6df50bfa6cb4feee35a0422ef2e42

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae31dd4e68f10d10c1d4896cab524980c85d74be01184892e7693d7d09f0f48e
MD5 156f306e04b02883185282642fb1ec84
BLAKE2b-256 b7c0620e56665147ec3d1d9f0181210adb497ac2f2b72e0a2843738cb4487d27

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3f675b21cfd83817490d7fdd799dd6f99eff6dbbe08c62873ac6164f415e32f
MD5 f02cca713933e99815560f834dd38160
BLAKE2b-256 68621877589ea19f3e9b4e46f4c2774cd4eae947c34a04ba003c9dd91a9db13f

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d2f07ce83dd1ae49507d9dde7156f452422696f9b15d9de20cfb7aea0e08a38d
MD5 0d1aa69458193a845560da0d4c463e08
BLAKE2b-256 84576c2b64f92e4d3a301619aedff7a486ead2abe35a19af2c0f1614d8524198

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5d9480e3d82287ff4e45a57887d97ad621ff51f09c812d185a0858c059eeff23
MD5 fd3191ab4b82d5d3eb090e17e604a2f2
BLAKE2b-256 5609ddd19b6602c31e7730d795fe3ad009ba7bd37f59a46417952152b7399905

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1eb341f4afd1c5c1a02b5f1ceb9dbedd9ed86e799e2d15700166a618d6effa60
MD5 419f53211b5fa78980f50416fc728896
BLAKE2b-256 1b146d2a7bbf40887c104e1bcdd030aa7709b9875d721e524a825422e0a99df2

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f6a4190261f1f1a573a8296503d6dd61136b60450a9ffe3e065acfdf2bd57b7b
MD5 4320c21d55821e7931ca8bb90c3f0400
BLAKE2b-256 137dcdb76636bbe7997ecbdb1b961b6af5cdd0362d940c639389225e378379f1

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 c24c9e47239df9dd8025111798b3a5035b16d16fbfa62d9d687f91a50834934d
MD5 049db48bb811ffb88b980934c6f2f30d
BLAKE2b-256 e5dc316d2c3ea9d5676081de07b570fd769bfd75b362a83088d1bb8c0c7c5248

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 8ff5604e5c902ea56d17ad4de0f9357ee9d6a043035eabc140f843f8a8e01865
MD5 a0dbbdeab3fb9442e0513c02fc8755fa
BLAKE2b-256 e3fcbe16d19d8d209ec9108ab7ef8d86f8efebe3ade7f0e9b269828485bbd6c5

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8eabf3fd35a2961e63f3478688a2fbb8b7883b6c174d93bb68757e91877a3889
MD5 5ef0399c1e3dad787e687248dfae1d84
BLAKE2b-256 b9f24b0abefa9934c4efe7d77dd1ea3982fbd21fc615ddc5d33e0a6bbad60455

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d41ff1f2576a342174cdbc8e0d8e9e89e06d42329958c7c6af0466406d575ba0
MD5 a522aca46aab5f8e474d28cb77950069
BLAKE2b-256 0537610c2c8d014303152c121be42ceb3229a32af5147a34a5bd11aadd929470

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0952cbc8a055b10f10bf72ed9df7bc166244100d3d1dacc15a01e79a233d5ad3
MD5 fa37c8faceee0418b173a0923d472493
BLAKE2b-256 645b72468912aad719081a85b8a181836b93dbc4bf299e0c3cd22db4a72394b2

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62f89fa9f2bb185fb7bfa863b1e7132f5c03f67db4d245c77155e2004b59fd5e
MD5 53904d9cbfeaa21924b14a858ee9c7ad
BLAKE2b-256 24849a09eb7311d1d65b2ecf18739a160ffda9dd1dd123f6d8bda672032006a2

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8000da4114a33acdcee8533d194743e97798fa46c06a3cf2f9adb43b248e6bc
MD5 5b67b6ea5243156ae33a1ebe418019d8
BLAKE2b-256 00f678c7522ff4c3f279d296e682660b28fb1ec9e65fefb03feb03e70197f89c

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b322062605007cfcb14c1f27f34fd4a702ee7b20aefe231c8a6355453f8cd3ca
MD5 12d9bda9da66edbed8672f3aa36ca450
BLAKE2b-256 7e16ca91e3686e80cd649320553406bcffa43153de8e308cf46c18d170037a87

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d55ce983592126e1a34ff265c6828d14cd0b59da05b4f7275a9f44c3e9d1282
MD5 ae36183da142289e1e8bddf7eac3c73f
BLAKE2b-256 accabc1bd653cae5e03d6e714fb2785b5f2f23f3e1bed62db4921672372a3fbc

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adb095f0dfecde2bfb679228ccd150724539e1a79d25a4fcf4ad0b2fc3496d13
MD5 be5aa559579c9d3bf6e6e60872be8499
BLAKE2b-256 209e2ed27e06b1f84ce7373a3b1b635c21455617a817c6f683d8a5d8e92d6d45

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c235a5e6eb62a983dba22102b20b7dacb048bc74140e163074aace4924259f60
MD5 d6763913b05f7b0213ea28b2bd282ae8
BLAKE2b-256 83561991f337442aad89be4c990b5418a1cd088588e62eca4ffcfa2427204d5f

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d3f187288abc047a5385eccc852c237cb7a1e3be74b99bacb92acdbb9df92eac
MD5 37bfafff6feee635b1cf7c95876d059d
BLAKE2b-256 867ce296a3c1c243ee27a244fa253982c636cad2f3c7fa821e8eaa3ba4c4a9bb

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a278de79e1efa97b718fa50048fa67b7cfd4e99ee0fa328e085cc6d829936ee0
MD5 7e7a9cf01fc90aae06e792029309d35c
BLAKE2b-256 da53c1f65a48c0f36878173d7cc0a35f661fe1d23daf082c8b05300cc855a879

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ef2ceabfd8307a601cff171b8bb2a458606d11ffafe84d0ca8034d67bf9804c0
MD5 ff4593eb66cb57358b145219f879aa8d
BLAKE2b-256 33261c2ffe9350797a5581fa30021154f441795dab5018875a07b4ec842ea46c

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ded73bae3980b344ecdcdd3a408bc43ed89e99e3a99c2d1c8c64f058b194e44e
MD5 ad8a557cde236e06503a66e58fbb0f75
BLAKE2b-256 3a19df15521ab9fbea4484300a498a41f007af980894eb65dcb34bb5b0a6c6ca

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4a17662c275632102ce5b602ecd4f44a1158324a743ee83d558c4f9f86c08f76
MD5 e859234df020d9ae20d5d6d361449aa5
BLAKE2b-256 c9e2105187544185b362d7ee87a5e69e141c0ca135aa30f45e19d57c381928cf

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 43b8ac2c30d7bf8e3ffba0ce3dec9c8afb38907d3c9f7e328c8cc934ad10436c
MD5 df83986f849c36f160de7f1a1e46bec0
BLAKE2b-256 1b2427130e8e7d92a214ed7ae435217cbf3899a488f15b5e284a7936bd2df1f5

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 441dffa81d147782a37ec66bab7799a4fc7c02d18062bae6d9287279d488ff2b
MD5 d9c5c3e164a962f6b25c105fe1c5a3c1
BLAKE2b-256 79e270d75315c0aaea462f736f0c05abf412792c7cb5307dcaf8904747f4c089

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b904963091f7d0abc3bad32522f789513ff6371fb212ef403f166ef4c8d061ac
MD5 713bf8240c3530ea9b5418464a397127
BLAKE2b-256 59deb2897e9ecf1f7dc1879ab96eaa5a8b79807d794f627707d334105c3b681f

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba1c79bce4f49cfb16e0b82010963f9cf0dbe9cb207634e12c2b1624f1028a84
MD5 4a9d8f46c587e25ac3e1b44c4b19b25d
BLAKE2b-256 efcf4afc7643b02e9f26242298b9c65baa2715127c0b25a60dbbd41263f1db57

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a366c717fc743fd09f222360a4f09137b8bce843a3ec69c0a93ea7458675a23a
MD5 66caa466954fcd461a208755861be3d7
BLAKE2b-256 acd299a31a844e2334be6e072ada8392ab987ebdf53a4ef4842e8d41d1e9820e

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45557a5983a5d81707e2b6cbcf9059c970befb9fb37d8bd3ca6b6e49fa5a03f7
MD5 ce70f1b2660f7e8babd1e95c01cc4923
BLAKE2b-256 d10a80f7b9b281968a9264afc5b59587b34263d7b05900c0fa55ae92b232d933

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7f3004b0f8c0606d362e842c5897ffebca2d7f37520b97ad1138143bf958821
MD5 e82abbc14896fe160eecbb9a9422ff3a
BLAKE2b-256 81e10a8810a2215567b625842f9bab661701411b96bff0bd299620e9fcfdd7ba

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ff0db348df1bbfa1c9fc992118f4119f20492c5adf5bbb113ac1c291b2b7c20
MD5 ae2400d96b5107798d3c08e4ac9b30b4
BLAKE2b-256 6bd1e84eb2d59bd4ad1e7f2889340673c99da6d1628e37192637281f505f3dba

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f67b7ae9ae882bd40228026afb29fab25e53821113b7dd8e5cb190695e5ea791
MD5 7a3e8db607d86d09bd9dd9c203268c6e
BLAKE2b-256 a22d9c437c1123eb3b1804a774d333ff48b96d2c7bb4924c760e264cee3cb000

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ee70796c2f38e39e65080e1df7cb464a5799539bb2eb0b2c33ecde44d40e4f9b
MD5 542b37da687e2da482ce8b0e283458c4
BLAKE2b-256 4ca70803f92a8d6e7ba2f50a81378b664a2df7fa0609c26115456837aa692691

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ce5e3485dad6f7b23292456b933c3fab818fc2d43acda86f0650879d1cecaafb
MD5 37b23027cc26572e1e3c99096fff9365
BLAKE2b-256 9e22a69c683d229c2521acca0a434e7030d21c582f5adccf9bc1814b6f4e43c8

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 58fa1ddc04695f15db0b9ed3f33da154a7e04d87aa9061d851501f3fa8c1439e
MD5 5b340c50a649e82cc882a1ed878241ad
BLAKE2b-256 cadcb8c32500740195d0afcc8e4f607e02499e036466067bd4117fcdd36855ca

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 58526d94043fe41a0921f843af5a3fca034f4f96d5120392857538cff2c98ed7
MD5 c0afeabe0f067282ae10a353246b676e
BLAKE2b-256 2275cdc96880cba8a9929d0814750a54c641003ec4e10e7fd2d921738cf2daeb

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 deb911650dec0993225bf059d8e4c54fd6d8a83ec42b59e3a9b31d00170cdc3f
MD5 488830b341698e778117a921ecb71c6c
BLAKE2b-256 1657b9c5351267461364f89592a55480d5691d3877f0129a1015dd8ec18ae6df

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f59c4d5576bef6ac770798295b7592f5ac3c25f4a33434a76ce2d552ce50b741
MD5 f71616a858da0257152940394397688e
BLAKE2b-256 3a41e12bbef70bbb5a6a9c4f979d174b532173d9504d1dbf2afa878258a4f327

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b83e3f63573901098da6adceeba20a70624d3259a2bfd757ac30b944dbd3702f
MD5 8d14d2b78b95474e5ded72fcbbd8d52e
BLAKE2b-256 2bce8b60910f2ab4282ceeaed47067c00a170ac7db088aee3518b12aa4693784

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3596ce75d6063bfff70ea6bf4772d8838e172a06d15971967c52518f7d5d18fd
MD5 e17816f9e6fd0a87bfb8afb060a8eedd
BLAKE2b-256 695a77924a8d33a5cd9ad3cc7ec57780e0e7c98068acbeb7b0e7cfbee16b763b

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d8a5af769ca7c68d5ac8ff493b56fc4f79d5fc322c5022273616693835bdf1d
MD5 c9f87e0aa6c268895982501f8344db63
BLAKE2b-256 9044c5a343912a372b70c4100bd8897bfb810c7009311f3d85537d3ee872378b

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee13470c54902a25dd18f7b82db33230407392e1eb1ee0bf1e3855d909d0ad5e
MD5 960069e315949d07e5f3a0d15f92df1e
BLAKE2b-256 fb58542750be039d76fd9a50125e56668a9361b7381219a6243ec7ac4f65c5dd

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18f866f0d675ab501e7ddb43804f4f5e95ffc4a1d7914f8b774a1ad2bf5a62fc
MD5 caca9cbe2113d1a44aab2de388b13eeb
BLAKE2b-256 d1db5353bc4dc412cf0e2fd2102186cdd837576b173b348a1beadbf8f9f53ac4

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 334434e5dcdfaccbebf1b3f6536973ae8f8e45d9a824b900a1657683712abdb4
MD5 40f6c5193f6c2cf406a2488119037f35
BLAKE2b-256 ac5b1e5f5b47527c9e0b95aba1cd42876af720fee835257cc54baee7f659f7f4

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0b1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0b1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5573693db01df92993a35adbd8dd2c58ca7e8c142ac2fadc6500abf676d63e9a
MD5 33fe37974346c3eda72227ba89c9806b
BLAKE2b-256 f59d91408b27b58ece9083a5036972fb14922f1490c7c9d67453882b715d1988

See more details on using hashes here.

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