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

Uploaded Source

Built Distributions

charset_normalizer-3.4.1-py3-none-any.whl (49.8 kB view details)

Uploaded Python 3

charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl (102.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

charset_normalizer-3.4.1-cp313-cp313-win32.whl (95.4 kB view details)

Uploaded CPython 3.13 Windows x86

charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (145.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl (150.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl (152.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl (149.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (141.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (145.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (143.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (150.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (140.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (147.2 kB view details)

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

charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl (195.7 kB view details)

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

charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl (102.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

charset_normalizer-3.4.1-cp312-cp312-win32.whl (95.5 kB view details)

Uploaded CPython 3.12 Windows x86

charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (146.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl (150.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl (152.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl (149.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (141.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (145.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (143.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (150.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (140.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (147.6 kB view details)

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

charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl (196.1 kB view details)

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

charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl (102.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

charset_normalizer-3.4.1-cp311-cp311-win32.whl (95.2 kB view details)

Uploaded CPython 3.11 Windows x86

charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (144.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl (149.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl (151.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl (148.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (140.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (142.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (149.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (139.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (145.7 kB view details)

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

charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl (195.0 kB view details)

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

charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl (102.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

charset_normalizer-3.4.1-cp310-cp310-win32.whl (95.5 kB view details)

Uploaded CPython 3.10 Windows x86

charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (146.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl (150.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl (153.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl (150.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (142.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (146.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (143.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (151.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (141.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (147.9 kB view details)

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

charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl (198.0 kB view details)

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

charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl (102.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

charset_normalizer-3.4.1-cp39-cp39-win32.whl (95.5 kB view details)

Uploaded CPython 3.9 Windows x86

charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl (146.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl (150.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl (153.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl (150.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl (142.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (146.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (143.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (151.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (141.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (148.1 kB view details)

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

charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl (197.9 kB view details)

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

charset_normalizer-3.4.1-cp38-cp38-win_amd64.whl (102.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

charset_normalizer-3.4.1-cp38-cp38-win32.whl (95.1 kB view details)

Uploaded CPython 3.8 Windows x86

charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl (145.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl (149.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl (152.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_i686.whl (149.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl (140.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (144.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (142.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (150.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (140.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (147.5 kB view details)

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

charset_normalizer-3.4.1-cp38-cp38-macosx_10_9_universal2.whl (195.7 kB view details)

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

charset_normalizer-3.4.1-cp37-cp37m-win_amd64.whl (100.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

charset_normalizer-3.4.1-cp37-cp37m-win32.whl (93.5 kB view details)

Uploaded CPython 3.7m Windows x86

charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_x86_64.whl (138.5 kB view details)

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

charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_s390x.whl (145.1 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ s390x

charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_ppc64le.whl (146.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_i686.whl (142.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_aarch64.whl (135.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138.6 kB view details)

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

charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (137.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (144.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (135.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (141.2 kB view details)

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

File details

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

File metadata

  • Download URL: charset_normalizer-3.4.1.tar.gz
  • Upload date:
  • Size: 123.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for charset_normalizer-3.4.1.tar.gz
Algorithm Hash digest
SHA256 44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3
MD5 1d808eb9efaf70bf0ec3b800f3c7dca8
BLAKE2b-256 16b0572805e227f01586461c80e0fd25d65a2115599cc9dad142fee4b747c357

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1.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.1-py3-none-any.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85
MD5 4c824e22b968c4efaa2a436464e438a5
BLAKE2b-256 0ef665ecc6878a89bb1c23a086ea335ad4bf21a588990c3f535a227b9eea9108

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971
MD5 fd5307d39fa85600aa365a580cdebf2b
BLAKE2b-256 27f24f9a69cc7712b9b5ad8fdb87039fd89abba997ad5cbe690d1835d40405b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407
MD5 3d6b6bf2fcfade9bdfd821f5fa0380f4
BLAKE2b-256 cde5131d2fb1b0dddafc37be4f3a2fa79aa4c037368be9423061dccadfd90091

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd
MD5 c4597b636aa48efa186df97d36de5b61
BLAKE2b-256 e493946a86ce20790e11312c87c75ba68d5f6ad2208cfb52b2d6a2c32840d922

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601
MD5 bc70a0994c0243cf1299ab00294e60d5
BLAKE2b-256 6c71189996b6d9a4b932564701628af5cee6716733e9165af1d5e1b285c530ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886
MD5 711ed3c914ec89b9bf84e1f5de65907c
BLAKE2b-256 4cffa9a504662452e2d2878512115638966e75633519ec11f25fca3d2049a94a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2
MD5 dbf7ccf2c1201446d3feda300bd97a77
BLAKE2b-256 fb43c6a0b685fe6910d08ba971f62cd9c3e862a85770395ba5d9cad4fede33ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd
MD5 455a48f7b517effce11194e8c8d68048
BLAKE2b-256 b44135ff1f9a6bd380303dea55e44c4933b4cc3c4850988927d4082ada230273

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11
MD5 40aba773ce2ab316b2c978b384901d01
BLAKE2b-256 52edb7f4f07de100bdb95c1756d3a4d17b90c1a3c53715c1a476f8738058e0fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b
MD5 5a32c1b54bcf203e3fddc016099dde1e
BLAKE2b-256 5e672937f8d548c3ef6e2f9aab0f6e21001056f692d43282b165e7c56023e6dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9
MD5 623dbe3e285843edf9af285171566d7c
BLAKE2b-256 244ef646b9093cff8fc86f2d60af2de4dc17c759de9d554f130b140ea4738ca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313
MD5 a0419ce26c8699003a2d2373ffe3464c
BLAKE2b-256 242edfdd9770664aae179a96561cc6952ff08f9a8cd09a908f259a9dfa063568

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-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.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f
MD5 370e71b9cab72f07c5947e96daf15537
BLAKE2b-256 962cd49710a6dbcd3776265f4c923bb73ebe83933dfbaa841c5da850fe0fd20b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda
MD5 3f20039fc36b8a9a3d0955f5226891ee
BLAKE2b-256 3894ce8e6f63d18049672c76d07d119304e1e2d7c6098f0841b51c666e9f44a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f
MD5 2777070b32d0a86cd104752358edfe65
BLAKE2b-256 215b1b390b03b1d16c7e382b561c5329f83cc06623916aab983e8ab9239c7d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35
MD5 babec153025b1270d6a2fd76e2c3772f
BLAKE2b-256 b2212b6b5b860781a0b49427309cb8670785aa543fb2178de875b87b9cc97746

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1
MD5 7a60860d64616d5a0af22d034963ab11
BLAKE2b-256 130e9c8d4cb99c98c1007cc11eda969ebfe837bbbd0acdb4736d228ccaabcd22

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9
MD5 e0670324f910a1577f86e2b246b1717b
BLAKE2b-256 84c998e3732278a99f47d487fd3468bc60b882920cef29d1fa6ca460a1fdf4e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a
MD5 629cbdda64add2ba1321007fd61f7d13
BLAKE2b-256 c59664120b1d02b81785f222b976c0fb79a35875457fa9bb40827678e54d1bc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d
MD5 1f633f66cc52a9624636dfe3c97988ea
BLAKE2b-256 78d4f5704cb629ba5ab16d1d3d741396aec6dc3ca2b67757c45b0599bb010478

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b
MD5 ed3a63cc79137f316ee386cd7aaea7e6
BLAKE2b-256 7c5f6d352c51ee763623a98e31194823518e09bfa48be2a7e8383cf691bbb3d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d
MD5 1edb315f82fa657b8ee5d564117e057c
BLAKE2b-256 3ea2513f6cbe752421f16d969e32f3583762bfd583848b763913ddab8d9bfd4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa
MD5 788b6476f61c0f10512638dd3c080c77
BLAKE2b-256 f0b8e6825e25deb691ff98cf5c9072ee0605dc2acfca98af70c2d1b1bc75190d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757
MD5 552a386271152444aee7338ffa347e56
BLAKE2b-256 ad8fe410d57c721945ea3b4f1a04b74f70ce8fa800d393d72899f0a40526401f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7
MD5 d2e8c76665fb9fb013882d4052f46b95
BLAKE2b-256 d38c90bfabf8c4809ecb648f39794cf2a84ff2e7d2a6cf159fe68d9a26160467

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-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.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616
MD5 9bdbf872c3bdbcb7191d5cdf3176c38a
BLAKE2b-256 74948a5277664f27c3c438546f3eb53b33f5b19568eb7424736bdc440a88a31f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545
MD5 572c9f4f64469518d6a6b4c15710201a
BLAKE2b-256 0a9add1e1cdceb841925b7798369a09279bd1cf183cef0f9ddf15a3a6502ee45

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76
MD5 4b9eedb1bc284b023a8bcf8d05ad9184
BLAKE2b-256 1eab45b180e175de4402dcf7547e4fb617283bae54ce35c27930a6f35b6bef15

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b
MD5 343744b90dcb574570607ff0ac44f758
BLAKE2b-256 b5b69674a4b7d4d99a0d2df9b215da766ee682718f88055751e1e5e753c82db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8
MD5 27d19912448e2eea75d609392a981cbb
BLAKE2b-256 3d7b82865ba54c765560c8433f65e8acb9217cb839a9e32b42af4aa8e945870f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6
MD5 9a48480beefe8f0287f418c2ef0ad55c
BLAKE2b-256 b1828e9fe624cc5374193de6860aba3ea8070f584c8565ee77c168ec13274bd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd
MD5 4b8556606d9066076466618dcbbe9277
BLAKE2b-256 85e465699e8ab3014ecbe6f5c71d1a55d810fb716bbfd74f6283d5c2aa87febf

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146
MD5 6b50940ccb853c216f0c132b001a8e22
BLAKE2b-256 28a3a42e70d03cbdabc18997baf4f0227c73591a08041c149e710045c281f97b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77
MD5 2f03ee32db31bb292d38fa72f55ea934
BLAKE2b-256 6885f4288e96039abdd5aeb5c546fa20a37b50da71b5cf01e75e87f16cd43304

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00
MD5 002ae82b81327a3e49999dad1536062a
BLAKE2b-256 8883489e9504711fa05d8dde1574996408026bdbdbd938f23be67deebb5eca92

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd
MD5 349f4f4f3b57ea545db7029f2d65f661
BLAKE2b-256 37edbe39e5258e198655240db5e19e0b11379163ad7070962d6b0c87ed2c4d39

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3
MD5 6f1f4034d8d508a6f111a32a55390dec
BLAKE2b-256 7164d24ab1a997efb06402e3fc07317e94da358e2585165930d9d59ad45fcae2

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1
MD5 6aba7dfece1a7e477e4a4acf3c01423b
BLAKE2b-256 7a280b9fefa7b8b080ec492110af6d88aa3dea91c464b17d53474b6e9ba5d2c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-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.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12
MD5 49edaa645b6e5f033d67be54fcbd4500
BLAKE2b-256 c6c732da20821cf387b759ad24627a9aca289d2822de929b8a41b6241767b461

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125
MD5 b3b987a99cf8e6d5b5afed953270d39c
BLAKE2b-256 728041ef5d5a7935d2d3a773e3eaebf0a9350542f2cab4eac59a7a4741fbbbbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f
MD5 098d934ed659b08f0462bd2205e9c192
BLAKE2b-256 2dce3cbed41cff67e455a386fb5e5dd8906cdda2ed92fbc6297921f2e4419309

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f
MD5 2de66dcb2bc203403acd22f6785ed214
BLAKE2b-256 492b999d0314e4ee0cff3cb83e6bc9aeddd397eeed693edb4facb901eb8fbb69

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807
MD5 6da3cfca905a9b76b7848128cc34c7e6
BLAKE2b-256 39f4d9f4f712d0951dcbfd42920d3db81b00dd23b6ab520419626f4023334056

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d
MD5 88ed2fbd9125f74245bb6e503bc72bf8
BLAKE2b-256 c2b67aa450b278e7aa92cf7732140bfd8be21f5f29d5bf334ae987c945276639

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb
MD5 7742741628478e292f699322de06b475
BLAKE2b-256 8daf779ad72a4da0aed925e1139d458adc486e61076d7ecdcc09e610ea8678db

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408
MD5 34c021b9397c84ca7087d0a31db1a0ca
BLAKE2b-256 f2e3e20aae5e1039a2cd9b08d9205f52142329f887f8cf70da3650326670bddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247
MD5 03a12210da5e9786c83945090e898a8a
BLAKE2b-256 03d23f392f23f042615689456e9a274640c1d2e5dd1d52de36ab8f7955f8f050

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a
MD5 022fc9420b83eef0aa97064c4610d0e6
BLAKE2b-256 93625e89cdfe04584cb7f4d36003ffa2936681b03ecc0754f8e969c2becb7e24

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f
MD5 ffd989fbf0384667fdc67f5cb4017864
BLAKE2b-256 08069f5a12939db324d905dc1f70591ae7d7898d030d7662f0d426e2286f68c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037
MD5 1afc3c34fa2f73ff6de5085b379416bf
BLAKE2b-256 010911d684ea5819e5a8f5100fb0b38cf8d02b514746607934134d31233e02c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176
MD5 c38ca09c773562232b2e0e232201153d
BLAKE2b-256 d01100341177ae71c6f5159a08168bcb98c6e6d196d372c94511f9f6c9afe0c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-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.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a
MD5 f06b37f1bb1abbdf2474da370fcd2058
BLAKE2b-256 a9acab729a15c516da2ab70a05f8722ecfccc3f04ed7a18e45c75bbbaa347d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de
MD5 95dc042152de6b8d60ecdf7b88fd62a1
BLAKE2b-256 0d585580c1716040bc89206c77d8f74418caf82ce519aae06450393ca73475d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765
MD5 dcfb99f8267e56ae8025f024e47687ef
BLAKE2b-256 852da9790237cb4d01a6d57afadc8573c8b73c609ade20b80f4cda30802009ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5
MD5 b6e18285631a95dc322ef9646883e419
BLAKE2b-256 0c5a0b59704c38470df6768aa154cc87b1ac7c9bb687990a1559dc8765e8627e

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294
MD5 5f4f402dc4755832aefffabdb214a598
BLAKE2b-256 c70bc5ec5092747f801b8b093cdf5610e732b809d6cb11f4c51e35fc28d1d389

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6
MD5 8a2e81802c610be155e791810b6528bf
BLAKE2b-256 9422b8f2081c6a77cb20d97e57e0b385b481887aa08019d2459dc2858ed64871

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7
MD5 1c7b4a79af77307d6a0a3f27797b59ce
BLAKE2b-256 26ae23d6041322a3556e4da139663d02fb1b3c59a23ab2e2b56432bd2ad63ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78
MD5 24337618f95630c3d81f2f8b2c75c582
BLAKE2b-256 9eaf3a97a4fa3c53586f1910dadfc916e9c4f35eeada36de4108f5096cb7215f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496
MD5 59304d5fde30585ebd774d4550950c79
BLAKE2b-256 04d242fd330901aaa4b805a1097856c2edf5095e260a597f65def493f4b8c833

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4
MD5 d78119c3d8d66a827227f415f234a695
BLAKE2b-256 5a6de2773862b043dcf8a221342954f375392bb2ce6487bcd9f2c1b34e1d6781

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770
MD5 65a24ba9a1e55a028968cc3a9f7ba304
BLAKE2b-256 54542412a5b093acb17f0222de007cc129ec0e0df198b5ad2ce5699355269dfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2
MD5 f4ace6c2438991ad43504ef9577b8631
BLAKE2b-256 3d04cb42585f07f6f9fd3219ffb6f37d5a39b4fd2db2355b23683060029c35f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f
MD5 b604729ce1ad44d977643505a7e3b7a1
BLAKE2b-256 0f6c2bee440303d705b6fb1e2ec789543edec83d32d258299b16eed28aad48e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-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.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537
MD5 4d8dfde6fbe2ae752a93d39884ec1e6c
BLAKE2b-256 b9f8ca440ef60d8f8916022859885f231abb07ada3c347c03d63f283bec32ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41
MD5 856d32143c59d0a9e6dabb948aa32412
BLAKE2b-256 7fc0b913f8f02836ed9ab32ea643c6fe4d3325c3d8627cf6e78098671cafff86

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 329ce159e82018d646c7ac45b01a430369d526569ec08516081727a20e9e4af4
MD5 de65f19aa739a4acfa32cd7ed5806e38
BLAKE2b-256 40bb20affbbd9ea29c71ea123769dc568a6d42052ff5089c5fe23e21e21084a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ea0d8d539afa5eb2728aa1932a988a9a7af94f18582ffae4bc10b3fbdad0626e
MD5 48403df14c18a8fd22f35edd9740acfb
BLAKE2b-256 d381396e7d7f5d7420da8273c91175d2e9a3f569288e3611d521685e4b9ac9cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0907f11d019260cdc3f94fbdb23ff9125f6b5d1039b76003b5b0ac9d6a6c9d5b
MD5 fa24a7a84664c7914117414dfd45489f
BLAKE2b-256 e410a78c0e91f487b4ad0ef7480ac765e15b774f83de2597f1b6ef0eaf7a2f99

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 345b0426edd4e18138d6528aed636de7a9ed169b4aaf9d61a8c19e39d26838ca
MD5 d151d1b7b81eafdec150fa9bfce946a8
BLAKE2b-256 bee53f363dad2e24378f88ccf63ecc39e817c29f32e308ef21a7a6d9c1201165

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7709f51f5f7c853f0fb938bcd3bc59cdfdc5203635ffd18bf354f6967ea0f824
MD5 3eea4d8dfceee58cdb48cc5b0113283c
BLAKE2b-256 8e099f8abcc6fff60fb727268b63c376c8c79cc37b833c2dfe1f535dfb59523b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89149166622f4db9b4b6a449256291dc87a99ee53151c74cbd82a53c8c2f6ccd
MD5 37d021d111e7acfff8c669e23233da3f
BLAKE2b-256 6f7f0c0dad447819e90b93f8ed238cc8f11b91353c23c19e70fa80483a155bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 619a609aa74ae43d90ed2e89bdd784765de0a25ca761b93e196d938b8fd1dbbd
MD5 58c31e7e03fc7e09b7a8ec3bea4cc9fe
BLAKE2b-256 bacd861883ba5160c7a9bd242c30b2c71074cda2aefcc0addc91118e0d4e0765

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e27f48bcd0957c6d4cb9d6fa6b61d192d0b13d5ef563e5f2ae35feafc0d179c
MD5 21a7fb5cad1a849e427ad35208902d0a
BLAKE2b-256 1e0d38ef4ae41e9248d63fc4998d933cae22473b1b2ac4122cf908d0f5eb32aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd78cfcda14a1ef52584dbb008f7ac81c1328c0f58184bf9a84c49c605002da6
MD5 12373c8333f0648a29a55929a6cbcc97
BLAKE2b-256 f733557ac796c47165fc141e4fb71d7b0310f67e05cb420756f3a82e0a0068e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b7b2d86dd06bfc2ade3312a83a5c364c7ec2e3498f8734282c6c3d4b07b346b8
MD5 70bb1d27feacec10d142370c505c599d
BLAKE2b-256 aa17c94be7ee0d142687e047fe1de72060f6d6837f40eedc26e87e6e124a3fc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c60ca7339acd497a55b0ea5d506b2a2612afb2826560416f6894e8b5770d4a9
MD5 6a693d149a5e487605c616e6de58fbf7
BLAKE2b-256 e50d815a2ba3f283b4eeaa5ece57acade365c5b4135f65a807a083c818716582

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-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.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01ad647cdd609225c5350561d084b42ddf732f4eeefe6e678765636791e78b9a
MD5 2bb73a8b59f2f5031db4e12f0fc29f80
BLAKE2b-256 4301754cdb29dd0560f58290aaaa284d43eea343ad0512e6ad3b8b5c11f08592

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ecddf25bee22fe4fe3737a399d0d177d72bc22be6913acfab364b40bce1ba83c
MD5 5261de2470fb1aa043c85746fcbff1c3
BLAKE2b-256 10bd6517ea94f2672e801011d50b5d06be2a0deaf566aea27bcdcd47e5195357

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7b1bef6280950ee6c177b326508f86cad7ad4dff12454483b51d8b7d673a2c5d
MD5 72ba3d3a282b938030e83270ef2d5147
BLAKE2b-256 891774bb34d02d62a21cc626c7d4db475b6f2207980f6beb002051db8342b139

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7a4f97a081603d2050bfaffdefa5b02a9ec823f8348a572e39032caa8404a487
MD5 b8924d4b07191e26f0011a292c1dd0f8
BLAKE2b-256 0bfe4ade940a1b4bac031357b4a74fc8406a2ecd9dfc007dea850c5b7ee348de

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01732659ba9b5b873fc117534143e4feefecf3b2078b0a6a2e925271bb6f4cfa
MD5 1d7ad98d860cc188151b95b960e40dd7
BLAKE2b-256 96c6f62d90c0e66525a374c35a1389f4290e5d7a731cd2cfacd9740272f927f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2fb9bd477fdea8684f78791a6de97a953c51831ee2981f8e4f583ff3b9d9687e
MD5 31664510dad61838d862aa5d94f5d474
BLAKE2b-256 0a97a183d752295997d95d20f2aa34d66ff6abda5af5482d0e7995dbbc9a753a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dccbe65bd2f7f7ec22c4ff99ed56faa1e9f785482b9bbd7c717e26fd723a1d1e
MD5 4d3867d79b7ffd59ab36414142d7be02
BLAKE2b-256 eca32db14427b37cefbf9a9ec3d3c861e1b1721e4d4507536df102c2854966dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 807f52c1f798eef6cf26beb819eeb8819b1622ddfeef9d0977a8502d4db6d534
MD5 f404124646b7b89811df0f02debfb5d3
BLAKE2b-256 a800b8b43690ecac81e5038dc6332681757123ee9c4c15eb4a6ecf0232393f59

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d053096f67cd1241601111b698f5cad775f97ab25d81567d3f59219b5f1adbd
MD5 eb1d9f1d8f16aa4ad94c37d1a1a7c323
BLAKE2b-256 8faa73a89701dd661d9b5d24d0594c42ed0f7a3aed4448cc4f8f7315d0701399

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc54db6c8593ef7d4b2a331b58653356cf04f67c960f584edb7c3d8c97e8f39e
MD5 976ccab9faa926544843dde95811fdbc
BLAKE2b-256 102f6e2c727649d5e97ee17230f4c064480c69eb563f52ba87df448647d77a99

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7974a0b5ecd505609e3b19742b60cee7aa2aa2fb3151bc917e6e2646d7667dcf
MD5 c324a7c0746ef279095777e1a56f59dc
BLAKE2b-256 c2958725b2b2fcb418abe048b5558af42e444161433a76b47759539fe5bb7992

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97f68b8d6831127e4787ad15e6757232e14e12060bec17091b85eb1486b91d8d
MD5 d62798157a3210d312f31e2ee85d4b1d
BLAKE2b-256 c21efa099993d17c00addbb76b3bfcd3ab1692fefc4e193ba738e111c09cfbe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f30bf9fd9be89ecb2360c7d94a711f00c09b976258846efe40db3d05828e8089
MD5 5a6c06179dc0325410256e4bf88ce271
BLAKE2b-256 bba63a22521736a3a75263ce930a2257eb60fd2a6b8fd9293ea1271a074a202f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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.1-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.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 311f30128d7d333eebd7896965bfcfbd0065f1716ec92bd5638d7748eb6f936a
MD5 45b3f3d90196f31a19e27a6033a48971
BLAKE2b-256 e91b0cad3a4f1906dc36a9cc89093d36b134638463e8e43479dbb96fd47d99ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.1-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 AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page