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

Featured Packages
Static Badge Static Badge

In other language (unofficial port - by the community)
Static Badge

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 (min) 193.6 kB 42 kB ~200 kB
Supported Encoding 33 🎉 99 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

⚡ 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 pip:

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

or

python -m charset_normalizer ./data/sample.1.fr.srt

🎉 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()))

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 noise, 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 noise/mess and coherence according to YOU ?

Noise : 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 noise is probably incomplete, 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.

⚠️ About Python EOLs

If you are running:

  • Python >=2.7,<3.5: Unsupported
  • Python 3.5: charset-normalizer < 2.1
  • Python 3.6: charset-normalizer < 3.1
  • Python 3.7: charset-normalizer < 4.0

Upgrade your Python interpreter as soon as possible.

👤 Contributing

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

📝 License

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

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

💼 For Enterprise

Professional support for charset-normalizer is available as part of the Tidelift Subscription. Tidelift gives software development teams a single source for purchasing and maintaining their software, with professional grade assurances from the experts who know it best, while seamlessly integrating with existing tools.

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.4.0 (2024-10-08)

Added

  • Argument --no-preemptive in the CLI to prevent the detector to search for hints.
  • Support for Python 3.13 (#512)

Fixed

  • Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch.
  • Improved the general reliability of the detector based on user feedbacks. (#520) (#509) (#498) (#407) (#537)
  • Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#381)

3.3.2 (2023-10-31)

Fixed

  • Unintentional memory usage regression when using large payload that match several encoding (#376)
  • Regression on some detection case showcased in the documentation (#371)

Added

  • Noise (md) probe that identify malformed arabic representation due to the presence of letters in isolated form (credit to my wife)

3.3.1 (2023-10-22)

Changed

  • Optional mypyc compilation upgraded to version 1.6.1 for Python >= 3.8
  • Improved the general detection reliability based on reports from the community

3.3.0 (2023-09-30)

Added

  • Allow to execute the CLI (e.g. normalizer) through python -m charset_normalizer.cli or python -m charset_normalizer
  • Support for 9 forgotten encoding that are supported by Python but unlisted in encoding.aliases as they have no alias (#323)

Removed

  • (internal) Redundant utils.is_ascii function and unused function is_private_use_only
  • (internal) charset_normalizer.assets is moved inside charset_normalizer.constant

Changed

  • (internal) Unicode code blocks in constants are updated using the latest v15.0.0 definition to improve detection
  • Optional mypyc compilation upgraded to version 1.5.1 for Python >= 3.8

Fixed

  • Unable to properly sort CharsetMatch when both chaos/noise and coherence were close due to an unreachable condition in __lt__ (#350)

3.2.0 (2023-06-07)

Changed

  • Typehint for function from_path no longer enforce PathLike as its first argument
  • Minor improvement over the global detection reliability

Added

  • Introduce function is_binary that relies on main capabilities, and optimized to detect binaries
  • Propagate enable_fallback argument throughout from_bytes, from_path, and from_fp that allow a deeper control over the detection (default True)
  • Explicit support for Python 3.12

Fixed

  • Edge case detection failure where a file would contain 'very-long' camel cased word (Issue #289)

3.1.0 (2023-03-06)

Added

  • Argument should_rename_legacy for legacy function detect and disregard any new arguments without errors (PR #262)

Removed

  • Support for Python 3.6 (PR #260)

Changed

  • Optional speedup provided by mypy/c 1.0.1

3.0.1 (2022-11-18)

Fixed

  • Multi-bytes cutter/chunk generator did not always cut correctly (PR #233)

Changed

  • Speedup provided by mypy/c 0.990 on Python >= 3.7

3.0.0 (2022-10-20)

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
  • normalizer --version now specify if current version provide extra speedup (meaning mypyc compilation whl)

Changed

  • Build with static metadata using 'build' frontend
  • Make the language detection stricter
  • Optional: Module md.py can be compiled using Mypyc to provide an extra speedup up to 4x faster than v2.1

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
  • Sphinx warnings when generating the documentation

Removed

  • Coherence detector no longer return 'Simple English' instead return 'English'
  • Coherence detector no longer return 'Classical Chinese' instead return 'Chinese'
  • 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)
  • 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

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.4.0.tar.gz (106.6 kB view details)

Uploaded Source

Built Distributions

charset_normalizer-3.4.0-py3-none-any.whl (49.4 kB view details)

Uploaded Python 3

charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl (102.3 kB view details)

Uploaded CPython 3.13 Windows x86-64

charset_normalizer-3.4.0-cp313-cp313-win32.whl (95.0 kB view details)

Uploaded CPython 3.13 Windows x86

charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (145.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl (149.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl (151.8 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl (148.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (140.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (144.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (142.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (149.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (139.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (146.3 kB view details)

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

charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl (119.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl (125.3 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl (194.6 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl (102.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

charset_normalizer-3.4.0-cp312-cp312-win32.whl (94.8 kB view details)

Uploaded CPython 3.12 Windows x86

charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (144.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl (149.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl (151.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl (148.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (140.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (142.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (149.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (139.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (146.1 kB view details)

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

charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl (119.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl (125.3 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl (194.4 kB view details)

Uploaded CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)

charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl (101.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

charset_normalizer-3.4.0-cp311-cp311-win32.whl (94.4 kB view details)

Uploaded CPython 3.11 Windows x86

charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (143.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl (148.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl (150.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl (146.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (139.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (142.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (141.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (148.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (138.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (144.4 kB view details)

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

charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl (118.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl (124.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl (193.3 kB view details)

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

charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl (102.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

charset_normalizer-3.4.0-cp310-cp310-win32.whl (94.7 kB view details)

Uploaded CPython 3.10 Windows x86

charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (145.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl (150.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl (152.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl (149.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (140.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (144.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (142.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (150.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (140.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (146.6 kB view details)

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

charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl (120.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl (125.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl (196.4 kB view details)

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

charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl (102.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

charset_normalizer-3.4.0-cp39-cp39-win32.whl (94.7 kB view details)

Uploaded CPython 3.9 Windows x86

charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (145.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl (150.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl (152.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl (149.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (141.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (144.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (143.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (150.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (140.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (146.8 kB view details)

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl (125.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl (196.3 kB view details)

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

charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl (101.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

charset_normalizer-3.4.0-cp38-cp38-win32.whl (94.3 kB view details)

Uploaded CPython 3.8 Windows x86

charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl (149.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl (151.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl (148.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl (139.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (141.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (149.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (139.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (146.2 kB view details)

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

charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl (119.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl (124.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl (194.0 kB view details)

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

charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl (99.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

charset_normalizer-3.4.0-cp37-cp37m-win32.whl (93.2 kB view details)

Uploaded CPython 3.7m Windows x86

charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl (138.3 kB view details)

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

charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl (144.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ s390x

charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl (145.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl (142.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl (135.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138.3 kB view details)

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

charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (137.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (144.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (134.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (140.9 kB view details)

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

charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl (121.8 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file charset_normalizer-3.4.0.tar.gz.

File metadata

  • Download URL: charset_normalizer-3.4.0.tar.gz
  • Upload date:
  • Size: 106.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for charset_normalizer-3.4.0.tar.gz
Algorithm Hash digest
SHA256 223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e
MD5 8e0d0f33219087c2cd2d01b1d6ff11b6
BLAKE2b-256 f24fe1808dc01273379acc506d18f1504eb2d299bd4131743b9fc54d7be4df1e

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079
MD5 d4ecdf73c93f5741464fb2ccabd84e90
BLAKE2b-256 bf9b08c0432272d77b04803958a4598a51e2a4b51c06640af8b8f0f908c18bf2

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b
MD5 442d6d69c08c85e5622201051afcef0f
BLAKE2b-256 6597fc9bbc54ee13d33dc54a7fcf17b26368b18505500fc01e228c27b5222d80

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67
MD5 f62ac6cdf067584dca5724949c0ed4bb
BLAKE2b-256 cc67e5e7e0cbfefc4ca79025238b43cdf8a2037854195b37d6417f3d0895c4c2

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482
MD5 f2980b8fcc40a2bb08cb5ee94e38844c
BLAKE2b-256 d8906af4cd042066a4adad58ae25648a12c09c879efa4849c705719ba1b23d8c

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d
MD5 5477118ec1d93b0d06198665c8016aa6
BLAKE2b-256 044fb3961ba0c664989ba63e30595a3ed0875d6790ff26671e2aae2fdc28a399

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b
MD5 66bd937944af522a8bddcf4ecaa77b4c
BLAKE2b-256 aca0c1b5298de4670d997101fef95b97ac440e8c8d8b4efa5a4d1ef44af82f0d

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90
MD5 c6bad09e60229071f6a9ff349ca74cff
BLAKE2b-256 7d0d6f32255c1979653b448d3c709583557a4d24ff97ac4f3a5be156b2e6a210

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88
MD5 36c1bef0b3fa900e2e75653ac0113c88
BLAKE2b-256 0c751ed813c3ffd200b1f3e71121c95da3f79e6d2a96120163443b3ad1057505

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc
MD5 e5fbcb6bb61c7282b1e81857d7d1448a
BLAKE2b-256 2bc91c8fe3ce05d30c87eff498592c89015b19fade13df42850aafae09e94f35

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23
MD5 1736bc5feba40da3c050b81fd75310a5
BLAKE2b-256 fb6f4e78c3b97686b871db9be6f31d64e9264e889f8c9d7ab33c771f847f79b7

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64
MD5 dc4889b7d2466d19612e14e6776045a5
BLAKE2b-256 a1b24af9993b532d93270538ad4926c8e37dc29f2111c36f9c629840c57cd9b3

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920
MD5 917b22001562668d7c99fb7f129e6fb6
BLAKE2b-256 ff6ee445afe4f7fda27a533f3234b627b3e515a1b9429bc981c9a5e2aa5d97b6

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d
MD5 d1358ee78ccd513df6d722f0656a5d31
BLAKE2b-256 ee68efad5dcb306bf37db7db338338e7bb8ebd8cf38ee5bbd5ceaaaa46f257e6

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250
MD5 58c279eff83ef63b1ef3ff6b50d5519b
BLAKE2b-256 5bf0b5263e8668a4ee9becc2b451ed909e9c27058337fda5b8c49588183c267a

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed
MD5 eb8fcb6b3ca93c5e698d2e32ad481401
BLAKE2b-256 4fcd8947fe425e2ab0aa57aceb7807af13a0e4162cd21eee42ef5b053447edf5

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114
MD5 9d975c544691dccf57f255ea0853ec35
BLAKE2b-256 f38968a4c86f1a0002810a27f12e9a7b22feb198c59b2f05231349fbce5c06f4

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9
MD5 c9fc823bbee3fef37642e0794d938348
BLAKE2b-256 3e677b72b69d25b89c0b3cea583ee372c43aa24df15f0e0f8d3982c57804984b

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7
MD5 c7ba39ee53e96c7c7ba0b62c459b72d4
BLAKE2b-256 9a65bdb9bc496d7d190d725e96816e20e2ae3a6fa42a5cac99c3c3d6ff884118

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565
MD5 356935decc9c9fa1dd0c949bcac6de8e
BLAKE2b-256 f7fad3fc622de05a86f30beea5fc4e9ac46aead4731e73fd9055496732bcc0a4

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b
MD5 6dc471bcbc4c11c2aa64a730e83c641a
BLAKE2b-256 5abb3d8bc22bacb9eb89785e83e6723f9888265f3a0de3b9ce724d66bd49884e

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631
MD5 26be2d49d3958146b934d9d54b201570
BLAKE2b-256 9dbe5708ad18161dee7dc6a0f7e6cf3a88ea6279c3e8484844c0590e50e803ef

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719
MD5 3f5e2ab7232975b2b2f826c38af73423
BLAKE2b-256 abf67ac4a01adcdecbc7a7587767c776d53d369b8b971382b91211489535acf0

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2
MD5 509fb936fb84d00288357486443b4ca7
BLAKE2b-256 f69b93a332b8d25b347f6839ca0a61b7f0287b0930216994e8bf67a75d050255

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15
MD5 938c05fd8d95ac68f3ab588fe534105e
BLAKE2b-256 169292a76dc2ff3a12e69ba94e7e05168d37d0345fa08c87e1fe24d0c2a42223

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284
MD5 2bbbbef6bdf39fd1cc61a441d0f50274
BLAKE2b-256 1acff1f50c2f295312edb8a548d3fa56a5c923b146cd3f24114d5adb7e7be558

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03
MD5 69cd4e8e3cc7c09359e5a85e24ff7e68
BLAKE2b-256 6be39f73e779315a54334240353eaea75854a9a690f3f580e4bd85d977cb2204

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1
MD5 da89fd82e7d81e0a9d1691ce9a42d13a
BLAKE2b-256 9de49263b8240ed9472a2ae7ddc3e516e71ef46617fe40eaa51221ccd4ad9a27

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8
MD5 0cbab984b9a26b3c3cd8f12dda8e8e41
BLAKE2b-256 a4012117ff2b1dfc61695daf2babe4a874bca328489afa85952440b59819e9d7

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db
MD5 7ff1f0df544b58895e7122f4f63529de
BLAKE2b-256 fa44b730e2a2580110ced837ac083d8ad222343c96bb6b66e9e4e706e4d0b6df

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf
MD5 a35571f5f0c36ef1e76d891ceafc4857
BLAKE2b-256 5089354cc56cf4dd2449715bc9a0f54f3aef3dc700d2d62d1fa5bbea53b13426

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6
MD5 abd484147f430923876a161b7cb94a7d
BLAKE2b-256 d30b4b7a70987abf9b8196845806198975b6aab4ce016632f817ad758a5aa056

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27
MD5 6bfc04f51c61d3930dc3f5f224626897
BLAKE2b-256 0b6eb13bd47fa9023b3699e94abf565b5a2f0b0be6e9ddac9812182596ee62e4

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99
MD5 952fdfc0eeacdd7a6dff1f4cd0eddfae
BLAKE2b-256 01f838842422988b795220eb8038745d27a675ce066e2ada79516c118f291f07

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236
MD5 95c0fde1965afcdd3273fc4bc9b6f7a8
BLAKE2b-256 ee444f62042ca8cdc0cabf87c0fc00ae27cd8b53ab68be3605ba6d071f742ad3

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129
MD5 332a84abdf1649a5594348794fba4add
BLAKE2b-256 8dc927e41d481557be53d51e60750b85aa40eaf52b841946b3cdeff363105737

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365
MD5 ea1d68da8d46ea8e9a2ec19a25783963
BLAKE2b-256 75d20ab54463d3410709c09266dfb416d032a08f97fd7d60e94b8c6ef54ae14b

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c
MD5 a5bb08f7cc3416496745aa94068845bd
BLAKE2b-256 fb9d9c13753a5a6e0db4a0a6edb1cef7aee39859177b64e1a1e748a6e3ba62c2

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594
MD5 869ed0da40a3a18e10850d8fb4fe4c63
BLAKE2b-256 d7a1493919799446464ed0299c8eef3c3fad0daf1c3cd48bff9263c731b0d9e2

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc
MD5 552469dd945a0cd3efba6a512bd306e3
BLAKE2b-256 eb5b6f10bad0f6461fa272bfbbdf5d0023b5fb9bc6217c92bf068fa5a99820f5

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea
MD5 21ba7f260420967bd7e8aedf5218c414
BLAKE2b-256 13bc87c2c9f2c144bedfa62f894c3007cd4530ba4b5351acb10dc786428a50f0

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6
MD5 06cbae80a65c8887fabf2fabb19883f6
BLAKE2b-256 e229d227805bff72ed6d6cb1ce08eec707f7cfbd9868044893617eb331f16295

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c
MD5 ee975a7ef330fcbf19d553957bb55858
BLAKE2b-256 4c9297509850f0d00e9f14a46bc751daabd0ad7765cff29cdfb66c68b6dad57f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5
MD5 ce0783a782c700308187aa47641e6b61
BLAKE2b-256 3ba0a68980ab8a1f45a36d9745d35049c1af57d27255eff8c907e3add84cf68f

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee
MD5 d32b4711711417a1f1dfaca23942fd7e
BLAKE2b-256 bf19411a64f01ee971bed3231111b69eb56f9331a769072de479eae7de52296d

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944
MD5 cdc78a9b7bc2c864840fbf425fced25f
BLAKE2b-256 77d58c982d58144de49f59571f940e329ad6e8615e1e82ef84584c5eeb5e1d72

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c
MD5 f6b7c30a9cc47992c882337161d00e8d
BLAKE2b-256 9c6173589dcc7a719582bf56aae309b6103d2762b526bffe189d635a7fcfd998

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749
MD5 250b98006ae5e162021796be479f96b5
BLAKE2b-256 d620f1d4670a8a723c46be695dff449d86d6092916f9e99c53051954ee33a1bc

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc
MD5 4c7963c1124e494a7787e0e32f475546
BLAKE2b-256 6d028cb0988a1e49ac9ce2eed1e07b77ff118f2923e9ebd0ede41ba85f2dcb04

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe
MD5 f95e1202fb3ca6e5c35aafb8189b91e7
BLAKE2b-256 3bfde60a9d9fd967f4ad5a92810138192f825d77b4fa2a557990fd575a47695b

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e
MD5 3b68772b575f260f2ac9b6cf70108865
BLAKE2b-256 64ea69af161062166b5975ccbb0961fd2384853190c70786f288684490913bf5

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95
MD5 e419f9b20c63ddd709cf7648c3774a30
BLAKE2b-256 3aa48633b0fc1a2d1834d5393dafecce4a1cc56727bfd82b4dc18fc92f0d3cc3

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912
MD5 f551f10e15083a88f9a81a8591d98f47
BLAKE2b-256 c927cde291783715b8ec30a61c810d0120411844bc4c23b50189b81188b273db

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b
MD5 05dc0d8b6eae62306f23be3083d89fc8
BLAKE2b-256 d896cc2c1b5d994119ce9f088a9a0c3ebd489d360a2eb058e2c8049f27092847

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3
MD5 3917998a4f9e03628271504ffe3b6755
BLAKE2b-256 f801344ec40cf5d85c1da3c1f57566c59e0c9b56bcc5566c08804a95a6cc8257

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7
MD5 de02c3f75fab21f51695752e2db65c5e
BLAKE2b-256 f9d2466a9be1f32d89eb1554cf84073a5ed9262047acee1ab39cbaefc19635d2

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d
MD5 2337558df29bf75887c96e004d353953
BLAKE2b-256 6756fa28c2c3e31217c4c52158537a2cf5d98a6c1e89d31faf476c89391cd16b

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca
MD5 11a3451e911251db54e69e4a86bcabdb
BLAKE2b-256 c27212a7f0943dd71fb5b4e7b55c41327ac0a1663046a868ee4d0d8e9c369b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907
MD5 f32234b9808f19d4b59dc5fde15cc00e
BLAKE2b-256 738b2102692cb6d7e9f03b9a33a710e0164cadfce312872e3efc7cfe22ed26b4

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99
MD5 a30c3eb6ddfe12c04c9df42c55eff285
BLAKE2b-256 2167b4564d81f48042f520c948abac7079356e94b30cb8ffb22e747532cf469d

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b
MD5 f60d9bd4b9ed8b3eabf2e3a82463b164
BLAKE2b-256 2381d7eef6a99e42c77f444fdd7bc894b0ceca6c3a95c51239e74a722039521c

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6
MD5 577e0164bf97420c8bc8625f384f2a08
BLAKE2b-256 698b825cc84cf13a28bfbcba7c416ec22bf85a9584971be15b21dd8300c65b7f

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 95c3c157765b031331dd4db3c775e58deaee050a3042fcad72cbc4189d7c8dca
MD5 238c692d96ffaf9054250d042bca5f06
BLAKE2b-256 c5773a78bf28bfaa0863f9cfef278dbeadf55efe064eafff8c7c424ae3c4c1bf

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2de62e8801ddfff069cd5c504ce3bc9672b23266597d4e4f50eda28846c322f2
MD5 d07a07d5264c8b86693fb9f83ca63cc8
BLAKE2b-256 731cb10a63032eaebb8d7bcb8544f12f063f41f5f463778ac61da15d9985e8b6

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7782afc9b6b42200f7362858f9e73b1f8316afb276d316336c0ec3bd73312742
MD5 06d10e51a124827d0762d5bb3f66c2a4
BLAKE2b-256 549aacfa96dc4ea8c928040b15822b59d0863d6e1757fba8bd7de3dc4f761c13

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ab22fbd9765e6954bc0bcff24c25ff71dcbfdb185fcdaca49e81bac68fe724d3
MD5 9a8ba8c9bd442eb457a10f5bd0477bcb
BLAKE2b-256 f70ec6357297f1157c8e8227ff337e93fd0a90e498e3d6ab96b2782204ecae48

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 130272c698667a982a5d0e626851ceff662565379baf0ff2cc58067b81d4f11d
MD5 79a8f4a3f0aa0d88b5937a477c5dc5d4
BLAKE2b-256 caf30719cd09fc4dc42066f239cb3c48ced17fc3316afca3e2a30a4756fe49ab

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 20587d20f557fe189b7947d8e7ec5afa110ccf72a3128d61a2a387c3313f46be
MD5 064102a0e9cc55af3767dafdc717deae
BLAKE2b-256 84795c731059ebab43e80bf61fa51666b9b18167974b82004f18c76378ed31a3

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d447056e2ca60382d460a604b6302d8db69476fd2015c81e7c35417cfabe4cd
MD5 45c679344232683baabfa07e93dee791
BLAKE2b-256 dcb547f8ee91455946f745e6c9ddbb0f8f50314d2416dd922b213e7d5551ad09

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 309a7de0a0ff3040acaebb35ec45d18db4b28232f21998851cfa709eeff49d62
MD5 a19e3c07bca60f016c085bc2587cfd59
BLAKE2b-256 288960f51ad71f63aaaa7e51a2a2ad37919985a341a1d267070f212cdf6c2d22

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e91f541a85298cf35433bf66f3fab2a4a2cff05c127eeca4af174f6d497f0d4b
MD5 58de01278866185e3c96bb97a0744768
BLAKE2b-256 7babf47b0159a69eab9bd915591106859f49670c75f9a19082505ff16f50efc0

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ff2ed8194587faf56555927b3aa10e6fb69d931e33953943bc4f837dfee2242
MD5 f6bc6738ccce74242eed36fe7bd2c9d0
BLAKE2b-256 f2416190102ad521a8aa888519bb014a74251ac4586cde9b38e790901684f9ab

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd7af3717683bea4c87acd8c0d3d5b44d56120b26fd3f8a692bdd2d5260c620a
MD5 e76c06f6e73942889e99c6b167afc710
BLAKE2b-256 a42365af317914a0308495133b2d654cf67b11bbd6ca16637c4e8a38f80a5a69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 285e96d9d53422efc0d7a17c60e59f37fbf3dfa942073f666db4ac71e8d726d0
MD5 3a3bc46cedba1d55941fdfe8b98fe6b1
BLAKE2b-256 0c480050550275fea585a6e24460b42465020b53375017d8596c96be57bfabca

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8aacce6e2e1edcb6ac625fb0f8c3a9570ccc7bfba1f63419b3769ccf6a00ed0
MD5 3e22d194eaa054de163dafb0034345bc
BLAKE2b-256 d627327904c5a54a7796bb9f36810ec4173d2df5d88b401d2b95ef53111d214e

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f28f891ccd15c514a0981f3b9db9aa23d62fe1a99997512b0491d2ed323d229a
MD5 f5424a9a0f919ff50e84e0ff2d53946f
BLAKE2b-256 d11892869d5c0057baa973a3ee2af71573be7b084b3c3d428fe6463ce71167f8

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 980b4f289d1d90ca5efcf07958d3eb38ed9c0b7676bf2831a54d4f66f9c27dfa
MD5 9c0494e65cc7d3f3f2b30d1a35c2bb1a
BLAKE2b-256 542f28659eee7f5d003e0f5a3b572765bf76d6e0fe6601ab1f1b1dd4cba7e4f1

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c3e446d253bd88f6377260d07c895816ebf33ffffd56c1c792b13bff9c3e1ade
MD5 a973eb70a7ae0f4bcca2d7dee8e6eb85
BLAKE2b-256 09c80e17270496a05839f8b500c1166e3261d1226e39b698a735805ec206967b

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7706f5850360ac01d80c89bcef1640683cc12ed87f42579dab6c5d3ed6888613
MD5 5a66cb1f30106aa5a627b36dc5a833e6
BLAKE2b-256 f9c21727c1438256c71ed32753b23ec2e6fe7b6dff66a598f6566cfe8139305e

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa693779a8b50cd97570e5a0f343538a8dbd3e496fa5dcb87e29406ad0299654
MD5 0414ed25a7db53dd1391683aa41fd74e
BLAKE2b-256 0b11ca7786f7e13708687443082af20d8341c02e01024275a28bc75032c5ce5d

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 43193c5cda5d612f247172016c4bb71251c784d7a4d9314677186a838ad34858
MD5 e3358cd45c032e6613d6b15284f1784c
BLAKE2b-256 4430574b5b5933d77ecb015550aafe1c7d14a8cd41e7e6c4dcea5ae9e8d496c3

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4ec9dd88a5b71abfc74e9df5ebe7921c35cbb3b641181a531ca65cdb5e8e4dea
MD5 a5982a0b24cf39607ce5ea3e4beb504d
BLAKE2b-256 1e7017b1b9202531a33ed7ef41885f0d2575ae42a1e330c67fddda5d99ad1208

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ab2e5bef076f5a235c3774b4f4028a680432cded7cad37bba0fd90d64b187d19
MD5 dee65288d11e4d1fcbcf34de349b1d80
BLAKE2b-256 e97f4b71e350a3377ddd70b980bea1e2cc0983faf45ba43032b24b2578c14314

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc15e99b2d8a656f8e666854404f1ba54765871104e50c8e9813af8a7db07f12
MD5 6864d46c192bf89e4b9f3839b6c517e2
BLAKE2b-256 4ca8440f1926d6d8740c34d3ca388fbd718191ec97d3d457a0677eb3aa718fce

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fd30dc99682dc2c603c2b315bded2799019cea829f8bf57dc6b61efde6611c8
MD5 949e47f30af3151145cb91ce8f31036e
BLAKE2b-256 32c80bc558f7260db6ffca991ed7166494a7da4fda5983ee0b0bfc8ed2ac6ff9

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8e538f46104c815be19c975572d74afb53f29650ea2025bbfaef359d2de2f7f
MD5 90b01dfd0171682f4a99a5da3306e7b2
BLAKE2b-256 aa7558374fdaaf8406f373e508dab3486a31091f760f99f832d3951ee93313e8

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fa2566ca27d67c86569e8c85297aaf413ffab85a8960500f12ea34ff98e4c41
MD5 9a71ce7162d1294d8939c2c89d582476
BLAKE2b-256 e9ca288bb1a6bc2b74fb3990bdc515012b47c4bc5925c8304fc915d03f94b027

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b493a043635eb376e50eedf7818f2f322eabbaa974e948bd8bdd29eb7ef2a51
MD5 62f5678372801b715f18ce7ed24d687a
BLAKE2b-256 70de1538bb2f84ac9940f7fa39945a5dd1d22b295a89c98240b262fc4b9fcfe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2006769bd1640bdf4d5641c69a3d63b71b81445473cac5ded39740a226fa88ab
MD5 d57b5643090252959256fdb88d375494
BLAKE2b-256 0edd7f6fec09a1686446cee713f38cf7d5e0669e0bcc8288c8e2924e998cf87d

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9289fd5dddcf57bab41d044f1756550f9e7cf0c8e373b8cdf0ce8773dc4bd417
MD5 7fa054116e9fba9ef3a7915b7690bc3e
BLAKE2b-256 9ae0a7c1fcdff20d9c667342e0391cfeb33ab01468d7d276b2c7914b371667cc

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cab5d0b79d987c67f3b9e9c53f54a61360422a5a0bc075f43cab5621d530c3b6
MD5 0b06714a9797d2a646bd809e1becc496
BLAKE2b-256 94d42b21cb277bac9605026d2d91a4a8872bc82199ed11072d035dc674c27223

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 af73657b7a68211996527dbfeffbb0864e043d270580c5aef06dc4b659a4b578
MD5 91dbb6f162bbd0ceff10d081d8cb8e36
BLAKE2b-256 86f4ccab93e631e7293cca82f9f7ba39783c967f823a0000df2d8dd743cad74f

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 62f60aebecfc7f4b82e3f639a7d1433a20ec32824db2199a11ad4f5e146ef5ee
MD5 b877bad5ef5c92dea60787d64b23776d
BLAKE2b-256 b633cf8f2602715863219804c1790374b611f08be515176229de078f807d71e3

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9c98230f5042f4945f957d006edccc2af1e03ed5e37ce7c373f00a5a4daa6149
MD5 ed5b3b3a7d60fc0620df9c48cae71f73
BLAKE2b-256 28d3efc854ab04626167ad1709e527c4f2a01f5e5cd9c1d5691094d1b7d49154

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0099d79bdfcf5c1f0c2c72f91516702ebf8b0b8ddd8905f97a8aecf49712c621
MD5 10a32bc16dcd8c4539ce71d01a1c74db
BLAKE2b-256 b28dfb3d3d3d5a09202d7ef1983848b41a5928b0c907e5692a8d13b1c07a10de

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f09cb5a7bbe1ecae6e87901a2eb23e0256bb524a79ccc53eb0b7629fbe7677c4
MD5 8ed399f7ad3d368115160baa3bb1986a
BLAKE2b-256 1c9dfb7f6b68f88e8becca86eb7cba1d5a5429fbfaaa6dd7a3a9f62adaee44d3

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2f6c34da58ea9c1a9515621f4d9ac379871a8f21168ba1b5e09d74250de5ad62
MD5 bb3b6f1fec3d8040d5979ef265288f9d
BLAKE2b-256 282cc6c5b3d70a9e09fcde6b0901789d8c3c2f44ef12abae070a33a342d239a9

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3e73a4255342d4eb26ef6df01e3962e73aa29baa3124a8e824c5d3364a65748
MD5 5e69aa7ee4d59c100bc9d6f9792823f2
BLAKE2b-256 0f8e44cde4d583038cbe37867efe7af4699212e6104fca0e7fc010e5f3d4a5c9

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5b054862739d276e09928de37c79ddeec42a6e1bfc55863be96a36ba22926f6
MD5 c234a1454d41c035a860dbd35c8521eb
BLAKE2b-256 03f8f9b90f5aed190d63e620d9f61db1cef5f30dbb19075e5c114329483d069a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcaf7c1524c0542ee2fc82cc8ec337f7a9f7edee2532421ab200d2b920fc97cf
MD5 45a83a812d3f8e09c48bfe9431e3b4e9
BLAKE2b-256 279f68c828438af904d830e680a8d2f6182be97f3205d6d62edfeb4a029b4192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a14969b8691f7998e74663b77b4c36c0337cb1df552da83d5c9004a93afdb574
MD5 6c5c867d78f799c8eed6c6cbb0aab341
BLAKE2b-256 935fa2acc6e2a47d053760caece2d7b7194e9949945091eff452019765b87146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8831399554b92b72af5932cdbbd4ddc55c55f631bb13ff8fe4e6536a06c5c51
MD5 04b7adc463194b98525ca70a97ce16e4
BLAKE2b-256 3fb5354d544f60614aeb6bf73d3b6c955933e0af5eeaf2eec8c0637293a995bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd9a8bd8900e65504a305bf8ae6fa9fbc66de94178c420791d0293702fce2df7
MD5 f4206940a12161d2fb891964bec43ab9
BLAKE2b-256 1f180fc3d61a244ffdee01374b751387f9154ecb8a4d5f931227ecfd31ab46f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 425c5f215d0eecee9a56cdb703203dda90423247421bf0d67125add85d0c4455
MD5 56b3f005f7d6911c6052543ffc0f3d7e
BLAKE2b-256 274b522e1c868960b6be2f88cd407a284f99801421a6c5ae214f0c33de131fde

See more details on using hashes here.

File details

Details for the file charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbe03226baf438ac4fda9e2d0715022fd579cb641c4cf639fa40d53b2fe6f3e2
MD5 f81787c8f8c7a886fab9c5e954c41263
BLAKE2b-256 289b64f11b42d34a9f1fcd05827dd695e91e0b30ac35a9a7aaeb93e84d9f8c76

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