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: 90 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ć

Changelog

All notable changes to charset-normalizer will be documented in this file. This project adheres to Semantic Versioning. The format is based on Keep a Changelog.

3.0.0rc1 (2022-10-18)

Added

  • Extend the capability of explain=True when cp_isolation contains at most two entries (min one), will log in details of the Mess-detector results
  • Support for alternative language frequency set in charset_normalizer.assets.FREQUENCIES
  • Add parameter language_threshold in from_bytes, from_path and from_fp to adjust the minimum expected coherence ratio

Changed

  • Build with static metadata using 'build' frontend
  • Make the language detection stricter

Fixed

  • CLI with opt --normalize fail when using full path for files
  • TooManyAccentuatedPlugin induce false positive on the mess detection when too few alpha character have been fed to it

Removed

  • Coherence detector no longer return 'Simple English' instead return 'English'
  • Coherence detector no longer return 'Classical Chinese' instead return 'Chinese'

3.0.0b2 (2022-08-21)

Added

  • normalizer --version now specify if current version provide extra speedup (meaning mypyc compilation whl)

Removed

  • Breaking: Method first() and best() from CharsetMatch
  • UTF-7 will no longer appear as "detected" without a recognized SIG/mark (is unreliable/conflict with ASCII)

Fixed

  • Sphinx warnings when generating the documentation

3.0.0b1 (2022-08-15)

Changed

  • Optional: Module md.py can be compiled using Mypyc to provide an extra speedup up to 4x faster than v2.1

Removed

  • Breaking: Class aliases CharsetDetector, CharsetDoctor, CharsetNormalizerMatch and CharsetNormalizerMatches
  • Breaking: Top-level function normalize
  • Breaking: Properties chaos_secondary_pass, coherence_non_latin and w_counter from CharsetMatch
  • Support for the backport unicodedata2

2.1.1 (2022-08-19)

Deprecated

  • Function normalize scheduled for removal in 3.0

Changed

  • Removed useless call to decode in fn is_unprintable (#206)

Fixed

  • Third-party library (i18n xgettext) crashing not recognizing utf_8 (PEP 263) with underscore from @aleksandernovikov (#204)

2.1.0 (2022-06-19)

Added

  • Output the Unicode table version when running the CLI with --version (PR #194)

Changed

  • Re-use decoded buffer for single byte character sets from @nijel (PR #175)
  • Fixing some performance bottlenecks from @deedy5 (PR #183)

Fixed

  • Workaround potential bug in cpython with Zero Width No-Break Space located in Arabic Presentation Forms-B, Unicode 1.1 not acknowledged as space (PR #175)
  • CLI default threshold aligned with the API threshold from @oleksandr-kuzmenko (PR #181)

Removed

  • Support for Python 3.5 (PR #192)

Deprecated

  • Use of backport unicodedata from unicodedata2 as Python is quickly catching up, scheduled for removal in 3.0 (PR #194)

2.0.12 (2022-02-12)

Fixed

  • ASCII miss-detection on rare cases (PR #170)

2.0.11 (2022-01-30)

Added

  • Explicit support for Python 3.11 (PR #164)

Changed

  • The logging behavior have been completely reviewed, now using only TRACE and DEBUG levels (PR #163 #165)

2.0.10 (2022-01-04)

Fixed

  • Fallback match entries might lead to UnicodeDecodeError for large bytes sequence (PR #154)

Changed

  • Skipping the language-detection (CD) on ASCII (PR #155)

2.0.9 (2021-12-03)

Changed

  • Moderating the logging impact (since 2.0.8) for specific environments (PR #147)

Fixed

  • Wrong logging level applied when setting kwarg explain to True (PR #146)

2.0.8 (2021-11-24)

Changed

  • Improvement over Vietnamese detection (PR #126)
  • MD improvement on trailing data and long foreign (non-pure latin) data (PR #124)
  • Efficiency improvements in cd/alphabet_languages from @adbar (PR #122)
  • call sum() without an intermediary list following PEP 289 recommendations from @adbar (PR #129)
  • Code style as refactored by Sourcery-AI (PR #131)
  • Minor adjustment on the MD around european words (PR #133)
  • Remove and replace SRTs from assets / tests (PR #139)
  • Initialize the library logger with a NullHandler by default from @nmaynes (PR #135)
  • Setting kwarg explain to True will add provisionally (bounded to function lifespan) a specific stream handler (PR #135)

Fixed

  • Fix large (misleading) sequence giving UnicodeDecodeError (PR #137)
  • Avoid using too insignificant chunk (PR #137)

Added

  • Add and expose function set_logging_handler to configure a specific StreamHandler from @nmaynes (PR #135)
  • Add CHANGELOG.md entries, format is based on Keep a Changelog (PR #141)

2.0.7 (2021-10-11)

Added

  • Add support for Kazakh (Cyrillic) language detection (PR #109)

Changed

  • Further, improve inferring the language from a given single-byte code page (PR #112)
  • Vainly trying to leverage PEP263 when PEP3120 is not supported (PR #116)
  • Refactoring for potential performance improvements in loops from @adbar (PR #113)
  • Various detection improvement (MD+CD) (PR #117)

Removed

  • Remove redundant logging entry about detected language(s) (PR #115)

Fixed

  • Fix a minor inconsistency between Python 3.5 and other versions regarding language detection (PR #117 #102)

2.0.6 (2021-09-18)

Fixed

  • Unforeseen regression with the loss of the backward-compatibility with some older minor of Python 3.5.x (PR #100)
  • Fix CLI crash when using --minimal output in certain cases (PR #103)

Changed

  • Minor improvement to the detection efficiency (less than 1%) (PR #106 #101)

2.0.5 (2021-09-14)

Changed

  • The project now comply with: flake8, mypy, isort and black to ensure a better overall quality (PR #81)
  • The BC-support with v1.x was improved, the old staticmethods are restored (PR #82)
  • The Unicode detection is slightly improved (PR #93)
  • Add syntax sugar __bool__ for results CharsetMatches list-container (PR #91)

Removed

  • The project no longer raise warning on tiny content given for detection, will be simply logged as warning instead (PR #92)

Fixed

  • In some rare case, the chunks extractor could cut in the middle of a multi-byte character and could mislead the mess detection (PR #95)
  • Some rare 'space' characters could trip up the UnprintablePlugin/Mess detection (PR #96)
  • The MANIFEST.in was not exhaustive (PR #78)

2.0.4 (2021-07-30)

Fixed

  • The CLI no longer raise an unexpected exception when no encoding has been found (PR #70)
  • Fix accessing the 'alphabets' property when the payload contains surrogate characters (PR #68)
  • The logger could mislead (explain=True) on detected languages and the impact of one MBCS match (PR #72)
  • Submatch factoring could be wrong in rare edge cases (PR #72)
  • Multiple files given to the CLI were ignored when publishing results to STDOUT. (After the first path) (PR #72)
  • Fix line endings from CRLF to LF for certain project files (PR #67)

Changed

  • Adjust the MD to lower the sensitivity, thus improving the global detection reliability (PR #69 #76)
  • Allow fallback on specified encoding if any (PR #71)

2.0.3 (2021-07-16)

Changed

  • Part of the detection mechanism has been improved to be less sensitive, resulting in more accurate detection results. Especially ASCII. (PR #63)
  • According to the community wishes, the detection will fall back on ASCII or UTF-8 in a last-resort case. (PR #64)

2.0.2 (2021-07-15)

Fixed

  • Empty/Too small JSON payload miss-detection fixed. Report from @tseaver (PR #59)

Changed

  • Don't inject unicodedata2 into sys.modules from @akx (PR #57)

2.0.1 (2021-07-13)

Fixed

  • Make it work where there isn't a filesystem available, dropping assets frequencies.json. Report from @sethmlarson. (PR #55)
  • Using explain=False permanently disable the verbose output in the current runtime (PR #47)
  • One log entry (language target preemptive) was not show in logs when using explain=True (PR #47)
  • Fix undesired exception (ValueError) on getitem of instance CharsetMatches (PR #52)

Changed

  • Public function normalize default args values were not aligned with from_bytes (PR #53)

Added

  • You may now use charset aliases in cp_isolation and cp_exclusion arguments (PR #47)

2.0.0 (2021-07-02)

Changed

  • 4x to 5 times faster than the previous 1.4.0 release. At least 2x faster than Chardet.
  • Accent has been made on UTF-8 detection, should perform rather instantaneous.
  • The backward compatibility with Chardet has been greatly improved. The legacy detect function returns an identical charset name whenever possible.
  • The detection mechanism has been slightly improved, now Turkish content is detected correctly (most of the time)
  • The program has been rewritten to ease the readability and maintainability. (+Using static typing)+
  • utf_7 detection has been reinstated.

Removed

  • This package no longer require anything when used with Python 3.5 (Dropped cached_property)
  • Removed support for these languages: Catalan, Esperanto, Kazakh, Baque, Volapük, Azeri, Galician, Nynorsk, Macedonian, and Serbocroatian.
  • The exception hook on UnicodeDecodeError has been removed.

Deprecated

  • Methods coherence_non_latin, w_counter, chaos_secondary_pass of the class CharsetMatch are now deprecated and scheduled for removal in v3.0

Fixed

  • The CLI output used the relative path of the file(s). Should be absolute.

1.4.1 (2021-05-28)

Fixed

  • Logger configuration/usage no longer conflict with others (PR #44)

1.4.0 (2021-05-21)

Removed

  • Using standard logging instead of using the package loguru.
  • Dropping nose test framework in favor of the maintained pytest.
  • Choose to not use dragonmapper package to help with gibberish Chinese/CJK text.
  • Require cached_property only for Python 3.5 due to constraint. Dropping for every other interpreter version.
  • Stop support for UTF-7 that does not contain a SIG.
  • Dropping PrettyTable, replaced with pure JSON output in CLI.

Fixed

  • BOM marker in a CharsetNormalizerMatch instance could be False in rare cases even if obviously present. Due to the sub-match factoring process.
  • Not searching properly for the BOM when trying utf32/16 parent codec.

Changed

  • Improving the package final size by compressing frequencies.json.
  • Huge improvement over the larges payload.

Added

  • CLI now produces JSON consumable output.
  • Return ASCII if given sequences fit. Given reasonable confidence.

1.3.9 (2021-05-13)

Fixed

  • In some very rare cases, you may end up getting encode/decode errors due to a bad bytes payload (PR #40)

1.3.8 (2021-05-12)

Fixed

  • Empty given payload for detection may cause an exception if trying to access the alphabets property. (PR #39)

1.3.7 (2021-05-12)

Fixed

  • The legacy detect function should return UTF-8-SIG if sig is present in the payload. (PR #38)

1.3.6 (2021-02-09)

Changed

  • Amend the previous release to allow prettytable 2.0 (PR #35)

1.3.5 (2021-02-08)

Fixed

  • Fix error while using the package with a python pre-release interpreter (PR #33)

Changed

  • Dependencies refactoring, constraints revised.

Added

  • Add python 3.9 and 3.10 to the supported interpreters

MIT License

Copyright (c) 2019 TAHRI Ahmed R.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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.0rc1.tar.gz (89.3 kB view details)

Uploaded Source

Built Distributions

charset_normalizer-3.0.0rc1-py3-none-any.whl (45.5 kB view details)

Uploaded Python 3

charset_normalizer-3.0.0rc1-cp311-cp311-win_amd64.whl (95.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

charset_normalizer-3.0.0rc1-cp311-cp311-win32.whl (88.5 kB view details)

Uploaded CPython 3.11 Windows x86

charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl (190.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_s390x.whl (192.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_ppc64le.whl (202.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_i686.whl (191.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_aarch64.whl (189.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (196.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (197.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (206.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (192.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (197.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

charset_normalizer-3.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl (119.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_x86_64.whl (122.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_universal2.whl (196.0 kB view details)

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

charset_normalizer-3.0.0rc1-cp310-cp310-win_amd64.whl (96.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

charset_normalizer-3.0.0rc1-cp310-cp310-win32.whl (88.7 kB view details)

Uploaded CPython 3.10 Windows x86

charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl (192.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_s390x.whl (194.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_ppc64le.whl (204.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_i686.whl (193.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_aarch64.whl (192.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (198.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (198.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (208.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (195.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (200.0 kB view details)

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

charset_normalizer-3.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl (120.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

charset_normalizer-3.0.0rc1-cp310-cp310-macosx_10_9_x86_64.whl (123.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

charset_normalizer-3.0.0rc1-cp310-cp310-macosx_10_9_universal2.whl (198.4 kB view details)

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

charset_normalizer-3.0.0rc1-cp39-cp39-win_amd64.whl (96.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

charset_normalizer-3.0.0rc1-cp39-cp39-win32.whl (88.8 kB view details)

Uploaded CPython 3.9 Windows x86

charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl (192.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_s390x.whl (194.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_ppc64le.whl (204.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_i686.whl (194.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_aarch64.whl (192.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (198.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (198.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (208.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (195.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (200.4 kB view details)

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

charset_normalizer-3.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl (120.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

charset_normalizer-3.0.0rc1-cp39-cp39-macosx_10_9_x86_64.whl (123.3 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

charset_normalizer-3.0.0rc1-cp39-cp39-macosx_10_9_universal2.whl (198.5 kB view details)

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

charset_normalizer-3.0.0rc1-cp38-cp38-win_amd64.whl (95.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

charset_normalizer-3.0.0rc1-cp38-cp38-win32.whl (88.5 kB view details)

Uploaded CPython 3.8 Windows x86

charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl (190.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_s390x.whl (193.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_ppc64le.whl (201.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_i686.whl (193.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_aarch64.whl (188.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (195.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (195.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (205.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (192.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (197.8 kB view details)

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

charset_normalizer-3.0.0rc1-cp38-cp38-macosx_11_0_arm64.whl (119.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

charset_normalizer-3.0.0rc1-cp38-cp38-macosx_10_9_x86_64.whl (122.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

charset_normalizer-3.0.0rc1-cp38-cp38-macosx_10_9_universal2.whl (196.2 kB view details)

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

charset_normalizer-3.0.0rc1-cp37-cp37m-win_amd64.whl (93.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

charset_normalizer-3.0.0rc1-cp37-cp37m-win32.whl (87.5 kB view details)

Uploaded CPython 3.7m Windows x86

charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl (166.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_s390x.whl (165.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_ppc64le.whl (173.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_i686.whl (168.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_aarch64.whl (163.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (168.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (177.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (166.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

charset_normalizer-3.0.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl (119.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

charset_normalizer-3.0.0rc1-cp36-cp36m-win_amd64.whl (91.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

charset_normalizer-3.0.0rc1-cp36-cp36m-win32.whl (85.3 kB view details)

Uploaded CPython 3.6m Windows x86

charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_x86_64.whl (158.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_s390x.whl (158.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_ppc64le.whl (165.2 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_i686.whl (160.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_aarch64.whl (155.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (163.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (160.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (168.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (158.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

charset_normalizer-3.0.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl (115.6 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for charset-normalizer-3.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 ed0265ab660362f4c2a7f44edb54d6ba55e8164e02b1b89a3b2acf7f706ba813
MD5 f6f63f601e1b534a7eda496876ccb976
BLAKE2b-256 4327b92f9a847c1e3e5d53f61a5e8100895899294452dde857d15edf31e2ba33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 a56bc1315f383be1b8431e347bcdb192b6fd2090b86aaf3f428a3a70b039313f
MD5 79bb742e4c7f6a427c8feb998e2de726
BLAKE2b-256 717a7294228a660fc306cb8497bc443ca80999d5f9727ddca1cd39aac579f299

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5f9044f228a486af882131e565d2756f5e9662a308b67410ad2c827813422974
MD5 5c899e7bf60b44cc69f799c9a1b75f5d
BLAKE2b-256 731eea19747ac34c151e5eee9b9c10dfaf318dbb635e591c908d5734ca993005

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4a34043ce38cb4539a79ea4c7b4747365fab79fa4dd8a40b71f89c424f9df302
MD5 81ad184435e5f8545f04611cdbfb8618
BLAKE2b-256 728a3a6ae8bd1bb03359a10aac34860c4045a2956107bad5caddcc45fd6eae37

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9fab98185582a23b5902cb95e94f6d5544ae6e00594863cd982786e2f4f7a987
MD5 ffc07511c25f04dc7ad0471ddbef8d2d
BLAKE2b-256 bba9933f01c3e27e3f15a48b06875789241a5085e0876d81fc85de02c094b737

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 281ff974f2c909242a6c5f9dc15b523d87c45f91056261ba6640e6b8b0e7d272
MD5 f875e28bbab91f577b8c9cb22fd1d74e
BLAKE2b-256 0a8b675652a02fce0f6a441333c27ca01f529cdaffb484a0c9cd064fe48086af

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 59d15d7be095c6dc98915e9360b4584a3f0c7cd38fa2f84ae2c780ab4b39be2d
MD5 c98ff4cf8057d322598f2498ac0189ab
BLAKE2b-256 ac388524df326cb650110a1bfa11337c671668fcf6e198d8700abab626e7db6e

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 317935f0f207a01975534ec04f514075ee45b0e9ca28ffae69b9d68bbbc36e9e
MD5 f7d3298c7e8f047b6b268ae2812c38e7
BLAKE2b-256 d9642c6ff7e3cac33f6d43ba1b973ebb7c52338a5fd7ab1fed165f61fc223f09

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3c6322f11f5d7778ef7d16f4ca4f08500029dffea498ca6aa52280c50bbac9fa
MD5 b35d73c464b2f76ebe43ecb10a42c212
BLAKE2b-256 c9ebae5b4607b66546b99d53881691fa7dbea572b815643e1493e6e89fd1f15a

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82479a64253373e1393749c21462d0accd790f517e065e0b5c6cd6e0c92947b8
MD5 064eba8339909949d0951ce779690c9b
BLAKE2b-256 208549bc2f3f7b92b5176213fac124e210efebbfaf81bc2a84a07c53e322a143

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e286329a14c90cb8d0ca62c3cb5f4ea9f00a09e4b303b9ff1114e4979771c540
MD5 381ec837ff5e356777404b443f4da88a
BLAKE2b-256 bdb49406845b37fbf21bd0a52eb3e095486ce60901d5f487a4311ccd8fc8cc99

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 353210a6d2a8031cfcb8e3c6759ec13f6be06302545e1d56506631cf8a4a2edc
MD5 01d0280e9e0eb56f82f77d9ad8487310
BLAKE2b-256 e736622be4cae089e8f34d71340831e37ae461da574b94cfd6ea160f6fa23e64

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 868718ba96e17a0831d113f833548867b4841ff631227d399a14fd03607c6075
MD5 f301ade3bbbd71c20dbc53d8c82639fa
BLAKE2b-256 045fb1dffa8a025d0cd356fdadddfeb2b27df0605cb545e1ed9da854d0d019b5

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7dc9c104c458f31e10c3fdb68b8c1c1abf6a4e372261df385b4ba7057da0be9
MD5 ec85d36101b710c6db3298acab6a70d5
BLAKE2b-256 a01db621d0420d9e973a65f5635a481948a65f6cb6ac0b2830ddbc9c5bbd56d1

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15e8a1782a6845e3dcec8344cac766b9c1f56f7420fc76fde5c7d3991b8cf274
MD5 9eb07ce8ff4f27961125607980c7ed78
BLAKE2b-256 bbad0d7e8e0702ac567e251cf7258ff122ddda181af4b722e8696a3480c93938

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 132c2d502e2a2c6196b2a377ac6119f4355d3fde6ad2f4b88ffe6fefe6fb6b99
MD5 438e334a1ee193db6ee04f9aaecb9f15
BLAKE2b-256 2a12f9d1f79e80405e2de04e4adff0adf3a9b4999e818e6d6e917a0591775633

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 210b09a1397f678718a70a4e005b7e9ab2d8007698197519354ad3788fda70f9
MD5 b504521b3f204cd9ae4ed9876a630a35
BLAKE2b-256 2bac94a94c47cf5c5806aa7556f15ee9ead26a2e9dfe3e9c5f86ab05301dbcc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f3623f684818f5bc053b0edbbf364780486964db13a6b39d1283652a30870eff
MD5 63cf7e60f11685ac61a61c7803bc1c19
BLAKE2b-256 3de57e73b4c3f051b653bf934a1c0da9cfadbf869305a2167ef0110f24ca33e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 906e83de546db5e389edaefd5f8df68be997fd03d7c7b9e84b6bd12f38977e07
MD5 d9dc60df293f1464dc86463146e66d31
BLAKE2b-256 26c356a0d3dd99e55ec7ef4f681cdd0d6cf9e7993af3974af1fa064c9f3385e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0ce52a161707dd66dc8055fe97ba633ad8f777c6d01d89a0f876246b643a5c76
MD5 e46186b83794e4ac1c221c6769a2cfa9
BLAKE2b-256 73154225bafeeb9033859731a3c456b54c5d30d9c18a56a4859b2ba5bba27c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9f1a9f28ea3495ce36ee435aa3dc43704bc7a0a3409a22f965e2608c7727c54b
MD5 ef58296fe0327ce6ed19f9de5da1d9ca
BLAKE2b-256 a08fddc70622e316279171419f7c5919c02ee6e2c7b142f3bb12f45a14ec3005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 676a6ae3dc062fa48ea1e31164c805743c870fdc9eb46bfb32ef98b453e98be1
MD5 1523eae08263a37f6b8da365c5fd988e
BLAKE2b-256 7e3bb9ff75394115c2c15be43b9d4f7da191efd0e437451dd9b5c8f1518f12a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5ef1f3c949e449a383b0bd3bf85757e5b12de336031c32fc3ba47c0bf5ff651c
MD5 ac4f56a909aea8d32756058d7fb40605
BLAKE2b-256 6998d6370b54f4f062281a7645a20deb0068ce14a9df1a2ee872d24dc35a474b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e1bff073a4148d92b636f3cceae0ea92f9dacae76e8f41461f623ef8025c8045
MD5 099fbddb1d15de312d3e02179c3da459
BLAKE2b-256 4d8085354507c9b8247608682623ecc7e7297b80c75a826ac68866a575f7fb02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a24af9576233d2d96a7a87e04459ec71faa217ac9f44975a51789df02891a4e3
MD5 9ade6c2f2b9f32a09dc1934dddf93460
BLAKE2b-256 cb42ae7fe401bb88bd93972bde6bf916ea06f35e7d2557000dc8756b2dec1099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 496ff858eaebe319b540dc30342867d049184efe10135e4abcbdb10b711b055e
MD5 7eaf97449f8c413bbe7a2b53a8a802c6
BLAKE2b-256 c3b048a74936b8b033f3cd1fb074258b8ddb2ec40206087105c1f1d0b644bc0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a167929cf942845c1d56c37e58ca3a56d214f712654a764478895dab0ad2d82
MD5 d330363e9e96a0efc26ef6ed3095efdf
BLAKE2b-256 376d3bd893e77dfdd18f1847431d5b8d9b6bbdc5d58ff85b4baa599b470a9450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 899c064e7b490f31d185d1da58e4258559b6d219ecde41588f9b27b4dad46fcf
MD5 5c4e42d311698c1a23f9f12442231241
BLAKE2b-256 5387f4d2bd1709487637339fb0446c2bd47261707199209da405da8608c890e3

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-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.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a328ca5401263daabbac025b544e3a43d1b0b24dba85df71f1a00282ca21e9e
MD5 a3df5add4989183f09aaea975a78d78a
BLAKE2b-256 1087fd43f365ad176eeba76abff5725b71fe8d30811106aa3ad090c8c5fd3074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 119433490ca27b2e0a6d4b3d9b4d0a26d755a69c4eaae3468a79da6eff161c0a
MD5 54d0c6055555864e7e3490d1085c1ca3
BLAKE2b-256 f7672579e2970449c14a2b321e214bfc19d0091196dc94bbc766c1f08a5ed7d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4bf92863caa81a00ca016c5ccda129d67c202407bd8f1cd45f376bbd1302da46
MD5 ad60c24253bfee00ad4a168b12851aad
BLAKE2b-256 28d647984074caa6f6c19fbecfd69b1b7f472643b9d63251ef683031316e49ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8ab8be4ad459a946db1eb004bc689d04018d78896508847ac6355b45d93b1977
MD5 8f27fb3f3cccfcd8d7b3158454c46160
BLAKE2b-256 95641de9a8d035c1f510f1384a13448905f36f3ad1770e5383eddca9036ba5f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bd8c1b68cd3f7d05fb2067044b034d68f14c8b5db2b437f5d4c8d2e7d5892838
MD5 0ce53cf3fe26ffe6ec961ac0c4f77596
BLAKE2b-256 0237e0e07df1266e42ce1713dd03399c31794759f75f27646da3769c72d7d715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4f9fff8c6e6fd77af1d3dc4d67709a03be0444eca7df018c318116c16dbd14f6
MD5 64482c92f2e7ba7237d7998118a0bac2
BLAKE2b-256 ddb34a2697a66ce90a9f46f164dfe3081b00086533933190221db7d144049c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 13b2a576e8ba6392abfc778f778dd682a0168c109817a0d91bcd5dc24efa2ea2
MD5 d3d419378b776e1de9fa4e9a62b3a76e
BLAKE2b-256 98aa26cf5700d6d1d1c89d01be164cd8b1c41deabeb892db6506c7d70df2d14e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 7b619d27a03348bd7ab7e663c4e5aae972ca37f524d302d0b9df249f4321f5ea
MD5 2c5560e88805a013c7a2876ab797ab1f
BLAKE2b-256 55a640e0835ea3ebfa3dff56f0e403e3e0488345d2ed898cbab69e1474ef3064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 e1070093932ea925c30f51ade245aec4ccd00c2ffbbc29f081b1947af2e5c991
MD5 f02c27bbed774c217d91793e5ad5d91b
BLAKE2b-256 fb851931cae04d18e0f7950c7e8e9d47d6ec72b810a47e8c8f8709d5dd2b85d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 881968654e93b625598a6fd1fd32a08e783318c88c4f2b7ba0a88bf8090065f2
MD5 46b4749668d7c78b5fd2a519d365a724
BLAKE2b-256 0c1125545e767d0baddf15bf417f1063846dab07f23f47a49612e34dfa5c8bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 257a8eedd4c04a0ddde9ce1d3f0cc3c4595f34a7d19f19e4f5b092017cb22c40
MD5 241e42ada528f96213543143299e4bf8
BLAKE2b-256 411f0bc64ce80305c47509ee06693cf5f42892d21ee5b62e6b97d4d99c5aecb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8d8231bd15c623739804fcb1c7c027b36b51a95c7fe346a7d1c8e4f94760b75
MD5 a0da2673cfe7eddbea727979b6c56b91
BLAKE2b-256 be1455addd12c246c7fc2bdf0a8de42fefaa10487d239d9ef3a291ed52334e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 429d64dadc738146ce665bf1015e993c2b4a42d887c8da2d0fb3576819545c23
MD5 77d08a4dfdab3dea002d9f4002f28caa
BLAKE2b-256 47b22e7a852ffaee257b7e6aba5febe32eec3f5133f19c18e6591f8d95f848aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6aee1822aad822449f81b5067dce4bd4babbf75da30ce36125b9b21e5865d826
MD5 e2fa16218096e01a698b3860014302b7
BLAKE2b-256 b707a1da9c24fa6523aa3b97d3865c2335f91ab8cc424a9ad67eb8e6a8f4fba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c3f0feaec10788f6cd88ccb124f7bd921a167f7d0a69b283c09a1e8c0ad9567
MD5 9b66a932bb38da4a052b1817e8c86f39
BLAKE2b-256 290abde5018d04e8cf6fc0f84db342769f4bcd3e2daf8e4a53dc5e226c28efbd

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-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.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b4b86524875172f47c13b6bdf0e0f4d5a01fc2fe8f6ceadaf40487ec2ec3fbe
MD5 77564ce661e44eacba6b2a3f2074ac70
BLAKE2b-256 21843b50d08fdcb1b742d3f730eb3c3386c54afec29373c168c89582b4301859

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7d1a72aa7fb7fdfa9cd47a30da8e5653ab740326fa5dbb89fc80aca99324935
MD5 3521514d0ca288fcaf97d20eeffe8595
BLAKE2b-256 fdcd2880e4a792f3c59c9d71074671f6dc831b716e3f892c40b4fee685ffb1d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26cd09b9a8fdc3627742beaabcae2e253525feb2d48c7a6ef10f4adaa23cdb18
MD5 53b756feb3d4f5b7565f639be075647b
BLAKE2b-256 cd33a3dea03f4f2550acc8e775d88421cb4fe140a4767a0322d2fa72dc4c4b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 304dfc653ca04b63c522046cc9dd02bb9d6726f42e2ace6f3f501abe55886f87
MD5 fed4720ad53a5a4d9a03f52bc49d005e
BLAKE2b-256 c54883f65b1de4acd3e29ba864d48c92822afc1da53b028073a59fbccff557ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8d943d86c91b0d7169d02c27b0bb6fb1d453a4efed360102420becaf390195dd
MD5 db438ce51e0a02548b367eae9db75b59
BLAKE2b-256 1b0eb82b1a4f63b3f99bbfb5e5e499e91fbfaa9b7c0be1d7cf39b977165a7af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 70e56c4b840f92738f4169c7de2f3cac57ac57c101df90e60233635d79ba3536
MD5 5e3919d5d404abe59271b91ceffcff30
BLAKE2b-256 68dc04a926b598f0dc41fe3f6cd8cc79fe6152fbf53a003715fe474decd817a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b9a21756a9bdf87f0473daa267a11fa9c1f0a7f411aefd2092885b83085fe565
MD5 304d1d57efbb8a7ac91cdceaeaa2224a
BLAKE2b-256 f22380b57757bf817d923201ea6542cfb04cf354468dcd5963adee3f4782f547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 bb2f73947ef86a6649d65cc8fc0b73711aef4a306b63c89c0ff1f76343753749
MD5 a4da80bea85e42b28b18b863a1b13307
BLAKE2b-256 15463d7796eee791781f20aa41280cdae343510695a76c0cadeef12132592df3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 9e0866d5052ca6de1c004202f7d182c3031968be1fc27f74eee3a4259c20ad90
MD5 c8523985a95c900b5bcaf77072327e63
BLAKE2b-256 8bf5e37f3e4f7864c99591457f6829623f4845d75fe1da2851783d4096270157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 994363d24015a9cfe20690acd50b372962303da75befc3a0c5b8bd7a4ae614e2
MD5 24ac8b05c2de53888c41fd29cf4055af
BLAKE2b-256 96c76dc01e7cb4342683124f68e10b1d33001b15cb9c51f27d8888f461374182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 26ee368d7bdc080035f293eb4a1f85a1d4daf0daaea6d4e7819ae41c75742a27
MD5 aee08bf1dc1eb727e563d08067086e6f
BLAKE2b-256 abb788932ff7ced4517134e6dad2bc24dd50d7a6d7748f779e4520c971192de2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7585a9ddbb99be18b2466f289efa1955ef6aa5682803588d98f1cae5ad441e15
MD5 d0a7578730e08098cd7e1a0903eae777
BLAKE2b-256 cd4ed94bc2df39727b8b5f181ad045ca5a87c673040d7d615805a64c0ddcf7c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b74c2bebf36ec3abfaf17a01977bf625bb601037c8de968aca2312ff5bd9ed9
MD5 029e8f6607f78aa5ce8cd4716ccd718e
BLAKE2b-256 875a9fca591737389517f92c59d7d499e20829f9acb43bd19e981c1fac20b938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f773596fc6284eb17033698d892741543e4ee00e7f5db0f5c732467d020f2366
MD5 f0cbb1c30dcefdd353dd9c2830c23841
BLAKE2b-256 b6a61411e79b932f032c9fc587359a7a3480977c74330967193f5e473ec6cfcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47cf2a75e34ed4ac1a4d00bc788d01a2e80ee369159d8d5e1e24480827194120
MD5 3be44e55e7a9eed2444b567b56572155
BLAKE2b-256 4a226e584761a83db7884fadb76f23c785b68d5bfa11961f100056e9ca2648b9

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-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.0rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4bf64d8fd6c82966c71bba87728a379782a62716aea31f5ca9bf9fcaa1969e4c
MD5 47a8641ee9069a933bcc167cd4dbf57b
BLAKE2b-256 b3bc1fcc447ea19f0be9828649527478538fa284b0c6fd8eeb7c0149364c7124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56efe61a7c9c174dae89c7deb003322063b51e4cda6e4a094cdf6f94548ed9ef
MD5 b87658802ec5df553d6ee3ebfeb0fb27
BLAKE2b-256 8abeebe5d3c260286db6b9512c234a24c568d0762a2cb766b4beef544ac3371d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb342d823d9b2b9bc3d6311d3c410e6d3191f02ad980302281072234b612d8f5
MD5 adca245b6562ede30ed4b4a98d9bd5a2
BLAKE2b-256 e3ea74239615a99bcaf0297902072a9c7816db6044ff930b81ac2e30896b2b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 880b10f7751a1ce29cf2e8c06b1e43b4dd3d05f7c4cb63c51bef454bd791b17c
MD5 f6e5972bf6a989d7118f7cacd44f6e8a
BLAKE2b-256 3e0adf815c996f3a7411c7482ebb9feef59eb8f846045a45c7043cc8e09832aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3acb525025fcfc525a707621aa652275c079b1d05f03ab4c414c45b3f0107a86
MD5 56d15b46f5257e6f6c2fa37298073366
BLAKE2b-256 f4e3f4891627edb285edc625c3e6feb9caddd158989fd203856ddcf5d6aecc73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e0f5fcaf14b4f10ff0749f3b28c367f2675b8c02e5bd09a8ecd8419740211f11
MD5 8446e4cf4178a59a60037d243ca90cd6
BLAKE2b-256 914484d297e9d77a912569df47b2fb7b0107a2eefca3dd1d1d0737d4c69d4373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3f8910cf63bf9527ed19ce0dabb70222ef96dd13d8fb3cba8d4adc898ee939e6
MD5 b4b5aef49e3790167bb3015f162781ae
BLAKE2b-256 7666bcdd983b12be28e22adfb0dd250a7d242b97481aa1fc446d3873db9e91ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 459b2d7c189f9ca980186b80256757762a60210c0b0c5b00e7bdfe47474c4353
MD5 e3f591a7822febc4538ca46a27c57f79
BLAKE2b-256 412e8038fae4c2d50bf74e5a1fb3d69682413abac99dc2b05cc28d8392e1b66c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 fbd3adf9bf976d06ac718b490b7852ed9517c24b158fc02da0ab3ec1b75f4716
MD5 25c1a326b72899e9be0e5a2062500872
BLAKE2b-256 37a8fa5b9579eb00376c3eed5d6408701f953e249a1b29be15af314c2fb0c349

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 65e0dcf41b58b9c4363d2f03c58b7b8a95953f26af321084560fb193ac454072
MD5 1b08a87a4b38948da4fef5c89d28aa0f
BLAKE2b-256 488240c8cf8b6806fdc78f97dba8fc2550f6c6213e64844d3b7ab6c23cf97c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4217da8f51516bfd7953cacf5f61163796a7e1422bb5c0542a4f95b307e324f8
MD5 c041cda65e514c73f6af929c6c82f206
BLAKE2b-256 9ed6330a47826494bb71d636e3ca34d736380d57290964124b8025f0228e4ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4c0b7fe49ecdaa5e5bc11ceb8bcdd8a739078b7464a468577a253021a2f2d8b
MD5 5875a69fe8efd859d8f5d46cf4fe3cf2
BLAKE2b-256 f3035908971965644495aadb93497a025d8f2058c5a509f773ad07bd9ac2bb6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a35ff3c72b2f4aaba892214136db8c58aa5ee3ac31aa6546ff863fa14478e49
MD5 8ccbeb91b6e075b7cfdbf5a154df5d1d
BLAKE2b-256 49beaaaad85c264d2049c7f948b5e358381f4f9a2cfe54d009bcb5b551c62650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4348ed9ee0b69f2be1933db378dd7eb2a769baef851d6971851457afad24715
MD5 d1b4bd711ed7fbdbb2332ca14b36c1a0
BLAKE2b-256 e2cb89bb034604de51985cda8285ad9b8876b9d71818ce8d89a0cd74a8901169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01cb4d686d81da98b2d4e52e642a03f3a53db742d56df98b080811fb87f520b3
MD5 badf3a75208ac60d3d89888623ad0d4c
BLAKE2b-256 8d28c094030a73a6f531e33399d818859f0564e57892418df25e645b07bc10a8

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-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.0rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d2d760259faec6ddf742b5f3b1aac3ae7a78789de0824b1ed6d45a6750d0b02
MD5 f57da79128732652be7688492471f3c4
BLAKE2b-256 9e80a760b5684524effbe5ccf62c9aaa3dde73b7141de37f57a5fbdb4beb0c4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9452f8c67f7c85875b27666cf2fc37cb768514ab1fee6b1675c5deaeac8bc8d3
MD5 edcfb553add63cfbb1a5b85f46c027a2
BLAKE2b-256 d3802cdeed6898d6315d3324a5cfc2a495dd234ef61f8e92f55cfdb5979b71ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2744d66516657c058b209d1e573043557750fbb1bb5d271336b62561bcfd078c
MD5 c6f582f17314515d24fefe414f9a47d8
BLAKE2b-256 08ae3e5b807fc973e00be2554c5277febf4d79c1f0284e40771ad22bf3387440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b21395de8f247e6a32b376f6402b10e669f346e5a01b0d8b7a2e4abbb598b54b
MD5 387a3d86cb86001be47ae2d0f049dae6
BLAKE2b-256 f83eb9685c4db3fdf5873d3f7cacba66e618af8814c4d42f2f826397975cda71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e45f0b975c8785159522dfca733d99a2a37996b5aac0e7a1571cfc4de962599c
MD5 d37915a8e354a5d24cb414ab0f4b4a5e
BLAKE2b-256 bcc8ee57c3d11a85f36448e0dbbfcad0a675a60b6c40b52a8a2b14f0775c80b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 3b394f4fe0b73b9966c922b71564ed60c12e6fcb98737b91ce72844808abfa0f
MD5 a7aa2ea8d10a8064426a5b7d4c8a12b5
BLAKE2b-256 e8d1548da483cbafd9eff36042a940bfb0ba532eb7072aba795d85bc9c65527a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 122c73dba3c12d43d8b5250edc1dc5437fdfa95bc95628bbe5c41e4417bd3242
MD5 a3698babe9c01f1ad82b3f3c9b3a876f
BLAKE2b-256 b8558c520ed03e30213e060de9d79504ba96d61c21ff2e5e800bf19422815efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b2e70ef31bd1e6659dc96e4ce867c1c3b2f89bc0df15ef110780c78e5916ae5a
MD5 3e45d00df88af3cb90bf0fc7ce308a52
BLAKE2b-256 58c306e8e1c001932e1453a6ececb3b35fcdb6b8f9a378bfd5d631edf2bdb6fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d1cef8520e0a1b785dd780d3ed92fd88d56758d12db250a99eccd7480f90c56
MD5 804ec4eeed5716dd7bdd2e93712e0adf
BLAKE2b-256 a35607a81956a3b6cb37618cced51ff48a9790b423ea7594686b1c3a632fa32f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f84431303accfa353ca3c49e93301cfee3542737b488af54a23814a64a91d4db
MD5 050a891ebf74108991d5614cfb874aa6
BLAKE2b-256 8b4d98f56fbc64cd1b89e3a5c44957b5b17297a4a2d61d7f2f3d2022bd0cdf96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da84e9f173bbf03357b358b92465a6edfa6d794c05a12983f41acb2be8832233
MD5 06f22047c003cfd1693230b064cc0b85
BLAKE2b-256 c49f52da65c408afcd8c56feeecd5a717cc7530c4d40add8728fff394d96e4e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b3812bef24caa501d87785b11ac128e19e995690bb47fd84e760a85a028085d
MD5 1770dc52a0f0229cc69d5b106737f265
BLAKE2b-256 773a2967dea3b5e2bd1371f317cf5cd805ab06cef9fc045b245f0e910ecb1a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f65901d0a00e56f970e9940a7c730b8a870cb2c9f925f1275e500ad75b5fd84f
MD5 5c854fac679aa4cc914e7b63ee325b5c
BLAKE2b-256 55228bf2b3632ca8878a9843e26e8e4985dbb180c828d11a83450983a7ace8ed

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.0.0rc1-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.0rc1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2dde042e2580f531e1b47cb9bc55fce06d147ca606a891de757231ed3e65e485
MD5 a9530b0ef4c541ca8d37a4c95c811f2b
BLAKE2b-256 87786145172e9fdcfa4ca308e08228987199f2e649641c66cde4f8613e5a9b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.0.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a51bfbc8f6ec1fba407c2689a17ce4c0c1b648a92ecf7925a97fba80e9b4df35
MD5 9e07bc249e79b7f2fba64090d452f55c
BLAKE2b-256 f2ab6172b6073cd3efe5d40756f050aebf5979bdc82ab5264c3b7573a0c4037f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page