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

⚡ 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 % 63 ms 16 file/sec
charset-normalizer 98 % 10 ms 100 file/sec
Package 99th percentile 95th percentile 50th percentile
chardet 265 ms 71 ms 7 ms
charset-normalizer 100 ms 50 ms 5 ms

updated as of december 2024 using CPython 3.12

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 (e.g. 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 (aka. defining noise in rendered text). 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.

OpenSSF Best Practices

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.2 (2025-05-02)

Fixed

  • Addressed the DeprecationWarning in our CLI regarding argparse.FileType by backporting the target class into the package. (#591)
  • Improved the overall reliability of the detector with CJK Ideographs. (#605) (#587)

Changed

  • Optional mypyc compilation upgraded to version 1.15 for Python >= 3.8

3.4.1 (2024-12-24)

Changed

  • Project metadata are now stored using pyproject.toml instead of setup.cfg using setuptools as the build backend.
  • Enforce annotation delayed loading for a simpler and consistent types in the project.
  • Optional mypyc compilation upgraded to version 1.14 for Python >= 3.8

Added

  • pre-commit configuration.
  • noxfile.

Removed

  • build-requirements.txt as per using pyproject.toml native build configuration.
  • bin/integration.py and bin/serve.py in favor of downstream integration test (see noxfile).
  • setup.cfg in favor of pyproject.toml metadata configuration.
  • Unused utils.range_scan function.

Fixed

  • Converting content to Unicode bytes may insert utf_8 instead of preferred utf-8. (#572)
  • Deprecation warning "'count' is passed as positional argument" when converting to Unicode bytes on Python 3.13+

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) 2025 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.2.tar.gz (126.4 kB view details)

Uploaded Source

Built Distributions

charset_normalizer-3.4.2-py3-none-any.whl (52.6 kB view details)

Uploaded Python 3

charset_normalizer-3.4.2-cp313-cp313-win_amd64.whl (105.6 kB view details)

Uploaded CPython 3.13Windows x86-64

charset_normalizer-3.4.2-cp313-cp313-win32.whl (98.1 kB view details)

Uploaded CPython 3.13Windows x86

charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_x86_64.whl (149.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_s390x.whl (154.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_ppc64le.whl (156.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_i686.whl (153.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_aarch64.whl (145.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (148.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (146.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (153.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (143.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (150.4 kB view details)

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

charset_normalizer-3.4.2-cp313-cp313-macosx_10_13_universal2.whl (199.6 kB view details)

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

charset_normalizer-3.4.2-cp312-cp312-win_amd64.whl (105.8 kB view details)

Uploaded CPython 3.12Windows x86-64

charset_normalizer-3.4.2-cp312-cp312-win32.whl (98.4 kB view details)

Uploaded CPython 3.12Windows x86

charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_x86_64.whl (149.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_s390x.whl (154.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_ppc64le.whl (156.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_i686.whl (153.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_aarch64.whl (145.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (148.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (146.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (153.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (143.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (151.0 kB view details)

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

charset_normalizer-3.4.2-cp312-cp312-macosx_10_13_universal2.whl (199.9 kB view details)

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

charset_normalizer-3.4.2-cp311-cp311-win_amd64.whl (105.4 kB view details)

Uploaded CPython 3.11Windows x86-64

charset_normalizer-3.4.2-cp311-cp311-win32.whl (98.1 kB view details)

Uploaded CPython 3.11Windows x86

charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_x86_64.whl (148.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_s390x.whl (153.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_ppc64le.whl (156.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_i686.whl (152.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_aarch64.whl (144.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (147.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (145.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (153.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (142.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (149.2 kB view details)

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

charset_normalizer-3.4.2-cp311-cp311-macosx_10_9_universal2.whl (198.8 kB view details)

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

charset_normalizer-3.4.2-cp310-cp310-win_amd64.whl (105.8 kB view details)

Uploaded CPython 3.10Windows x86-64

charset_normalizer-3.4.2-cp310-cp310-win32.whl (98.4 kB view details)

Uploaded CPython 3.10Windows x86

charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_x86_64.whl (150.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_s390x.whl (154.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_ppc64le.whl (157.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_i686.whl (154.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_aarch64.whl (146.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (147.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (155.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (144.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (151.3 kB view details)

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

charset_normalizer-3.4.2-cp310-cp310-macosx_10_9_universal2.whl (201.8 kB view details)

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

charset_normalizer-3.4.2-cp39-cp39-win_amd64.whl (105.8 kB view details)

Uploaded CPython 3.9Windows x86-64

charset_normalizer-3.4.2-cp39-cp39-win32.whl (98.4 kB view details)

Uploaded CPython 3.9Windows x86

charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_x86_64.whl (150.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_s390x.whl (154.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_ppc64le.whl (157.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_i686.whl (154.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_aarch64.whl (146.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (149.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (147.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (155.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (144.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (151.3 kB view details)

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

charset_normalizer-3.4.2-cp39-cp39-macosx_10_9_universal2.whl (201.7 kB view details)

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

charset_normalizer-3.4.2-cp38-cp38-win_amd64.whl (105.0 kB view details)

Uploaded CPython 3.8Windows x86-64

charset_normalizer-3.4.2-cp38-cp38-win32.whl (97.9 kB view details)

Uploaded CPython 3.8Windows x86

charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_x86_64.whl (148.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_s390x.whl (153.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_ppc64le.whl (155.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_i686.whl (153.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_aarch64.whl (144.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (147.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (145.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (153.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (143.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (150.1 kB view details)

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

charset_normalizer-3.4.2-cp38-cp38-macosx_10_9_universal2.whl (198.3 kB view details)

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

charset_normalizer-3.4.2-cp37-cp37m-win_amd64.whl (103.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

charset_normalizer-3.4.2-cp37-cp37m-win32.whl (96.3 kB view details)

Uploaded CPython 3.7mWindows x86

charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_x86_64.whl (141.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_s390x.whl (148.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ s390x

charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_ppc64le.whl (149.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_i686.whl (145.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_aarch64.whl (138.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (141.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (140.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (147.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (138.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (144.0 kB view details)

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

File details

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

File metadata

  • Download URL: charset_normalizer-3.4.2.tar.gz
  • Upload date:
  • Size: 126.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for charset_normalizer-3.4.2.tar.gz
Algorithm Hash digest
SHA256 5baececa9ecba31eff645232d59845c07aa030f0c81ee70184a90d35099a0e63
MD5 dba168d11ed32cc2ed0786ae2f137656
BLAKE2b-256 e43389c2ced2b67d1c2a61c19c6751aa8902d46ce3dacb23600a283619f5a12d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2.tar.gz:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7f56930ab0abd1c45cd15be65cc741c28b1c9a34876ce8c17a2fa107810c0af0
MD5 c01627b6cf9e3968fe712f585a90ab5a
BLAKE2b-256 2094c5790835a017658cbfabd07f3bfb549140c3ac458cfc196323996b10095a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-py3-none-any.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aa6af9e7d59f9c12b33ae4e9450619cf2488e2bbe9b44030905877f0b2324980
MD5 012a0fd02196ccf9830a8b7ff4328838
BLAKE2b-256 e9b00200da600134e001d91851ddc797809e2fe0ea72de90e09bec5a2fbdaccb

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-win_amd64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 aaeeb6a479c7667fbe1099af9617c83aaca22182d6cf8c53966491a0f1b7ffb7
MD5 f6d734587b58cf22676d2b3cc550bb6c
BLAKE2b-256 4496392abd49b094d30b91d9fbda6a69519e95802250b777841cf3bda8fe136c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-win32.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a476b06fbcf359ad25d34a057b7219281286ae2477cc5ff5e3f70a246971148
MD5 b99180bc51aa107ab99517498a29dc45
BLAKE2b-256 78be8392efc43487ac051eee6c36d5fbd63032d78f7728cb37aebcc98191f1ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 289200a18fa698949d2b39c671c2cc7a24d44096784e76614899a7ccf2574b7b
MD5 5421a973d0ddefba35f25643b6c11618
BLAKE2b-256 920895b458ce9c740d0645feb0e96cea1f5ec946ea9c580a94adfe0b617f3573

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 32fc0341d72e0f73f80acb0a2c94216bd704f4f0bce10aedea38f30502b271ff
MD5 ab7d5ae375ddcd2f16ad319dd5061894
BLAKE2b-256 2bffacfc0b0a70b19e3e54febdd5301a98b72fa07635e56f24f60502e954c461

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef8de666d6179b009dce7bcb2ad4c4a779f113f12caf8dc77f0162c29d20490b
MD5 f3311f81eb37f600c8e698f7631897f3
BLAKE2b-256 ecfe1ac556fa4899d967b83e9893788e86b6af4d83e4726511eaaad035e36595

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c95a1e2902a8b722868587c0e1184ad5c55631de5afc0eb96bc4b0d738092c0
MD5 7e43ed5ac0678f146a51c04e18421e89
BLAKE2b-256 677ca123bbcedca91d5916c056407f89a7f5e8fdfce12ba825d7d6b9954a1a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c9379d65defcab82d07b2a9dfbfc2e95bc8fe0ebb1b176a3190230a3ef0e07c
MD5 33e977b54a1ee45dbead0da58594fa8f
BLAKE2b-256 e228ffc026b26f441fc67bd21ab7f03b313ab3fe46714a14b516f931abe1a2d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98f862da73774290f251b9df8d11161b6cf25b599a66baf087c1ffe340e9bfd1
MD5 fc7bdf6954ffbbc25bb40a25abf98b7b
BLAKE2b-256 b6571b090ff183d13cef485dfbe272e2fe57622a76694061353c59da52c9a659

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fddb7e2c84ac87ac3a947cb4e66d143ca5863ef48e4a5ecb83bd48619e4634e
MD5 037d44ff14b55762369aad8a66e75713
BLAKE2b-256 222aea8a2095b0bafa6c5b5a55ffdc2f924455233ee7b91c69b7edfcc9e02284

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eba9904b0f38a143592d9fc0e19e2df0fa2e41c3c3745554761c5f6447eedabf
MD5 73044e0301004f037969b9f12ef076e0
BLAKE2b-256 0493bf204e6f344c39d9937d3c13c8cd5bbfc266472e51fc8c07cb7f64fcd2de

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file charset_normalizer-3.4.2-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.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e635b87f01ebc977342e2697d05b56632f5f879a4f15955dfe8cef2448b51691
MD5 8def832fc5fd5f0833e6df6480e0cb21
BLAKE2b-256 c00f9abe9bd191629c33e69e47c6ef45ef99773320e9ad8e9cb08b8ab4a8d4cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 926ca93accd5d36ccdabd803392ddc3e03e6d4cd1cf17deff3b989ab8e9dbcf0
MD5 bb6785ff6105f2da4855b0057ce2cf36
BLAKE2b-256 ea12a93df3366ed32db1d907d7593a94f1fe6293903e3e92967bebd6950ed12c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5a9979887252a82fefd3d3ed2a8e3b937a7a809f65dcb1e068b090e165bbe99e
MD5 9423c906dacd262af397530b8dfe6e13
BLAKE2b-256 6c4fc02d5c493967af3eda9c771ad4d2bbc8df6f99ddbeb37ceea6e8716a32bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-win_amd64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 db4c7bf0e07fc3b7d89ac2a5880a6a8062056801b83ff56d8464b70f65482b6c
MD5 6822e70c2fc770a4a18b69603d074a1b
BLAKE2b-256 37a02410e5e6032a174c95e0806b1a6585eb21e12f445ebe239fac441995226a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-win32.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dedb8adb91d11846ee08bec4c8236c8549ac721c245678282dcb06b221aab59f
MD5 1c780bda8325350586dd0f90765ab177
BLAKE2b-256 771a5eefc0ce04affb98af07bc05f3bac9094513c0e23b0562d64af46a06aae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bee093bf902e1d8fc0ac143c88902c3dfc8941f7ea1d6a8dd2bcb786d33db03d
MD5 db6e3188759385bbf76a776ec0836256
BLAKE2b-256 fd0768e95b4b345bad3dbbd3a8681737b4338ff2c9df29856a6d6d23ac4c73cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7222ffd5e4de8e57e03ce2cef95a4c43c98fcb72ad86909abdfc2c17d227fc1b
MD5 6d7fa486053541d07acb12f6c2bac67f
BLAKE2b-256 c22689ee1f0e264d201cb65cf054aca6038c03b1a0c6b4ae998070392a3ce605

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a955b438e62efdf7e0b7b52a64dc5c3396e2634baa62471768a64bc2adb73d5c
MD5 38a370ac5df7d93d39e86e9f4d7454d1
BLAKE2b-256 58aa8904b84bc8084ac19dc52feb4f5952c6df03ffb460a887b42615ee1382e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a370b3e078e418187da8c3674eddb9d983ec09445c99a3a263c2011993522981
MD5 5e3397454b97aff8d61674ee5efb7af5
BLAKE2b-256 0dc88174d0e5c10ccebdcb1b53cc959591c4c722a3ad92461a273e86b9f5a302

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e594135de17ab3866138f496755f302b72157d115086d100c3f19370839dd3a
MD5 fec698adfc210708df05f94ca9e09cc3
BLAKE2b-256 8c736ede2ec59bce19b3edf4209d70004253ec5f4e319f9a2e3f2f15601ed5f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d41c4d287cfc69060fa91cae9683eacffad989f1a10811995fa309df656ec214
MD5 131ddb31c119cd6e714da95e2fc1a5ba
BLAKE2b-256 862dfb55fdf41964ec782febbf33cb64be480a6b8f16ded2dbe8db27a405c09f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcbe676a55d7445b22c10967bceaaf0ee69407fbe0ece4d032b6eb8d4565982a
MD5 351d8a3aa58560e131332468d1759eb4
BLAKE2b-256 665259521f1d8e6ab1482164fa21409c5ef44da3e9f653c13ba71becdd98dec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cddf7bd982eaa998934a91f69d182aec997c6c468898efe6679af88283b498d3
MD5 0cbac032bb960fb599a6c381c4a117df
BLAKE2b-256 ee8a1a5e33b73e0d9287274f899d967907cd0bf9c343e651755d9307e0dbf2b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file charset_normalizer-3.4.2-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.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf713fe9a71ef6fd5adf7a79670135081cd4431c2943864757f0fa3a65b1fafd
MD5 40b04d4dc1cf33ee6194ab84334b1ccc
BLAKE2b-256 0914957d03c6dc343c04904530b6bef4e5efae5ec7d7990a7cbb868e4595ee30

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0c29de6a1a95f24b9a1aa7aefd27d2487263f00dfd55a77719b530788f75cff7
MD5 08294e5822337fa1d12d5746f20d634c
BLAKE2b-256 d7a437f4d6035c89cac7930395a35cc0f1b872e652eaafb76a6075943754f095

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e53efc7c7cee4c1e70661e2e112ca46a575f90ed9ae3fef200f2a25e954f4b28
MD5 8a0c72f4146ed238fdee6b77380169d1
BLAKE2b-256 a8055e33dbef7e2f773d672b6d79f10ec633d4a71cd96db6673625838a4fd532

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-win_amd64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 daac4765328a919a805fa5e2720f3e94767abd632ae410a9062dff5412bae65a
MD5 1f2adf1426a644b896785f4a8d3f748f
BLAKE2b-256 9007c5fd7c11eafd561bb51220d600a788f1c8d77c5eef37ee49454cc5c35575

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-win32.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b66f92b17849b85cad91259efc341dce9c1af48e2173bf38a85c6329f1033e5
MD5 176d58318e28596d96c1cc6d3e5513dc
BLAKE2b-256 592ed3b9811db26a5ebf444bc0fa4f4be5aa6d76fc6e1c0fd537b16c14e849b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0c8c57f84ccfc871a48a47321cfa49ae1df56cd1d965a09abe84066f6853b9c0
MD5 faa7164484b3205535efe67dfbb908cc
BLAKE2b-256 a22bb964c6a2fda88611a1fe3d4c400d39c66a42d6c169c924818c848f922415

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e70e990b2137b29dc5564715de1e12701815dacc1d056308e2b17e9095372a82
MD5 6868accaf8766465dbe1ff4843d85e94
BLAKE2b-256 e24dff460c8b474122334c2fa394a3f99a04cf11c646da895f81402ae54f5c42

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f0aa37f3c979cf2546b73e8222bbfa3dc07a641585340179d768068e3455e544
MD5 08b2c617eecfa6e2a6d9a48cb03eda22
BLAKE2b-256 605bc3f3a94bc345bc211622ea59b4bed9ae63c00920e2e8f11824aa5708e8b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efd387a49825780ff861998cd959767800d54f8308936b21025326de4b5a42b9
MD5 1ad465984e843c114b4a245d34d4c2c7
BLAKE2b-256 8bf2b3c2f07dbcc248805f10e67a0262c93308cfa149a4cd3d1fe01f593e5fd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdb20a30fe1175ecabed17cbf7812f7b804b8a315a25f24678bcdf120a90077f
MD5 5617669fba3be8414e009ebdb9bbf2b2
BLAKE2b-256 929bad67f03d74554bed3aefd56fe836e1623a50780f7c998d00ca128924a499

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28a1005facc94196e1fb3e82a3d442a9d9110b8434fc1ded7a24a2983c9888d8
MD5 958e044dbb27a99396839293d741b377
BLAKE2b-256 df68a576b31b694d07b53807269d05ec3f6f1093e9545e8607121995ba7a8313

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d524ba3f1581b35c03cb42beebab4a13e6cdad7b36246bd22541fa585a56cccd
MD5 7cbf6e657a95707b99558683c83a10b1
BLAKE2b-256 6682a37989cda2ace7e37f36c1a8ed16c58cf48965a79c2142713244bf945c89

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa88ca0b1932e93f2d961bf3addbb2db902198dca337d88c89e1559e066e7645
MD5 4a7ae861e91093901f9e0a04706139ce
BLAKE2b-256 41d97a6c0b9db952598e97e93cbdfcb91bacd89b9b88c7c983250a77c008703c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file charset_normalizer-3.4.2-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.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f5d9ed7f254402c9e7d35d2f5972c9bbea9040e99cd2861bd77dc68263277c7
MD5 0639fa3a80cba591179c1dd664652190
BLAKE2b-256 a6e68aebae25e328160b20e31a7e9929b1578bbdc7f42e66f46595a432f8539e

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 be1e352acbe3c78727a16a455126d9ff83ea2dfdcbc83148d2982305a04714c2
MD5 f3ba54518a3e5d5cc191f5a5475ddd0e
BLAKE2b-256 05854c40d00dcc6284a1c1ad5de5e0996b06f39d8232f1031cd23c2f5c07ee86

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f69a27e45c43520f5487f27627059b64aaf160415589230992cec34c5e18a509
MD5 4f04faa8d7d766b610565f2691c01525
BLAKE2b-256 7dd796970afb4fb66497a40761cdf7bd4f6fca0fc7bafde3a84f836c1f57a926

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-win_amd64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e8082b26888e2f8b36a042a58307d5b917ef2b1cacab921ad3323ef91901c71a
MD5 ba1d2f08569fbe39c9e580f16f742ef2
BLAKE2b-256 1f794b8da9f712bc079c0f16b6d67b099b0b8d808c2292c937f267d816ec5ecc

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-win32.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21b2899062867b0e1fde9b724f8aecb1af14f2778d69aacd1a5a1853a597a5db
MD5 471477f3b3ff6632e536276a86142b64
BLAKE2b-256 674489cacd6628f31fb0b63201a618049be4be2a7435a31b55b5eb1c3674547a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 68a328e5f55ec37c57f19ebb1fdc56a248db2e3e9ad769919a58672958e8f366
MD5 0fed21f7ad2d08cda0abd37cfed4c9b9
BLAKE2b-256 2f429f02c194da282b2b340f28e5fb60762de1151387a36842a92b533685c61e

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8755483f3c00d6c9a77f490c17e6ab0c8729e39e6390328e42521ef175380ae6
MD5 f503f58317e235f218fdb199a36ace5d
BLAKE2b-256 52477be7fa972422ad062e909fd62460d45c3ef4c141805b7078dbab15904ff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b33de11b92e9f75a2b545d6e9b6f37e398d86c3e9e9653c4864eb7e89c5773ef
MD5 5027178b57b96a05a765f90aa513d107
BLAKE2b-256 262cea3e66f2b5f21fd00b2825c94cafb8c326ea6240cd80a91eb09e4a285830

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a6ab32f7210554a96cd9e33abe3ddd86732beeafc7a28e9955cdf22ffadbab0
MD5 f3b0f0ce075c328587e1524fd6d33ec0
BLAKE2b-256 b717edee1e32215ee6e9e46c3e482645b46575a44a2d72c7dfd49e49f60ce6bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8075c35cd58273fee266c58c0c9b670947c19df5fb98e7b66710e04ad4e9ff86
MD5 8e85a262cbd63cdd5f2a3d1304587a45
BLAKE2b-256 a82d7a5b635aa65284bf3eab7653e8b4151ab420ecbae918d3e359d1947b4d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18dd2e350387c87dabe711b86f83c9c78af772c748904d372ade190b5c7c9d4d
MD5 26d67a7ee7a6b31a3c454f493288dbc9
BLAKE2b-256 3b95bc08c7dfeddd26b4be8c8287b9bb055716f31077c8b0ea1cd09553794665

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9cbfacf36cb0ec2897ce0ebc5d08ca44213af24265bd56eca54bee7923c48fd6
MD5 f261b73f5744ef883d7746fc2a2d42c4
BLAKE2b-256 7ba54179abd063ff6414223575e008593861d62abfc22455b5d1a44995b7c101

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2d318c11350e10662026ad0eb71bb51c7812fc8590825304ae0bdd4ac283acd
MD5 7d94752135f0bd99019d5a762c6008b4
BLAKE2b-256 d99b892a8c8af9110935e5adcbb06d9c6fe741b6bb02608c6513983048ba1a18

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file charset_normalizer-3.4.2-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.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5bf4545e3b962767e5c06fe1738f951f77d27967cb2caa64c28be7c4563e162c
MD5 818331f6a792d86a9151886b37ae6ea9
BLAKE2b-256 ae3851fc6ac74251fd331a8cfdb7ec57beba8c23fd5493f1050f71c87ef77ed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7c48ed483eb946e6c04ccbe02c6b4d1d48e51944b6db70f697e089c193404941
MD5 3beae83101e7e1390b2923b04ca202bd
BLAKE2b-256 95289901804da60055b406e1a1c5ba7aac1276fb77f1dde635aabfc7fd84b8ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d11b54acf878eef558599658b0ffca78138c8c3655cf4f3a4a673c437e67732e
MD5 b0a21a254798ea076c634cd65bad281b
BLAKE2b-256 6d245849d46cf4311bbf21b424c443b09b459f5b436b1558c04e45dbb7cc478b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-win_amd64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 43e0933a0eff183ee85833f341ec567c0980dae57c464d8a508e1b2ceb336471
MD5 059a3082e0ae0f38b5c2a33cdbb7d4fa
BLAKE2b-256 2c9d9bf2b005138e7e060d7ebdec7503d0ef3240141587651f4b445bdf7286c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-win32.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 982bb1e8b4ffda883b3d0a521e23abcd6fd17418f6d2c4118d257a10199c0ce3
MD5 4ad92ce0b6a00919684026d139dbaf4b
BLAKE2b-256 c75793e0169f08ecc20fe82d12254a200dfaceddc1c12a4077bf454ecc597e33

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c72fbbe68c6f32f251bdc08b8611c7b3060612236e960ef848e0a517ddbe76c5
MD5 a0db55dd8458da9b2c17509f8f42befc
BLAKE2b-256 85d823e2c112532a29f3eef374375a8684a4f3b8e784f62b01da931186f43494

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 eb30abc20df9ab0814b5a2524f23d75dcf83cde762c161917a2b4b7b55b1e518
MD5 6bcdcb63f12747cdcd83c9a6b01a78f1
BLAKE2b-256 7a3da5b2e48acef264d71e036ff30bcc49e51bde80219bb628ba3e00cf59baac

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aaf27faa992bfee0264dc1f03f4c75e9fcdda66a519db6b957a3f826e285cf12
MD5 f2dcbaef6375d440373326e7872fd2eb
BLAKE2b-256 a6d8af7333f732fc2e7635867d56cb7c349c28c7094910c72267586947561b4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dccab8d5fa1ef9bfba0590ecf4d46df048d18ffe3eec01eeb73a42e0d9e7a8ba
MD5 9d8b2f3346d4a50361e4c8bf8dd08474
BLAKE2b-256 6935e52ab9a276186f729bce7a0638585d2982f50402046e4b0faa5d2c3ef2da

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82d8fd25b7f4675d0c47cf95b594d4e7b158aca33b76aa63d07186e13c0e0ab7
MD5 14c0fd8e7f70ac5bc8f9dc4e3c567656
BLAKE2b-256 4cfe56aca740dda674f0cc1ba1418c4d84534be51f639b5f98f538b332dc9a95

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 721c76e84fe669be19c5791da68232ca2e05ba5185575086e384352e2c309597
MD5 5c11a24ce5d917b43d48016db477c617
BLAKE2b-256 f1a25e4c187680728219254ef107a6949c60ee0e9a916a5dadb148c7ae82459c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50bf98d5e563b83cc29471fa114366e6806bc06bc7a25fd59641e41445327836
MD5 82ce40dd5d68fc3413f83d8241107773
BLAKE2b-256 ad068499ee5aa7addc6f6d72e068691826ff093329fe59891e83b092ae4c851c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e92fca20c46e9f5e1bb485887d074918b13543b1c2a1185e69bb8d17ab6236a7
MD5 a84baa7a0b5d3c413ef8a9dff8183121
BLAKE2b-256 32fb74e26ee556a9dbfe3bd264289b67be1e6d616329403036f6507bb9f3f29c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file charset_normalizer-3.4.2-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.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3daeac64d5b371dea99714f08ffc2c208522ec6b06fbc7866a450dd446f5c0f
MD5 49aca47dd2b36c6211eb5a5c3bc0c3dc
BLAKE2b-256 5313db2e7779f892386b589173dd689c1b1e304621c5792046edd8a978cbf9e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 005fa3432484527f9732ebd315da8da8001593e2cf46a3d817669f062c3d9ed4
MD5 f6536f3eaa6a66876af1cf5c540182c4
BLAKE2b-256 28f8dfb01ff6cc9af38552c69c9027501ff5a5117c4cc18dcd27cb5259fa1888

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 70f7172939fdf8790425ba31915bfbe8335030f05b9913d7ae00a87d4395620a
MD5 c74c203bc2afd3060cba6e486f852b5b
BLAKE2b-256 7c021c82646582ccf2c757fa6af69b1a3ea88744b8d2b4ab93b7686b2533e023

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-win_amd64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8272b73e1c5603666618805fe821edba66892e2870058c94c53147602eab29c7
MD5 299977fb006c94ee4fc49266ff690740
BLAKE2b-256 41ebc7367ac326a2628e4f05b5c737c86fe4a8eb3ecc597a4243fc65720b3eeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-win32.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc7039885fa1baf9be153a0626e337aa7ec8bf96b0128605fb0d77788ddc1681
MD5 190b711b0064216e7f5c1119dcabd5aa
BLAKE2b-256 acc680b93fabc626b75b1665ffe405e28c3cef0aae9237c5c05f15955af4edd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3c21d4fca343c805a52c0c78edc01e3477f6dd1ad7c47653241cf2a206d4fc58
MD5 790c749b26f75273050aeaf104c61e2b
BLAKE2b-256 53cb6fa0ccf941a069adce3edb8a1e430bc80e4929f4d43b5140fdf8628bdf7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 65c981bdbd3f57670af8b59777cbfae75364b483fa8a9f420f08094531d54a01
MD5 46624f21f33d288c8196ffde2ac78eea
BLAKE2b-256 59b34e8b73f7299d9aaabd7cd26db4a765f741b8e57df97b034bb8de15609002

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 844da2b5728b5ce0e32d863af26f32b5ce61bc4273a9c720a9f3aa9df73b1455
MD5 2facf56027a17c959d90d851b4ceba92
BLAKE2b-256 d79cefdf59dd46593cecad0548d36a702683a0bdc056793398a9cd1e1546ad21

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24498ba8ed6c2e0b56d4acbf83f2d989720a93b41d712ebd4f4979660db4417b
MD5 e9d14a119ffc1e35486eb85a62ea83da
BLAKE2b-256 20264e47cc23d2a4a5eb6ed7d6f0f8cda87d753e2f8abc936d5cf5ad2aae8518

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6333b3aa5a12c26b2a4d4e7335a28f1475e0e5e17d69d55141ee3cab736f66d1
MD5 86ba4f379f6431312a485dd662d2e647
BLAKE2b-256 2ebbd76d3d6e340fb0967c43c564101e28a78c9a363ea62f736a68af59ee3683

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75d10d37a47afee94919c4fab4c22b9bc2a8bf7d4f46f87363bcf0573f3ff4f5
MD5 115b05227af933f95c4561ea4a623481
BLAKE2b-256 e5697540141529eabc55bf19cc05cd9b61c2078bebfcdbd3e799af99b777fc28

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 046595208aae0120559a67693ecc65dd75d46f7bf687f159127046628178dc45
MD5 011342700673c3aee07e3e71821caf53
BLAKE2b-256 b6b3d4f913660383b3d93dbe6f687a312ea9f7e89879ae883c4e8942048174d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e45ba65510e2647721e35323d6ef54c7974959f6081b58d4ef5d87c60c84919a
MD5 14ae359bf4a061acd89d58dac7003537
BLAKE2b-256 3a956eec4cbbbd119e6a402e3bfd16246785cc52ce64cf21af2ecdf7b3a08e91

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file charset_normalizer-3.4.2-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.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8323a9b031aa0393768b87f04b4164a40037fb2a3c11ac06a03ffecd3618027
MD5 5101022948fd6a0d8891196c6eea2964
BLAKE2b-256 3eefb7c1f39c0dc3808160c8b72e0209c2479393966313bfebc833533cfff9cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 76af085e67e56c8816c3ccf256ebd136def2ed9654525348cfa744b6802b69eb
MD5 4129e7c8d19036b5ee58d4a9a432e50a
BLAKE2b-256 4cfdf700cfd4ad876def96d2c769d8a32d808b12d1010b6003dc6639157f99ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp38-cp38-macosx_10_9_universal2.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6fc1f5b51fa4cecaa18f2bd7a003f3dd039dd615cd69a2afd6d3b19aed6775f2
MD5 2d241c520aa9cb16cee128a5807c67fa
BLAKE2b-256 643f29fad769c4cf1b171a4203799d9c3abcd0b552690c9437315a6a960751e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-win_amd64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6a0289e4589e8bdfef02a80478f1dfcb14f0ab696b5a00e1f4b8a14a307a3c58
MD5 f110a895fb678766a4a71b7ec47e7ce0
BLAKE2b-256 1cb4108e23067af86a699b10985299c2f959b6fb69b03d484ba40b5b40f917fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-win32.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 770cab594ecf99ae64c236bc9ee3439c3f46be49796e265ce0cc8bc17b10294f
MD5 ebbeb87490948ccbd95fbb6d05a7f914
BLAKE2b-256 5279b9cb1853ad3dd9fbbf8fb79b79e575b4a4f4a5a90acb6159a86a4d919a94

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 25a23ea5c7edc53e0f29bae2c44fcb5a1aa10591aae107f2a2b2583a9c5cbc64
MD5 470c4cf3385290ead0d29cd8dd977257
BLAKE2b-256 e2c26247f81a53824aa502cf39f05f9723fa9bdbbece51535de7146c51eb8270

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fb707f3e15060adf5b7ada797624a6c6e0138e2a26baa089df64c68ee98e040f
MD5 d9c934d6bdfce046d1309e86de1194bb
BLAKE2b-256 8446a0d87b114181e172ab3f5dbdf767e919b6ab9f38604c4fc6a2bf218566b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 915f3849a011c1f593ab99092f3cecfcb4d65d8feb4a64cf1bf2d22074dc0ec4
MD5 e0c857ad0a77aa9240f1a2f080332190
BLAKE2b-256 89d654e374998ea75a58a886536273839aad3561c02e6db64defa3bda5478d4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b1bde144d98e446b056ef98e59c256e9294f6b74d7af6846bf5ffdafd687a7d
MD5 aaa5db9bf6ba817f490a44ea56025483
BLAKE2b-256 e5c84b308943a400cdefc678192bb027cd077dc1b015410394cb4dedc44b31f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4074c5a429281bf056ddd4c5d3b740ebca4d43ffffe2ef4bf4d2d05114299da
MD5 a313f41697a7d542d856e089ac7d8a96
BLAKE2b-256 3884cec08586c7c294e2c5e984de797c15b3efb30d42a0dd0132a62d2dfe3a27

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36b31da18b8890a76ec181c3cf44326bf2c48e36d393ca1b72b3f484113ea344
MD5 d6de296217d832970701f4a044ad1a23
BLAKE2b-256 33b54b0eb8b7abdd0401babe6ce496473a8e1fb0c2ac7183f05333be030c5a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2680962a4848b3c4f155dc2ee64505a9c57186d0d56b43123b17ca3de18f0fa
MD5 428b3ed7cae0eee66021c8e176b011b0
BLAKE2b-256 3b9b921f93af2c57f4aeb33e65a72ef012836b7663e9d96964cabb12786b9597

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cad5f45b3146325bb38d6855642f6fd609c3f7cad4dbaf75549bf3b904d3184
MD5 eb5ca439851a17cb191b1d49f06ea124
BLAKE2b-256 b51b81575c26402ec16ad3f779ef3d66099414180aae26681b3868e1cf27b9af

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file charset_normalizer-3.4.2-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.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9e36a97bee9b86ef9a1cf7bb96747eb7a15c2f22bdb5b516434b00f2a599f02
MD5 ab3292141df550c1144549d295bd56ed
BLAKE2b-256 d9fec9a7455b44f7c9b95f3fb3ff768e395e6324692eb0eac8e30988d272d71a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: cd.yml on jawah/charset_normalizer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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