Skip to main content

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. You can also register your own set of codecs, and yes, it would work as-is.

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

Feature Chardet Charset Normalizer cChardet
Fast
Universal1
Reliable without distinguishable standards
Reliable with distinguishable standards
License 0BSD2
disputed
MIT MPL-1.1
restrictive
Native Python
Detect spoken language N/A
UnicodeDecodeError Safety
Whl Size ~1024 kB ~250 kB ~200 kB
Supported Encoding 99 99 40
Can register custom encoding

Reading Normalized TextCat Reading Text

⚡ Performance

This package offer similar performances against Chardet but faster in p99. Here are some numbers.

Package Accuracy Mean per file (ms)
chardet 7.5 99 % 0.5 ms
charset-normalizer 98 % 0.6 ms
Package 99th percentile 95th percentile 50th percentile
chardet 7.5 4.5 ms 1.5 ms 0.2 ms
charset-normalizer 3.9 ms 1.9 ms 0.3 ms

updated as of August 2026 using CPython 3.12, Charset-Normalizer 3.5, and Chardet 7.5 inside a (libc Debian) container. The host CPU is a 13th gen Intel mobile CPU.

Stats are generated using 477 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. Chardet claims on his documentation to have a greater accuracy than us based on the dataset they trained Chardet on(...) Well, it's normal, the opposite would have been worrying. Whereas charset-normalizer don't train on anything, our solution is based on a completely different algorithm, still heuristic through, it does not need weights across every encoding tables.

✨ 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

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.5.0 (2026-08-12)

Added

  • Explicit support for Python 3.15

Fixed

  • Comparing a CharsetMatch to a non-alias encoding strings (#773)
  • Return 0.0 CharsetMatch.multi_byte_usage for empty payloads instead of crashing (#774)
  • A file with both a charset declaration and BOM/SIG did not verify first the BOM/SIG charset.
  • iso2022* cases misdetected due to a flaw in our multibyte chunking logic.

Changed

  • Replaced the optional mypyc build with Cython extensions while retaining the pure Python fallback. The previous engine (mypyc) started to hit rough limit around the optimization of our noise/coherence detector while Cython allows us to steer the engine toward the right generated optimized sources. This change SHOULD not impact bundler (e.g. Pyinstaller) as the module are immediately discoverable (i.e. not hidden import like mypyc did). Moreover, a long wished distribution is the abi3 wheels, this will allow us to no longer rush each year when a new Python interpreter is released. We still distribute the interpreter specific wheels for faster performance.
  • Applied micro-optimization on several utils.
  • CharsetMatches no longer sort on each match insertion.

Misc

  • Removed an old performance optimization attempt in apy.py (success_fast_tracked+payload_result_cache).

3.4.9 (2026-07-07)

Fixed

  • Regression in our fallback path leading to a decode error. (#771) We've yanked 3.4.8 as a result of that bug.

3.4.8 (2026-07-06)

Fixed

  • Wall import time due to cascade codec imports for our multibyte first sort of iana supported codecs (#742)
  • Unnecessary json import at runtime (#753)
  • Inverse capitalization not seen by noise detector (#731)

Changed

  • No longer holding a global cache for our noise / coherence measurements. Relax RSS memory usage.
  • Micro-optimizations in our noise / coherence measurements.
  • No longer using regex search by default for our preemptive charset mark algorithm.
  • Raised upperbound of setuptools to v83.
  • Raised upperbound of mypy(c) to v2.1.

Removed

  • Redundant UTF7 BOM marker (#730)

3.4.7 (2026-04-02)

Changed

  • Pre-built optimized version using mypy[c] v1.20.
  • Relax setuptools constraint to setuptools>=68,<82.1.

Fixed

  • Correctly remove SIG remnant in utf-7 decoded string. (#718) (#716)

3.4.6 (2026-03-15)

Changed

  • Flattened the logic in charset_normalizer.md for higher performance. Removed eligible(..) and feed(...) in favor of feed_info(...).
  • Raised upper bound for mypy[c] to 1.20, for our optimized version.
  • Updated UNICODE_RANGES_COMBINED using Unicode blocks v17.

Fixed

  • Edge case where noise difference between two candidates can be almost insignificant. (#672)
  • CLI --normalize writing to wrong path when passing multiple files in. (#702)

Misc

  • Freethreaded pre-built wheels now shipped in PyPI starting with 3.14t. (#616)

3.4.5 (2026-03-06)

Changed

  • Update setuptools constraint to setuptools>=68,<=82.
  • Raised upper bound of mypyc for the optional pre-built extension to v1.19.1

Fixed

  • Add explicit link to lib math in our optimized build. (#692)
  • Logger level not restored correctly for empty byte sequences. (#701)
  • TypeError when passing bytearray to from_bytes. (#703)

Misc

  • Applied safe micro-optimizations in both our noise detector and language detector.
  • Rewrote the query_yes_no function (inside CLI) to avoid using ambiguous licensed code.
  • Added cd.py submodule into mypyc optional compilation to reduce further the performance impact.

3.4.4 (2025-10-13)

Changed

  • Bound setuptools to a specific constraint setuptools>=68,<=81.
  • Raised upper bound of mypyc for the optional pre-built extension to v1.18.2

Removed

  • setuptools-scm as a build dependency.

Misc

  • Enforced hashes in dev-requirements.txt and created ci-requirements.txt for security purposes.
  • Additional pre-built wheels for riscv64, s390x, and armv7l architectures.
  • Restore multiple.intoto.jsonl in GitHub releases in addition to individual attestation file per wheel.

3.4.3 (2025-08-09)

Changed

  • mypy(c) is no longer a required dependency at build time if CHARSET_NORMALIZER_USE_MYPYC isn't set to 1. (#595) (#583)
  • automatically lower confidence on small bytes samples that are not Unicode in detect output legacy function. (#391)

Added

  • Custom build backend to overcome inability to mark mypy as an optional dependency in the build phase.
  • Support for Python 3.14

Fixed

  • sdist archive contained useless directories.
  • automatically fallback on valid UTF-16 or UTF-32 even if the md says it's noisy. (#633)

Misc

  • SBOM are automatically published to the relevant GitHub release to comply with regulatory changes. Each published wheel comes with its SBOM. We choose CycloneDX as the format.
  • Prebuilt optimized wheel are no longer distributed by default for CPython 3.7 due to a change in cibuildwheel.

3.4.2 (2025-05-02)

Fixed

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

Changed

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

3.4.1 (2024-12-24)

Changed

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

Added

  • pre-commit configuration.
  • noxfile.

Removed

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

Fixed

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

3.4.0 (2024-10-08)

Added

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

Fixed

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

3.3.2 (2023-10-31)

Fixed

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

Added

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

3.3.1 (2023-10-22)

Changed

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

3.3.0 (2023-09-30)

Added

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

Removed

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

Changed

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

Fixed

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

3.2.0 (2023-06-07)

Changed

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

Added

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

Fixed

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

3.1.0 (2023-03-06)

Added

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

Removed

  • Support for Python 3.6 (PR #260)

Changed

  • Optional speedup provided by mypy/c 1.0.1

3.0.1 (2022-11-18)

Fixed

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

Changed

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

3.0.0 (2022-10-20)

Added

  • Extend the capability of explain=True when cp_isolation contains at most two entries (min one), will log in details of the Mess-detector results
  • Support for alternative language frequency set in charset_normalizer.assets.FREQUENCIES
  • Add parameter language_threshold in from_bytes, from_path and from_fp to adjust the minimum expected coherence ratio
  • normalizer --version now specify if current version provide extra speedup (meaning mypyc compilation whl)

Changed

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

Fixed

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

Removed

  • Coherence detector no longer return 'Simple English' instead return 'English'
  • Coherence detector no longer return 'Classical Chinese' instead return 'Chinese'
  • Breaking: Method first() and best() from CharsetMatch
  • UTF-7 will no longer appear as "detected" without a recognized SIG/mark (is unreliable/conflict with ASCII)
  • Breaking: Class aliases CharsetDetector, CharsetDoctor, CharsetNormalizerMatch and CharsetNormalizerMatches
  • Breaking: Top-level function normalize
  • Breaking: Properties chaos_secondary_pass, coherence_non_latin and w_counter from CharsetMatch
  • Support for the backport unicodedata2

3.0.0rc1 (2022-10-18)

Added

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

Changed

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

Fixed

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

Removed

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

3.0.0b2 (2022-08-21)

Added

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

Removed

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

Fixed

  • Sphinx warnings when generating the documentation

3.0.0b1 (2022-08-15)

Changed

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

Removed

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

2.1.1 (2022-08-19)

Deprecated

  • Function normalize scheduled for removal in 3.0

Changed

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

Fixed

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

2.1.0 (2022-06-19)

Added

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

Changed

  • Reuse 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.

  1. They are clearly using specific code for a specific encoding even if covering most of them.

  2. Chardet 7 replaced the historical LGPL-licensed implementation with an AI-assisted rewrite, initially distributed under MIT and later under 0BSD. The original author contests that the rewrite was sufficiently independent to permit relicensing, while Chardet's maintainer maintains that it is a new, non-derivative implementation. A separate discussion raises questions about copyright ownership and licensing of substantially AI-generated code. Neither unresolved question is presented here as settled law. The concern is broader than whether ideas, APIs, or observable behavior are copyrightable. Independent implementations are essential to open-source competition. The ethical question is whether a maintainer with extensive access to a reciprocal project's source, architecture, tests, behavior, community, and reputation can use an LLM to recreate the same product under the same package identity, then treat the generated implementation as a provenance reset that extinguishes the project's reciprocal licensing obligations and contributor expectations. Responsible AI use in open source requires more than producing text that differs from the historical source: it requires transparent provenance, respect for project lineage, meaningful attribution, accountable human review, and consideration for the social agreement under which earlier contributors participated. If automated rewriting becomes an accepted way to retain a project's name, users, and accumulated reputation while discarding its reciprocal license, it risks weakening the trust and incentives on which FOSS depends. Early Chardet 7.x development and evaluation also incorporated files originating from charset-normalizer's test corpus. Results measured on data that influenced implementation or model development are not independent validation. Charset-normalizer has been MIT-licensed since inception and originates from a continuous human-designed, encoding-agnostic project history. AI assistance may be used, but every proposed change remains subject to maintainer review, adjustment, testing, and accountability; AI is an engineering aid, not a mechanism for erasing provenance or project lineage.

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

Uploaded Source

Built Distributions

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

charset_normalizer-3.5.0-py3-none-any.whl (67.9 kB view details)

Uploaded Python 3

charset_normalizer-3.5.0-cp315-cp315t-win_arm64.whl (193.2 kB view details)

Uploaded CPython 3.15tWindows ARM64

charset_normalizer-3.5.0-cp315-cp315t-win_amd64.whl (215.4 kB view details)

Uploaded CPython 3.15tWindows x86-64

charset_normalizer-3.5.0-cp315-cp315t-win32.whl (190.8 kB view details)

Uploaded CPython 3.15tWindows x86

charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl (251.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_s390x.whl (257.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl (250.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl (263.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl (239.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl (242.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

charset_normalizer-3.5.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (249.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (249.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (258.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (261.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (234.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (240.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

charset_normalizer-3.5.0-cp315-cp315t-macosx_10_15_universal2.whl (368.7 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ universal2 (ARM64, x86-64)

charset_normalizer-3.5.0-cp315-cp315-win_arm64.whl (183.4 kB view details)

Uploaded CPython 3.15Windows ARM64

charset_normalizer-3.5.0-cp315-cp315-win_amd64.whl (203.7 kB view details)

Uploaded CPython 3.15Windows x86-64

charset_normalizer-3.5.0-cp315-cp315-win32.whl (179.8 kB view details)

Uploaded CPython 3.15Windows x86

charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_x86_64.whl (253.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_s390x.whl (264.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_riscv64.whl (251.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl (266.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_armv7l.whl (241.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_aarch64.whl (244.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

charset_normalizer-3.5.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (251.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

charset_normalizer-3.5.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (251.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

charset_normalizer-3.5.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (262.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

charset_normalizer-3.5.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (265.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

charset_normalizer-3.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (236.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (242.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

charset_normalizer-3.5.0-cp315-cp315-macosx_10_15_universal2.whl (341.6 kB view details)

Uploaded CPython 3.15macOS 10.15+ universal2 (ARM64, x86-64)

charset_normalizer-3.5.0-cp314-cp314t-win_arm64.whl (193.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

charset_normalizer-3.5.0-cp314-cp314t-win_amd64.whl (215.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

charset_normalizer-3.5.0-cp314-cp314t-win32.whl (190.6 kB view details)

Uploaded CPython 3.14tWindows x86

charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (249.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_s390x.whl (257.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl (242.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (262.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl (229.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (241.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

charset_normalizer-3.5.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (242.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (248.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (259.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (260.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (227.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (239.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

charset_normalizer-3.5.0-cp314-cp314t-macosx_10_15_universal2.whl (369.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

charset_normalizer-3.5.0-cp314-cp314-win_arm64.whl (183.4 kB view details)

Uploaded CPython 3.14Windows ARM64

charset_normalizer-3.5.0-cp314-cp314-win_amd64.whl (203.7 kB view details)

Uploaded CPython 3.14Windows x86-64

charset_normalizer-3.5.0-cp314-cp314-win32.whl (179.8 kB view details)

Uploaded CPython 3.14Windows x86

charset_normalizer-3.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (140.0 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (252.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_s390x.whl (264.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_riscv64.whl (245.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl (265.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_armv7l.whl (231.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (243.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

charset_normalizer-3.5.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (245.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

charset_normalizer-3.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (250.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

charset_normalizer-3.5.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (262.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

charset_normalizer-3.5.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (265.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

charset_normalizer-3.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (226.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (241.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

charset_normalizer-3.5.0-cp314-cp314-macosx_10_15_universal2.whl (341.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

charset_normalizer-3.5.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (197.6 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

charset_normalizer-3.5.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (194.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

charset_normalizer-3.5.0-cp314-cp314-android_24_x86_64.whl (224.4 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

charset_normalizer-3.5.0-cp314-cp314-android_24_arm64_v8a.whl (211.7 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

charset_normalizer-3.5.0-cp313-cp313-win_arm64.whl (179.2 kB view details)

Uploaded CPython 3.13Windows ARM64

charset_normalizer-3.5.0-cp313-cp313-win_amd64.whl (198.9 kB view details)

Uploaded CPython 3.13Windows x86-64

charset_normalizer-3.5.0-cp313-cp313-win32.whl (177.2 kB view details)

Uploaded CPython 3.13Windows x86

charset_normalizer-3.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (139.7 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (251.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_s390x.whl (261.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_riscv64.whl (245.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl (263.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_armv7l.whl (233.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (241.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

charset_normalizer-3.5.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (244.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

charset_normalizer-3.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (249.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

charset_normalizer-3.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (260.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

charset_normalizer-3.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (262.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

charset_normalizer-3.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (227.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (239.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

charset_normalizer-3.5.0-cp313-cp313-macosx_10_13_universal2.whl (339.9 kB view details)

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

charset_normalizer-3.5.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (197.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

charset_normalizer-3.5.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (193.9 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

charset_normalizer-3.5.0-cp313-cp313-android_24_x86_64.whl (222.8 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.13

charset_normalizer-3.5.0-cp313-cp313-android_24_arm64_v8a.whl (211.1 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.13

charset_normalizer-3.5.0-cp312-cp312-win_arm64.whl (180.0 kB view details)

Uploaded CPython 3.12Windows ARM64

charset_normalizer-3.5.0-cp312-cp312-win_amd64.whl (200.1 kB view details)

Uploaded CPython 3.12Windows x86-64

charset_normalizer-3.5.0-cp312-cp312-win32.whl (178.0 kB view details)

Uploaded CPython 3.12Windows x86

charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (249.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_s390x.whl (259.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_riscv64.whl (242.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl (261.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_armv7l.whl (231.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (238.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

charset_normalizer-3.5.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (243.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

charset_normalizer-3.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (247.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

charset_normalizer-3.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (257.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

charset_normalizer-3.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (260.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

charset_normalizer-3.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (229.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (237.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

charset_normalizer-3.5.0-cp312-cp312-macosx_10_13_universal2.whl (343.9 kB view details)

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

charset_normalizer-3.5.0-cp311-cp311-win_arm64.whl (184.9 kB view details)

Uploaded CPython 3.11Windows ARM64

charset_normalizer-3.5.0-cp311-cp311-win_amd64.whl (206.2 kB view details)

Uploaded CPython 3.11Windows x86-64

charset_normalizer-3.5.0-cp311-cp311-win32.whl (181.3 kB view details)

Uploaded CPython 3.11Windows x86

charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (262.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_s390x.whl (277.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_riscv64.whl (258.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl (280.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_armv7l.whl (240.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (252.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

charset_normalizer-3.5.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (259.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

charset_normalizer-3.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (261.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

charset_normalizer-3.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (276.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

charset_normalizer-3.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (280.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

charset_normalizer-3.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (240.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (250.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

charset_normalizer-3.5.0-cp311-cp311-macosx_10_9_universal2.whl (349.1 kB view details)

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

charset_normalizer-3.5.0-cp310-cp310-win_arm64.whl (184.4 kB view details)

Uploaded CPython 3.10Windows ARM64

charset_normalizer-3.5.0-cp310-cp310-win_amd64.whl (205.7 kB view details)

Uploaded CPython 3.10Windows x86-64

charset_normalizer-3.5.0-cp310-cp310-win32.whl (181.7 kB view details)

Uploaded CPython 3.10Windows x86

charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (263.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_s390x.whl (277.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_riscv64.whl (258.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl (280.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_armv7l.whl (241.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (252.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

charset_normalizer-3.5.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (259.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

charset_normalizer-3.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (261.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

charset_normalizer-3.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (277.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

charset_normalizer-3.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (280.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

charset_normalizer-3.5.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (239.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (250.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

charset_normalizer-3.5.0-cp310-cp310-macosx_10_9_universal2.whl (349.8 kB view details)

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

charset_normalizer-3.5.0-cp39-cp39-win_arm64.whl (184.8 kB view details)

Uploaded CPython 3.9Windows ARM64

charset_normalizer-3.5.0-cp39-cp39-win_amd64.whl (206.0 kB view details)

Uploaded CPython 3.9Windows x86-64

charset_normalizer-3.5.0-cp39-cp39-win32.whl (182.0 kB view details)

Uploaded CPython 3.9Windows x86

charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (263.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_s390x.whl (279.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_riscv64.whl (259.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl (281.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_armv7l.whl (242.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (252.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

charset_normalizer-3.5.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (260.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

charset_normalizer-3.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (261.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

charset_normalizer-3.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (279.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

charset_normalizer-3.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (281.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

charset_normalizer-3.5.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (240.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (250.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

charset_normalizer-3.5.0-cp39-cp39-macosx_10_9_universal2.whl (350.8 kB view details)

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

charset_normalizer-3.5.0-cp37-abi3-win_arm64.whl (267.1 kB view details)

Uploaded CPython 3.7+Windows ARM64

charset_normalizer-3.5.0-cp37-abi3-win_amd64.whl (199.0 kB view details)

Uploaded CPython 3.7+Windows x86-64

charset_normalizer-3.5.0-cp37-abi3-win32.whl (173.6 kB view details)

Uploaded CPython 3.7+Windows x86

charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_x86_64.whl (253.4 kB view details)

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

charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_s390x.whl (255.2 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ s390x

charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_riscv64.whl (246.1 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ riscv64

charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_ppc64le.whl (259.7 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ppc64le

charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_armv7l.whl (232.2 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_aarch64.whl (240.3 kB view details)

Uploaded CPython 3.7+musllinux: musl 1.2+ ARM64

charset_normalizer-3.5.0-cp37-abi3-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (248.8 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

charset_normalizer-3.5.0-cp37-abi3-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (253.7 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

charset_normalizer-3.5.0-cp37-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (259.2 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

charset_normalizer-3.5.0-cp37-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (230.6 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.5.0-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (239.5 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

charset_normalizer-3.5.0-cp37-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (251.9 kB view details)

Uploaded CPython 3.7+manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

charset_normalizer-3.5.0-cp37-abi3-macosx_10_9_universal2.whl (330.8 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for charset_normalizer-3.5.0.tar.gz
Algorithm Hash digest
SHA256 49bd5feb59b0bf3cbf6ebcf4352e371c95b9da9bacd4449f8b64d0ad2c10a26e
MD5 14e4da6d181bfbe099f1b5e5106922ff
BLAKE2b-256 cb314971872b3ed8715346231fb6eb4da8fcba65a4143c189db151ee28a2812b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 993dfcbe75a85a3784abb5084f2c41b915767c90546fcc92803cffa28611baea
MD5 791c9edf2608e1fa996f877c08e73097
BLAKE2b-256 22c7754d09943a616937df61e4ba367c409ded2a987e872972098d51a6fcf73b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 527e28a5e751d9e11369b9c5f9ab35c748eb9c109101920c7deb40d6eadf8d03
MD5 703986becac33010298808453e854a7c
BLAKE2b-256 47214869598aae0872d94faa5933918a4fe37ab2c5af9d095786e241f9506fed

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-win_arm64.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.5.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 d7229a99120c6c2792d96f4857c2648ce5530e93667a2c2388c5ef69a6b84775
MD5 925cbc9f664469c6657c8e93c95728c5
BLAKE2b-256 e1ead18147626a1667cc773c42104ab155a4ca5d6d4d174b7a35e01062213ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-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.5.0-cp315-cp315t-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 9e726478d7a213847860219d74665a6892a643ac93b8f76580f6cf9ed39996b7
MD5 095f2bd2a90b16e27b55e53c4d4498bb
BLAKE2b-256 c36976343dcf4381a698807ff8a20d89f66bbdd9f6222b0b17740f77ab764335

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-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.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a17864853f7c518ae7d4b368af98f427f9396805476af40af8698560f09d7d97
MD5 ea07952d2fe331baf5f82639d50a2c48
BLAKE2b-256 a560d1f502fcaa048a2aca3ab80bfef8407659c131e4f1792fa805fec14b4960

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-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.5.0-cp315-cp315t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f044cb1cf44012184715f46584658993b5fee9344d71c4b0c455a17a299730c0
MD5 1b68517896143953e61025d8ad3c5910
BLAKE2b-256 2ae96475d739e0ec8bb1236e06263dc3affaffdf947d8114ad27024932f325da

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-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.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4253da1b4456b633651a8d59eb1dc7a8a8fa38241014dd7c217b353e547ae394
MD5 80a02f599d89421da191a22b2303a023
BLAKE2b-256 d601d027583c869f40ba980c1c76994adbd522c360a6327e72beb44d7c267385

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_riscv64.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.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6c06875a1d4a7537bef70f659b55c6b55b9a47ec3ba8f2db610350c2d9915e6e
MD5 1c898b20b75fe63c73ee9856c6d448af
BLAKE2b-256 0b8271c0c9b046697b8da66b3acefa8d5f92d00a9ef433ad7c3522b971d0369a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-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.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 63ea0cc840c66670183578c2630d138c0e944aeadfc33f25173ee240f5db780d
MD5 9556d66ba3d32753895384082eb37e60
BLAKE2b-256 26d67ccfa62b53b40fc06b2d3504825aa400764740bd10cf248fdc4272441b93

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_armv7l.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.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54c963ce6404e52255b737e8a06d356fc762d59096ae566203a67cf2b7d050f2
MD5 b7aa5167c9886f518d673cb78c69f3c2
BLAKE2b-256 0baf28bb5e5dbd3e67cb9196a62781ac2b6d79492f4fc7a069b6ca7d6d6c8d58

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-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.5.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 75e243abbb528c1a774390ed71e3f868a9f37b1373442e4bbadd401cfc505ff4
MD5 61a905373317262960f16c27273ec2cc
BLAKE2b-256 85f39366492b8a5fe0187de282e001d61345740cf79eb4a5f20181d769be02b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9419f44e568f7fafcdc0b3b5c766a2364e705a9b34fb8a56b431e0d1f3f4258
MD5 d7224558d55bf61f6ad9a1507dbf71b9
BLAKE2b-256 b38152ebd9849bf9e35d0b21fff115cb6543162a8e1f2f564e8f87121a336b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.5.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a60773eb5fda796e6e6f76b9c152d270fe59f9788a51a6ff8ba44082d8548ae4
MD5 ea8cff93b260132d2e82b28903be0ba0
BLAKE2b-256 3b733e887fa0781a395339355ed934ab6561ceb5bb52574160f070224039c630

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.5.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5e68229977b2dea28e7061c0c0630a23f2f9f6e9c6fb38d77d3d6dbfe3768b74
MD5 e9aa9bdec2364de9c17a72ce5748f622
BLAKE2b-256 18d7f84ef0966bbe216f71029e34e7fa425a16b1682e2a40265e679dedf2b655

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1c010dd86d3f4c4433c9634d33ce8147393b270dfa54f217f965540b8ae8e075
MD5 233bb84a5d0ae8ba374c972f30947de0
BLAKE2b-256 2bb9c17e72aaa1b3e1ca6c184e8025cf138ed492d01a54f85286ff7d31253a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.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.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8cd1283a9fe6c2065c807e9d5da81afe5e1e004caef39adc0d8ae86dd883698
MD5 1f6e0a248f0784806753a84bfcd9f794
BLAKE2b-256 10fcb249466ddbbeffa448b6597631e9091d1f01b5132ff8e7a0e21a6eb72b63

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.5.0-cp315-cp315t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c9bde7a960720c8b8e1b5ef7afaa0c9a2f3b55c44abd635b2b29dd066b298e3a
MD5 fd74978ebe983cc0c8647efe8d7ce181
BLAKE2b-256 d1d014aef3b9f80f2593c039d897e89034635b9eb0eb44b6ce5173bbd79ff338

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315t-macosx_10_15_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.5.0-cp315-cp315-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 fec352b793cdc183cc9e7e0b6c10fd7bff38ec54ba44cc43599b9b56f7f3db2e
MD5 d5713c0055c1f696539db6cd87276cd2
BLAKE2b-256 fc71219783eb691aa2ec879c0e521afdfe2b826f9678eed51b9c039d03e0db2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-win_arm64.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.5.0-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 e3b9eaa99a6d8c9ace4cd303915947ef55088d4cd87c6676874f98c5c03aa040
MD5 cb18246c447359c4b9a886c300dee6e5
BLAKE2b-256 e2f0afb5bfdea52fd943b1960403847a276b8e900c6e4cd6a38752321b4eda64

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-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.5.0-cp315-cp315-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 83b62410bd36bb1178a7d563e2ee0cf21eb1c980c912ab99c2c78f06227f1731
MD5 90cf897cfa85a72cde835cb7e624b8f5
BLAKE2b-256 5988f2b0f7ebb92493e925889ff29239b3b0073ffafd91230dbfc69e5cf9389c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-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.5.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c75191e3c8052045179646cb40e280800a4e0bdfda34d9c949c2f268d44e80e4
MD5 fba4bb64e7dbd43dea5abefa886e05aa
BLAKE2b-256 cffb17f47ae6ca35b562fb6e6f4b05f7aec6034217353eb4a23aaa3566dc7340

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-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.5.0-cp315-cp315-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c5c6d47a865147e0ae3322ce92e7fb52ba3169d94b447deda56897ea2aa6fac9
MD5 df91f16c85b5ab49c7221f1b23a2d672
BLAKE2b-256 03a8fee5633081e595fe9e191df6f215106c791ad596eddf5e41e39b8ea0f2e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-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.5.0-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e31786a947b136329bfdc458c82c06d4ec539b4a4436b7da4df4aafc9902ee80
MD5 1981eec6905998e73ae149666d8963dd
BLAKE2b-256 55eaeca03527307670f5d102c295671a800c404ca958cf94fefd10fc963a72f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_riscv64.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.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c41b067eddcfa5ee6b1169c287605be7fb6b0ea22bba6474c5bb978a668def4f
MD5 551261bdc4debe88c6b083536df15867
BLAKE2b-256 ae150fe893d3e1c7d111280bd6c4bd4c1e431487a1124a1bcbce78dfeda3a3a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-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.5.0-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c455829625df983f716cbaecbba77f2d1dc2e0e0ed1638c059cece15a279344b
MD5 eaea72bae3e44007c434dff18af9720d
BLAKE2b-256 0f3402c15d6a0aa6b934dcdc136b111da63ae857b9fd51cf5505b0736337c2eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_armv7l.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.5.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96720f2aeed3434bc48f4d52fbad64ecc820cfed88915d664780ed9ba09ede78
MD5 ef69d550b0cc424c1b2eece7f78cf5e9
BLAKE2b-256 f1b16e69b8056f615e5ccff6b91ca16db2d47922251f016821a300c115267fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-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.5.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2401f7671242e921e604f609d429f6b282ea4ca787a6ffd22ed7372011ddb9d1
MD5 eb60c15943aae8b7d9866631cec9044f
BLAKE2b-256 a0649a6ce2e7acc5cf1b4636f78f82e89ff581e06a0216a40678b28bd4d832c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9bb3e0d1345b9c0fe73673ea656375f38a78ec679c2edeae0c24800f04798a85
MD5 51ced0099f52516add3cac9dd82818e0
BLAKE2b-256 0adfebeb224a949d91829e5e114c6b64372a3c792b00762a9e951ce416f3a32d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.5.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5b81980668800dd1c69faad8aea6e85a8cee0e13bcd3bba7671695ff16260293
MD5 649b340ec48058e322b9d8565d48a21c
BLAKE2b-256 30e73f1fafa87e2643257474f9c4eec609f2193a61d907dce7dd4f3f2390ebd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.5.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3d00e18e7bbf47e332ab63903d18bae31efc701b1d8cca0382b97784a621fc44
MD5 fd9431d7f77e7c8e00a94f900e5e4fc5
BLAKE2b-256 beb4d6d3e70be93ebe5fabef65e4c7ac113e1d1705cbaeb5fb72467e713aca17

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f0fde5e5100c735b2274ab898f0742a5dcde492796296cfbe7e0ad6a4cd1a396
MD5 7086c9739b3bf9c380e01e5fa268fdd1
BLAKE2b-256 4b9d5b616a887301ff4cc0916b39ba44257390d3da80deeed6e8b6f2f26b14a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.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.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c9f45186390aee4d1f26f723c615b67df346766c3b16df000d84d6e374f06757
MD5 f32a31dcab6f571e2a4c48bdd854dc7d
BLAKE2b-256 6a329c3126dc429c6d9d7f79c52681a7c4453ed20a26267c9a8275d7ab620aba

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.5.0-cp315-cp315-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c38d1e9bc2073b0984d2099ea647fd7f6c0d8f83a1e14e0cd32926f16e4c44ce
MD5 c0278a9a0e01705aa770facf7baf9f19
BLAKE2b-256 42a4dee470afb7a55c4f78b6fef37306c51fed17ebf94dbe530798c91d394350

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp315-cp315-macosx_10_15_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.5.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 a284c36b9c6616bf0a8aa4aabba668a0c75ba65ccf40a79868aeaa69ad996897
MD5 3ffb1efde8eba986bb44e6136e8bf4e5
BLAKE2b-256 30f3af6a1160fef0eac4510d035241e11eccf78e5350e4cd4de79e79fe02a5e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-win_arm64.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.5.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 3288a560dc3114d5d2ebe309b1ef43f8af355eafe25856832415c2a8196c9db3
MD5 c0d7054a07db5c97eeb7cacff7f5950a
BLAKE2b-256 6c8143e0584a802051a22c725795ebe1df78263abc7de858eef6cdc9b36637e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-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.5.0-cp314-cp314t-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 076cf9d3f3c7e410295c09d96355cf3b1bcae74990034d80e4371e20fe1ba4c6
MD5 9a4d235248ca653b106b931e0efbc984
BLAKE2b-256 6510d9f6c5589cd24198d4ce6cd2948191c18e657272f433e5a00d258d9f5c22

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-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.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5f834965c2fe589837bac1002e07e25734ff70381903ccd95b3d649e22bfa40
MD5 b0908c2c49e073ae06fb8ecc08ede742
BLAKE2b-256 797736787d41ead124746506a4425c729f4f17c68280af8a6a5baa0a598cae86

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-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.5.0-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4c440122e1ea68b1f8b44a631ebf49c39180f6869b1da22d76e8a724208ec6e9
MD5 00353d72cc547b95648100553a13f94e
BLAKE2b-256 a3640946aeab6462dad9f160a50dfb4704d3f58a5ee708f085abc2105fbbff0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-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.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d6100f877d2ed95f0856a3fde25334153add94bf2224c43f45f88e7039262aaa
MD5 11972e20789d4651d8a6e5f0064a76e6
BLAKE2b-256 9d9502e34c97bedfd0c5574efb9179c850591acc7f967ba039ed8dd29d332b73

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_riscv64.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.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f278e131afa96a3622cef9211c406ea2ad1b68eb06f8837cd443684a40e0ae50
MD5 fd44e2d96ede4a8da272df691a3d1ea5
BLAKE2b-256 42a2639c4278adcb7ed1f4db608dd9ac19b6774fa2285a96b1c0bdb9c124ccbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-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.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 168a0cb536b5123a77bc42ecf5e0bf6f923d0d9ae43c42a14eb0677c19ac6c19
MD5 4d92e17a0388432a39a3b4d1ebcd808d
BLAKE2b-256 f28904a03de5d27c77c624d9fcf6287073754bd438df1b58cb7d030c57c2824d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_armv7l.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.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48920bf6fe83eb2226756ac623fa54940487154eb18f80889d5735cf234965c0
MD5 ae25b8976269408fdd19a8b8021ac5e0
BLAKE2b-256 61920472cdad1061c2f0e4d3aee29973eb6e81bb8fe256ff2860cf115b15f1c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-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.5.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 478650a70a750d75d5add401606c77f77069c32e4ba2c9131dc6cee566962ca0
MD5 634392e1d6d4bdc693559035cdc79469
BLAKE2b-256 cff8bcae67f994c8fd31dda445e5ebf84045823c31443fe46f0e9ee6aca99aa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06f4fb62a9139bef056b8b2da6773c94c2f259f90e4b8e53b166f3d0372d7cf6
MD5 1e4cf83c72d7951550c8e4611d8b1871
BLAKE2b-256 e1fd36129689be08dc287b951306946657ff70d76e287dd57018861f86d0e474

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.5.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1328cc57dd4372be1265f68232cee890e087416e3e6e93e6ffb32c2bad4d36a4
MD5 3145dfe15addacfadd019adb85ac8773
BLAKE2b-256 b0618c7ff4c81b2a88271126acf4b83ab3e31f6d63868b0f01d331eaa0f9cb67

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.5.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f1619a3cc174a7e3963dd34348e6fceb6e50db0ddeb0031bd7c73a58286454fa
MD5 73fd660cedec9f9e3624725865c0c2c9
BLAKE2b-256 f0ba47d951e1a51dddbaad0a1410baf49fb1d897ceb00281568f1183b79bce9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6c57af4084c10cb3286688d65e4c654190ff5edcbc2411d08cdca0a8a44c59a1
MD5 e80285652f5a4062c44075c35b9b6cde
BLAKE2b-256 7e6277f0b850048e430fc350ec58876b0c020f5c8d0d3956fd1a4d6ae2fa292f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.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.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58ca5dc0a0ef99f2801ec0574214c978e9574055bc783830bbb6e7433218609f
MD5 0ba730ebe853452d0cd3e6ffe34fa562
BLAKE2b-256 3cb2ad7c3242d7fe55cd55126c22c65cb1b49779782cdf8932fd01d12232d86a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.5.0-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 68b7e84ae8239a94f8d2c8f3f3a3a81bcde54805ec8f42a34de927d155688ec6
MD5 f8d78f56218aa91bda9fd4a81f6c15be
BLAKE2b-256 f1c9534ecb17b7fb95f9052c4a44cf316316a27d4a8f73e8475ff55e778dcdd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314t-macosx_10_15_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.5.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 dc28949de1bb5f7f30a46f15d74ce7ac5aaa63e03c5de04d68f571c7423af834
MD5 e4076d4905fcdf67b84ac37e377f5de1
BLAKE2b-256 9fba91d386870b5d9e4b0d8c4034f63877cc2e47b99c81ef05f3e6d42bf9a53f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-win_arm64.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.5.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ec6c464cf45867f66a2273e2214d9199a8fbad5cb95ca0fd45f6a2fe1d9d2cf4
MD5 e5b78affdadf32ed9311f7c9ad290ddd
BLAKE2b-256 0151f94dcf34fa8eba48c1fb89b6490a5f1426e19488fe5f38aac6c648c99057

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-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.5.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 606a86c1c3196f3738de39a67a7490bbd61cb31c0e0436070bd0c6a48170b38e
MD5 75e7fbc9c1af36896dae96bbb078b912
BLAKE2b-256 37ae1c4a46b6b00d1c34d2ee355ef99ad6173674166800d1af0f05f85028d513

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-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.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 f7496aed56b06325a1ad419c5bf23c6dd042558e874f71dd1b958f3e255f3053
MD5 0099711b7ed837daabcc6eaf787c1754
BLAKE2b-256 9c5fd88032edce951f499a2321cf7ae0d35a043c74be12bc22d81084cc7afbcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.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.5.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 401ea6e7af9e7852ed818f64714b579c1935482049670847ca3bd7ba45dc63fb
MD5 c40a40645d6427927ef6b865e6e9f600
BLAKE2b-256 386a838364bb8702229c6e5f8b23f80ff0f052a12dfaf3113a12fd6acbe92a44

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-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.5.0-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 91f9f7c151e772acebe489eaec96e96a2877202d7dd144e3f96b8676881715a0
MD5 a54168912f7d7621d07029fd0d6071f9
BLAKE2b-256 37a9a4ca9156964ded61c7718eba410ce11be2fd2b263fda4bcf08367b6578cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-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.5.0-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4ebebb410bc517e1d284c52a123e82704b21e4e7e26a21ebecf7439d0647b8a3
MD5 8ba6e943bd56891d706bfd400db4d49f
BLAKE2b-256 ebd4ef7a227ef89d215b47f9df79c3966610b17faa13bb2f236989207a631622

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_riscv64.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.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a3ad0e3da22852533858663848608f3f24c0d35e5cde415a4903476f2b4c88ec
MD5 10008b6389b94154291e1e7cc12d5ab9
BLAKE2b-256 245140c45d6d940c04005ed721aa54bdebf1ebb2930f8a2ae537e8d60484fb27

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-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.5.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 125ee619611019471b177c70bc3e9d4cda9fad7e01d93523501d3b188df0193a
MD5 79398a682bf458cb1b6fbfe196170f7b
BLAKE2b-256 70507bfcb327631d4870c720872b548745f6ec8baa044d51c21b5d1d32ac4e3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_armv7l.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.5.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3418edd0ecb72a0a3861cf72f31be0ad9b7fe338ce2b58fb5cc80b9aeb792700
MD5 ed3058d8b4d387c074edf16906a2b9fc
BLAKE2b-256 4f017720c904fa635d4260b4dced6029cf3d298c57b26741365d5a8d28c54043

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-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.5.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 19e52bda45086df8a4be4bb5910af6f5d9d3b538c78712c8ae09ef10b85bf458
MD5 73414e54acf4533860237540ddfd2bf3
BLAKE2b-256 ac5564854e99b25841f83e8e37d9df2f3d1f96f693439f80e5fabd542a7e47ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82cc5835997ec78afe293a192e385099355770a7db94b2fb1239d36b32796f1c
MD5 a922581a1fd8ee0b7cb39bacbe28c308
BLAKE2b-256 c208189b27e51fddc9d6b3695331da0e31792c1d88b953ad854e57f06e9b2cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.5.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e4e8fa586df2208ef040684751345f10f503834a757c9a74ecd19c1a2f9b1ccd
MD5 c5624de233da267d6fc66aaed5369233
BLAKE2b-256 dc786e838f6bb059f2c0afc60a4e7f294252f043c254656ad4114c50302cae4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.5.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0dfe83c1b4d00abbf433998117a14f56a5c2bc68226c0d331709eed0d1ce539b
MD5 33afc6ad7dcc58bdc70745e7aa9d3667
BLAKE2b-256 7dae8b52935b304f7b6bbf33151ed2b75266b09aa4b6f8f04230d948885b2577

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ac5a9cc079c67d75f4ddf343276031879eadbb333d1bb231cce297b8d7b9aae8
MD5 47b1d001d4579af6c9ebc9328c4f83cf
BLAKE2b-256 ebe47857023015400bc4aa0a82fbcca29fa2dc7ec25f971a130764cb2dc7a589

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.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.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf1e75dc07a3850b53d1e5f75e04d3ae12afe56284be7821771eaa2466350c73
MD5 d7bbff0071e77f82d6f82440f89de678
BLAKE2b-256 a7dd9e757101d1f76c35c0643684ba499ac3a181fb2b264c68174bf727d627e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.5.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1f99a8c3a1da5d955edbad18208b3d627bdd54c48a6e739fa877bdca98c686d6
MD5 6fd44095a27da6f9257de242e81b30ba
BLAKE2b-256 3d398fee3201b98d52289be60a775797d69be05a04fb6cfb48c1587dad33e649

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-macosx_10_15_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.5.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 d54625cbf4e6b60bf0639728cb8b4cb541e340f6d7cafae5806051a40ddf4c45
MD5 00e84f0e78c39713b8ee8277159e8c2f
BLAKE2b-256 78654ad3c5be108930310d8003f5602861d5b89f728293b9f09c3a4837f7ba10

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.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.5.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 f9f91d3e8382900f3a68fa0ce94294479de9cd2de6bc0c70acd0f0dfd511836b
MD5 6212851d8c3abd8bdc4af3ae6d57b2f2
BLAKE2b-256 f7dbeabb5996be2f529744755e7b2fc9396eff4a64961f034e7fd49d54b9afb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-ios_13_0_arm64_iphoneos.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.5.0-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 d788e2ded0c4c47efa4d73cfe59eaf975ee32f425219873d2cb3e3fbaa00f636
MD5 5127812fc5fc942837498510cd0f1512
BLAKE2b-256 e7daa944b32a46601ae5a4c3499e8d64ecd14fe82313f00da74dcdf00273a0b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-android_24_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.5.0-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 d95244906ed69d0f79f190893c65e336c15959003e21449256dc05c001b52ea2
MD5 5a2bae11a972676035807cb1c0eda080
BLAKE2b-256 4314d098868dac5ff27e0258f548b1c74c6484be528384965d8fcf8fc6a4011d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp314-cp314-android_24_arm64_v8a.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.5.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0b373bab0b867b68b8eb249da9478cab9181a42993437cd2f5dba5fb0b4fbd1b
MD5 ab7ebe396d0f1a681f05cf240b44080c
BLAKE2b-256 202e04c0bbfc8d9abf91959f7a3d207d45cbf63a8116984caae2381890019bb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 72982d9958a42f8132bf2d6b90214ed66477295ef1188731f98ae3511c6eeb5a
MD5 ba0079249306d9347bea1c577df2990e
BLAKE2b-256 fb886018cc8d76ea2b7cb02918f37e23e86c261d1a102713d7e88d2cfb8b211c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 196e270c4e80827b5072eed7d6aa661d133afada94fe366669f9609e718d305e
MD5 98bf3d8af1297bdd2620402efdbaed40
BLAKE2b-256 b3fbddb66303c86f7dc5043a457dad9fa82b4d6d0cb97094f9bcdde21693fd58

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 8f006866047c6ec4b627ec144b1e0bbc7427cb31fd7c08d19897d0ac9032af3d
MD5 f893c1ededcff36c6e0ae7ab617f47a6
BLAKE2b-256 17fc73b817e8af3f1d25ec5cf458d405abba5a144cf9812238a61530f5eac186

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fded2e82ff082e5d8e017e2ddcc1411bd8cb83b8585097fc401ef574f756b888
MD5 1caccc1825874690b73f29affd754b31
BLAKE2b-256 823b1a11fe66e555dbe2f5714ade6ba74fa29edc9155d9cf1001d4d6ed096aa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a5613a3a82c974227bde18f03409e30c467f8065cb56d822e3eb83708a5f223d
MD5 3d1b0fcb5b5cf51009adfdf0fc9b82c6
BLAKE2b-256 b39a298772fd0a0cbccadf36451a1cd7eef4b66a11e99b4a7f6fafc47cc62c75

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f2ce3d39fb4a9d674e6639dd5d3146b2e273475d2260f10163228d66fc04433d
MD5 c256379dacf1563fedb1a09342b95915
BLAKE2b-256 7c2d9202221be5c90b2a835924191e362690ed8dc8c7d6606100c2bd03fe0f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d016dc857136c726958102c3b8a3986acdc65ace6fbf12cfdc09cc4bfa2935b2
MD5 eb0cb2ea4063a137dd68d3f7582ee304
BLAKE2b-256 18d7691c967be459153fe9faf49bf78bc95639ef8bf6dd008f38cc6389a349eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 054420b5db984971d886e5e4e2c37c760ae6682aedbd066687ff0949d9ed5f08
MD5 8802c0006fe73a7afa62c1cc2328dfff
BLAKE2b-256 78276029dccba958621c7f3a65136f87c5512d712aef9e890f09512cc171bd03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5780a29823e1d2bec69b7a104ead4195a43f3e97782efaedbf1f79a0157af715
MD5 0b94f0795b3903a130d899987d545301
BLAKE2b-256 223e33f72ca11c1b619b220fd9f35905ebd171cbd0e0470f2357e467b9e861ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6c95450fce59f00c6d08eff6572ec2e736e5054c9450253afd5748f8416f2eb9
MD5 b3112bf30554cf2388171bc5547ad8d3
BLAKE2b-256 c8b4aee3a9d82edd0e931091ef3e9f03e46491ae3590e96e998d0975dadbe17c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b08ebf9488c7ff5eff038e48e6ea938178dfd9dcc8598b5ca941e4ae27b20be
MD5 56b42323705c30591b27553eb1a45996
BLAKE2b-256 3a6a5b964a1eb0f9075ecd45083eeb21aaec215334f98bac3d400302ea73875d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0f211c21aa316cb6e2662e54a1194633a79d98a50a876addacfce7ba5b34b09f
MD5 6251eac6995e9cac824db8b48b7017dd
BLAKE2b-256 be81196d26f6bd78b93e0d451b69082a71027ceeddd4b0be9170b81bb038f824

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6083d10a846218502d664375b9448508d9fa580bd834567423156c6abfbe899d
MD5 98592d5186836f71b3bda0c62d08c225
BLAKE2b-256 0d1add828f2b1d6f4bf10821b9a74d866be05ffcdbfcddfc501d6fe6428762a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3cfdab178a4add5483e26a9bb1c16d8018ccf39b4be7a3aea6c3979e6828f2ee
MD5 d601534337fd468f89a70ddefe64f556
BLAKE2b-256 d19e506c8d7a7722bba7c8cdd78c1b5ef23bda92bfbe0b3e28ea84673d519a0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.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.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70ff1c16eb0eb5ee6bb12739292347f981a5ba764cc4df1bc2e69b0405d4ac3b
MD5 663f0d59d3ec2dac16df1bef08b3f247
BLAKE2b-256 f408bdca5fc2bdc36ee443673dc7d12b23885a5a7b282bef85a1a4c3b325b40e

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.5.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 826a295a039178479a325be1ae60eded1f0b10f7dda749df59e2440de8f61d64
MD5 e2a9f95f6b508e43a4a1f14620c2ff3d
BLAKE2b-256 285530fafdcfca9ba616bc394240545e4cd52f4f66dea43ded81b7d2d5274fde

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 368eb2fc9482158b3a3386e8f01fa61f479c968e9a19ceab8f0188b86b312991
MD5 3da73b2588f248d3f4773b6cef7fdc17
BLAKE2b-256 fd1dcfe7b745ef7f4c3b7214581955b5a0869ba2ac551a58fc11036281ae167c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.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.5.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 8efc3f1563ed431882dd0dc0411b5f8ace1b1b89074981deaf6bd8af77dbe1bc
MD5 30c6abe85e94029f7256553154860160
BLAKE2b-256 c5509f9c0d7ccc1512d49e27a0e7c12c58ec71dfe91698fa4326f058c33e1f1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp313-cp313-ios_13_0_arm64_iphoneos.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.5.0-cp313-cp313-android_24_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-android_24_x86_64.whl
Algorithm Hash digest
SHA256 07f6f42b5a6325df35b458004fb5f9f29bf502d89287a33c7cdef3590e31de0f
MD5 9aa8d5d4abd3621c3a93d34db87a265e
BLAKE2b-256 d3aee3ec8f17313609f43f7b323012fdb1ee37b83432277ca4eceba83e00366c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp313-cp313-android_24_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.5.0-cp313-cp313-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp313-cp313-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 5c23fa4f6eccdd601949cb00f3988c01d64e671d8faba356397971077022e144
MD5 bc8992fe09f0a7600b7f7f35f2dcca10
BLAKE2b-256 1dbecc7b7b6fc41984902c0d31b06f5d9297e67705c1dae9352608e5540fad09

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp313-cp313-android_24_arm64_v8a.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.5.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b8ea208b304587d47931b36481342d20336e0d338ab052f8b4305926482598d6
MD5 5fb23a0041baaa5517cfef7130845f6a
BLAKE2b-256 c0ea4e6bf1465d60c3d8f488d5bde140d0cb91cd23ccab0dc2895cc6c6982047

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e54dd1a66fa4bce0ccaf0db9dde336e49b3eec646dc4c1c0991279369d373a14
MD5 cfb98a99e960f14859c28296ca8d227b
BLAKE2b-256 76d0c34dbd1df23bcbdc1b5d2f48256340d72fa747f1eb03924a9d2fa35ed85b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 deb99535e9bf0bea8e274c6413eb939a21be35a3f492678dba4d5b1f4d70f142
MD5 67cafb09c6c62ca0e03abe4184ec21e2
BLAKE2b-256 1ccc2c34fdfaacdf0e96e880ef562cbf80a9b5f8ea97e0dd9e57ba348a9c65cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b2e44e6d42d1a4ff78ccc219a93c5449105d10b16198d1aea581080df8073f9
MD5 540140588e2936ed4ecbb7eac854c192
BLAKE2b-256 a6b70d19bde844bff9165377c1da9ef3c4792a4c24bd49b5b7094d9e6f6ab58b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bf91921009025e96ce57a03ced6d14604fc3baf0530351638e9504a55da6fa3b
MD5 2f728e41182ea7a2460f725ee310b8ae
BLAKE2b-256 19f633980b7b802a048e546a6d9ad2ea783a6cf6b10a86aaccd10db462d8b913

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 96ae7ab5d8155fde927aa0864fbc8ba3cc4fde6d41ab0c7cea9d6012b4978603
MD5 63988137c7faeed1dfe599cce3542e4b
BLAKE2b-256 a5d7043ff7720067a3beee05523465ac9c1c846c68b7884930dd483f72ee5ab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9ce0f885239357379d92fd9a5fddbe20f0e30e0527c29ba69f8e99eeb1304a76
MD5 daa116c08e7c4880205a45975c299fbb
BLAKE2b-256 135fdf38fa972c4e945c3d8cee2bc4e610613af522fd359c7dc7a74c419f0278

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f56ce84b317ef2a59d7d3461891c7597c79247d2192bb8114c68a1a1debfcc0
MD5 a57cea1b8bad0b3b08cbe294c8032b22
BLAKE2b-256 4741d5188b9342d75b72c2b05d3ee373f01a691397e770f001ee05e3b37925f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b476cdb63df22da2b91837593380be3ddbe406f36c506c1c91d80e7196b66288
MD5 ae015eb04670b59903bafa8650d74214
BLAKE2b-256 4c4acadba3f2400b45aa1d62a4ae0298bf58a3b30b1158baf15c338c7ce5b601

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0cce46dd29d73e135e8087b96eb62a4aca6d69391b7f97808c6588ebed3178f3
MD5 4aabe440d1d46d2f5cff5a4e1be40eb0
BLAKE2b-256 b614ba11a99c2a22ab04c2d5383a700b378cb463a78ab15f36444cabc10cd671

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14f6904a3cf870abf044df3a8c4924ac6c8ef77e9896586fd37e73ae96cff2af
MD5 80fecc6eb3cd8faaa8e965e5e6455000
BLAKE2b-256 23355b85772eb82528ef22ba29487ad544a7049dfd27f35b1a5a55dbc0843048

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c387c6bf91b4774e359a48a179e2872b8e8bf741e4fde06ba8d1665eb9a4760a
MD5 b77779f011ad14c8951487dc9c477b63
BLAKE2b-256 b1ea36c90e59a96386174377e855479ec154221ef001e96637e0b23be92489c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0f76dc0a47f94cb9b69d86f01e477f4b0371ca70208b9ccea7e063c41eed9046
MD5 454aa67330cc417c9fe9003b1d96ac33
BLAKE2b-256 6a64f58c32a8d4ecf55b82ee61ee9aa6a664d4afcd36c72feb4c926fd6fe9af8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6753de11eef42f1c321b26d682957d92c7f7bbce6530f34bbe0f9291dd37cc6f
MD5 92f8def24d5cd01efa38d1ca64b760ef
BLAKE2b-256 cace66392661375148d9455c17bee25509a54e28c39969e34befa48ec8777936

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.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.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 608553f476fca509537e804c4a71f5eb166ce63b75141f89c2c686ce1aa36956
MD5 6ecf795e326391103d0b8851daae89d8
BLAKE2b-256 fc1b7502be709db899d5b4801509829188b3a5a10969411da9c846115a5f1b70

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.5.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 98820e1ceb25c6df7a80c4fd8efa59cb121f99bc7c4c1693ad94a2caff5b311d
MD5 fb4861f955e7861d28ebe391a20a9ee9
BLAKE2b-256 6d3c045ea64ea5a550870dd8ab60b2242870328d53f17d2be593b4f9f3121474

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2403b489c103e9a18c835863fc6dd54361355c8291d4cafdb37492b683440b9b
MD5 cc8127ffb621f5efa4d12133d0963bec
BLAKE2b-256 0a277208360ff1901607359869fcc45ca0989d597f3e30777ba30c7254170587

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8cb9b6892b53bd6d11fa4cde3dbee020b1f0b6656be1fbaa1ec0d4324a7839db
MD5 1f9ee89916240e79e696ff35262194b8
BLAKE2b-256 97846fc03e802578df41a2ab9b6a1f26657fb92e32285a603ad5852a4a4f68c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 830c04a49998b5ed58c8b642c65b7b26419397f52392a64121ba9fd0e95e7f9f
MD5 0c9fc9de71653b1cca335591d7421f64
BLAKE2b-256 c1fda76a2d7e639bfc6a9c869371e34f28231eaca7d7126ec19895aa38eedb51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7faa47b56070b3dd6f4898ed28528843ab130d53266cb9948d9b1f3bb1a5c5e8
MD5 a296ac6ffe1613eb5268bea149a47275
BLAKE2b-256 b2bda1b7d959a37847675adb2f5978f81703306dd78df4fefb82ee5a1cc5e37f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6e44bc2780516b3df986d6fe33103c7080cd9dcd5576fe3cb4b0f64309c8f22b
MD5 78dcf15d2229a711a6321ba3e937bb05
BLAKE2b-256 72b2c1b1c27f6f0ef35b21a8bdb592854bbf7f219629db3477f74c0b1380e0ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5f51a19dc52197a20218b05ec5336d0c6b3b09935f838724722032c8d45dc91a
MD5 bc2df7f4e913730bcc581daf621f5678
BLAKE2b-256 12ed0e34e40584f51eda38d4a5daf25fd8586366347efd4b2470dbf64710e778

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 30ae26a1adcd943690dcbbc47f28be762bae9e08ad7442b78c86b1c0dd5a626c
MD5 08dca9a6efef60a34c9abde021f65127
BLAKE2b-256 c288293444d48c8d86fe51552262117134a9fc666d68cbbbc9b8c1b2b35a29be

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32e6d56dd825205f81e5c45bcebb4df6a11fb2bbf4969a01ef156d6ced90c224
MD5 371efc510fbd0f0204d14d80436315db
BLAKE2b-256 13bf1ddacf7aa7da12097f229a6a4e71a70200937a621b3617f6dc819fb99a66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a573e1e428f93908e79e04b349717f400e720f2f82285f0aaaf3ee0ff7f4c79
MD5 7c5b59996192e5919c92ffae886a5af8
BLAKE2b-256 604d10ac7e07bbf7ea569effeb9524e32f345f7e643800b20d538fb4706eab4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c5e981a5ac8641381efe6f0029467500661616a530d27bc6eedfe45f840599f8
MD5 1993a7423bdc4fa74db0e0b6aaa2ea68
BLAKE2b-256 532d4a6945eff0c8f684e3f5b7b978644ab18ba9198da060dbaa1d9206bc6cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 815f143a91983ba3041bba066e492ae3c42de523fb1c699685a1abf3313b7d1b
MD5 9b2892cc9503fda9fae72ac71018f130
BLAKE2b-256 25fa690a11924c40c766d258d2b74d817cc5efe7bbcfceeedc5c0f35256d7524

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a565303d118ea3b94a4b6c076bf568069726be414e43b06d58f7070b076ce11d
MD5 6c159fad0cadde4c516da445b81f10a7
BLAKE2b-256 44bb4b8c8086c67636e52d6354ad17697f54a00b40041ca53dc765737e21709b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 420b19411959eec115063229536788e6b32d0a7fa907d6b940317919120d702d
MD5 b5d980486900cd040105784d57646524
BLAKE2b-256 43b71d790e0425e0f4c99e9b89a3956a94a6d2d0c6f01b2a5eca93d8f082d5ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9491f594859b68052edebd69e05fb045055a713b57a67974e6c1553b4e503c39
MD5 a8131382acc852a3da1664ab05b7f05f
BLAKE2b-256 17ad4901a66d6d3b17f1096725d7e50266132c16555aa6a70047fe1cf262b4b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.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.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1cdfed4d7a59333c8220c67dd3be4e7a6c887b67453a64394022dcc919570add
MD5 19932f1b814a9ce47e6c96043eadcc90
BLAKE2b-256 0fddfd3386d0fbd358d3b5c7a2fa5bf312afe6159b04fafeb67d39fa971d7448

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.5.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e46a37ea7fcf9ae01d71b2e5ece19f1565987f3e308394b829197cbefc061f92
MD5 5813e7244ee034504b723bd0868aa80b
BLAKE2b-256 504271e4e3bfe59202feef062c68487f54c6adf501cfbe087ecd93e3cd597fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 38a395079f229a631dece74e24c69c1f612536dd51f345a7d6a98abe2d3e047a
MD5 5be60103f2defa5ee2d6155b3441df65
BLAKE2b-256 e5e55b285d50d4fc82111c18ea4fff8b5e1916a257b98dcd5cd0abf1c165473b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a54587f93f2e289f8faf25b35c997d4cc75cf677485ac6f50c985715989f99c
MD5 d868250d2762d15f82682362bea088e0
BLAKE2b-256 67d6455982837da317ce47cafe35260f446f218f5843090b77a59ee69aa0ad94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9a1d9b13e5e394e13e3c316f0d910d100b17681ff59797f30da1dba032061296
MD5 81df6a967d5fd53973518854c95ccd86
BLAKE2b-256 be5e78dd366df9ae4810039c0f799ec47d325a5cb76e92bb707ca9039b7c2306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b8788f114845c01f2b520e0b91ea58d143276cfc0483aa943e815f7b9555c15
MD5 b046a5168e00e8a1b2bd2290e6e74db2
BLAKE2b-256 414a300ef2598da520744aca7c49370e48732cab1f04de5f784f0e4f0e9e1d11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3684ebbdffd51329ac44245d1d227d90b965797aa1a8abd026568a1f6ae88811
MD5 8cff98710e9cdfe6e9306f0c732a9e91
BLAKE2b-256 587301d5173097a5f0a13417e77db9ba3aea24de54421344c8e0c4973bf8cf21

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ffdd7ac514301d0a67f7c23b9f2b431ef909a3c3dd6c3766668d0a6f5900c94e
MD5 1de8ca614cccd6de73fc7bd39ffbcc8a
BLAKE2b-256 8b47420ddefc04f089e4497b3bcbadea37586477713300c13204fb4a7c736071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a7cb4cd266bd85613367fb85a30cfbf6fe6349919e87e18ca8dba584951bfb8a
MD5 e6d2ab87c2fdab2d654a4050892df615
BLAKE2b-256 83a9decd1c1cc01ccbfce66845096e3945397e4ede354f31cc5cb28fc6ca601b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3587d94b5c9f05c2dc4c3f3d47aba6375ff141a21adae3051d8d4d53e8a937c0
MD5 2f657e57b77ea512ca420fe8a36e0b47
BLAKE2b-256 4ecbdcf5aa14e24270613fafa2f02b3979820c244610410e5508696ca96bd0d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bfbe543d957213fc9a3db4979a8e171b7aa7504c1d737029defdb03a6095a38
MD5 633db6666adfb94f66808e24ba439d5c
BLAKE2b-256 ef85f4c391c807f67c6483d02c02d28683e2fe229403728369c0cd33f61e4292

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d74bcf1cdd8ac8267fb216473ce6b112efa07b163536288094541415084d131c
MD5 23f33a4bfd5faf638ae5d0c8a14903f1
BLAKE2b-256 f924e23bcc9d4bc897bd620bc39c6b6052574f5ef93b85b50b175dd427a7dc07

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 143792a43e06dc3b27fc891948406e251502dc19ff9216cd80182b79131be5c5
MD5 455ea0573db77512d13ed3715b04f132
BLAKE2b-256 0caaa080c4facaab4ece837558649eb6e2c760867d1c0ea52220cbbc4e89dcaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b787efadba00f5da6fe89513bfbe3852d52ca3a448fdec165765cb3b44a80248
MD5 4725b97cc5c99fe5ce2b4c8371f4bac6
BLAKE2b-256 a829b83b3469e596adff778bf3c8ca8f705822c1c3c0ada8477a0d00113bfa59

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4346a693c08b1d0cfc0e3325bfb0ecd4322fb1a6904d68cf416f8da5e981b234
MD5 d9183a0a02d1d40fc0bad9a8d4dbb9c7
BLAKE2b-256 47d08b9b07e41501bfcdfe380b826481033ca2eb5fa4b5507eb64dbc4cba9885

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.5.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aff38231e3171c578b2c449a01afa44e9ff40844597a32873da102394f63d28e
MD5 51c25bc3b1f8908e3f16e6fbae4be0cd
BLAKE2b-256 5d21d94021b005d2e660fd13634eecfe4ad378b0d0bbb45134809aed42b94a99

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.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.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7cdded069549b5eae3d5d9bb6c2e5bb4fe83f9b81863e2a193cd747bf197aebb
MD5 a51cbb9147278ac07dcf479e74a0f2f6
BLAKE2b-256 76e5a42c8884ec0321c56124a5b43c135efe75260dad4f70ea0ffba4dcac85ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.5.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d2478bd3b2ead3962a484fb802891be40d10049fb74f83e09cb4463fad023fea
MD5 e1f17c2b8997f1195e34e657118eefcb
BLAKE2b-256 ca8e1e9a03657c2f12960c67b05e0550059787d4c8fc3fae822672f4fe7f40c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d867cefea33acad8e33a3eb408cca7889a9cf999bd5433d962089d5a13b6e75f
MD5 79dd2e6f253d96ba75fc7bd58dc9098e
BLAKE2b-256 ff5fd28d624acfdfae02e2ad2a3c4388804d65c5ea12fdc0fad947890d27904b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9e0213f3f8a2674a6778be299aea1d6dc6dda015aab86f683bca6d78f81f27bb
MD5 8fe9b52a3724b9980ca82af03c0ad803
BLAKE2b-256 2a9eec08cc516094ee86e6ef74ccd4686b949254ce742072d717ceb6f18c1854

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 17db18db9a1374d5b9d9a3252f980b4243b0b4efd1df03fac78bb587f6ce98cd
MD5 c5a7f00ca1f047d7b1b1fdb24f523059
BLAKE2b-256 13688d2dbcf9d1cc04ff67b4101656fea6783a5e92738fb8d0d550174b7c3069

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74892fe9f33d204860e782e0a2030bb39f9f0af1e7a24f7d5a5b632df311f655
MD5 1da359cd7bc095d5cf3ae0f23f84f21d
BLAKE2b-256 870774fa03d1e73861eb2311b66e10b887a86471ab3e1cc39b31fd877bb740d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dc7f6aca0bdac5e6520c8b6769bda69315fe7cb57f69885f115bc8ca02d1d022
MD5 e1cb9edebf4870c93b43b24604734428
BLAKE2b-256 325e66b6b779e5f392ef09e5d9882d01d1f7f4153c7e8d90fce2325db20f8080

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 85f9e0e2724bbddf05de65e5fb03b73eb23e985b7df4259c1d19feb302eb8dc2
MD5 f12edf5bf31640f3bf026302efb5fe2f
BLAKE2b-256 ad4bde25f6a0e0b3c30c52b63b2a3f23e26ff72f76e8c12bb0cf62fa69ebb4c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d08952c0f14eb56d9dad72a2e17773b5f709c55b28635822d18c4adf38680833
MD5 3f20b6efeeec155ef6cfd79f663068bd
BLAKE2b-256 bb6da2fda439bb5d785ca241246b56bff3e254fbd363f03ce43e43feb8905a70

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69d647cf158eb6bc9c99503292abed1f2079a2de5859f06a403f8aee6417475d
MD5 c8d57684e1ca1659785cc1bbeb1f16fa
BLAKE2b-256 96d69c9709dea215c00f917bbc577c3f8b91ed47d320062a94eecbcb54f97ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2df26d4134948616be0ece05d0b24d621d3990f37147b5883c52052b613ef1f5
MD5 fafca370d0652ca3e9b1b961e3da2d76
BLAKE2b-256 af06492e5fa45e0cb62e3423727e6f034ce638c8a1e37ab792038c39dbcfdb5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c825661dfcf843119ab57cdcac0df7a48e168764c66917bc74f9a42ecb096da9
MD5 98f8750cf3f7bc0199d1f41ae501a47d
BLAKE2b-256 25094da07f5fa3a3dc133d2b1deb49d888e63e469d1c4d824b44614df00a3f74

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d22a083497d2f7d06a57172c5b60ee66cedcf304fde5226d4dfdc94f6180f5b1
MD5 a59cf0080e61aa8094383d9a0bb95852
BLAKE2b-256 09ee2397d48661191045fa0a32d532db3a328610eba89f2219c2584f1e0b57cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6da562a20a49673fe365b05750e98d03bb2c5f8b8d03562b014c1abb3df739f1
MD5 3f7ff1a665e3eabc25246b1081bad6f7
BLAKE2b-256 57e7de84c4e1a6e8e86512dded445b25d424d420f35c5175517e7f2057fe0e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ac68ebfa549cc623e0e9add2937526340c629ccf667b4da85b7ef5f99e70bbd9
MD5 1b0a5c00ac0347adb039caba7728e2c6
BLAKE2b-256 c1063aa19d80e65bf523402ffdde64a891b964f72ad35338016581e2b636c2f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.5.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 17a0fd0e23961c2c017372e37aabc7ca8fceb9e10ad898977dfb40ad3927baae
MD5 855c52c428f06af161c0e03629ee756d
BLAKE2b-256 a8115a7882ca19f0c1e09c16127bfb988a6b62ce41f9fd356cbef95e2d2e0495

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.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.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 301bfc4877c4f4f62b344235ecc58d06c901683801636eef819f88769c315ba2
MD5 5f5f977086514f6ed8e1a6c59717ce23
BLAKE2b-256 86e88bd71f3bbc05a2eb92b1a22ef01f867759d71e9d28ad17781fc0f71eaec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.5.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7ffc43fe52618fcd7abc6ee0b46aea527db10da73305fcc6aaf9710ac7a33ec7
MD5 e6218ce5de73b4a6770518a46d1b27ba
BLAKE2b-256 e96ddb7604cbd86e28b9519fcd68c67ebc335b344a27b50d08526044e16efc84

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-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.5.0-cp37-abi3-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 562d24ca7797c1af8852994950c2e623a907b201fc4b0ed29e92af173d3828ca
MD5 5cc462ef40038251d39a161dd6e95676
BLAKE2b-256 aba6b57708ac92aefc8e8389d51d5178129b81f03196da61ee2c23e687b8178a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-win_arm64.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.5.0-cp37-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 0c8953d9d1617794cfc40d81179571c9ba3805dd029623a15c93f1fb70e60a74
MD5 8ec403a476a07997db181684ae4a553c
BLAKE2b-256 106b6046773901f1944b9a89436351529811ee958afc7b774563be9d74a6f0c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-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.5.0-cp37-abi3-win32.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-win32.whl
Algorithm Hash digest
SHA256 8b3e9e29b8b07cc461b9ce7768db7693a93979d0dadf22046f6f3555ded2f516
MD5 e96ed6cc95183a09ed6dcb5a743cf073
BLAKE2b-256 e40fd044c4872c0938a84f87b5027a698c0e61bacfc5c3551a4e749ca9b7bc5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-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.5.0-cp37-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d90254c8f609338c53ec180fcd4c4f9c16502e238e3fc88ca7fd4c2f38d445b8
MD5 2ad5b8db30d3abc75e8d141951e4c662
BLAKE2b-256 779d10ecd3bcbe2666b3d4d4026c97b48f73990682815db516052a1e8f4a31c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-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.5.0-cp37-abi3-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d8a9316f4da85e937242642b537c6d55d7e9287dd38e5634732f8233932aff45
MD5 f8c853d3801e5b9cc7729b39f7edd4e0
BLAKE2b-256 5a02bd8030d13d92c058ca7b2b9615bbb3169569e144db64d65c149cd45abf5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-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.5.0-cp37-abi3-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fd68c825548a611158230e2f9222e210ceb2e3391995c0aa5865cbdf3ab4bd49
MD5 a67098166253f2fb15a8eeba78072d58
BLAKE2b-256 0a534574a14fa4c9de4a6c9f31725354bfa40b67f653e6d594ce1654f9a41b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_riscv64.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.5.0-cp37-abi3-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2080aa129a28267984cdc902898993d788c995c384e285d0d19199f56760d52e
MD5 80bd68bff451b0cda974a62958a133e5
BLAKE2b-256 016840613182366d00bd6dbd5f6c84a926cbd120960e038a8269e9ae7d782762

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-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.5.0-cp37-abi3-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7eb3eab5c646d3de7dcb14a7c9caebace5249c5767da39e1761cb1576e521a3
MD5 211b33c467130aaf61450bf56aa0892a
BLAKE2b-256 dcf94ba127ad610542fa3eabfa41c45bf12d357860a815b3566374ec0188e213

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_armv7l.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.5.0-cp37-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22a1889f1c9b752c63c36758a0c2145458e3cadb20fced7a0790002e9dd12b26
MD5 e705cc4d2495884ceb6239f5ba9038f5
BLAKE2b-256 12b2e2d1abcfbc05822f0030869efb4e9f8a3658e13b4821796d4b62da917327

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-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.5.0-cp37-abi3-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c54036a518748b6c02e666f6d46c3817561998fb904c3be25b56fb4fe3dc5706
MD5 3e34e7edff9fd1457ae69af2e610deb3
BLAKE2b-256 3208b4907cb9ec5b521d9d024ced13611240b86ef065c2eb15b3ad2334dc9940

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.5.0-cp37-abi3-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d672f329ae504ee240eb39b6effb3318aa8e7e8924c0ce8eee5760b3fad98539
MD5 bb647c0798e667a0739d338a43e886c6
BLAKE2b-256 d3e0ed2c8bdbac484d69614d6993143aeb6cb0f4dd1561c883402517b623c8ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.5.0-cp37-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1d366548d2ee28a8cfdcc4296363978cc644a728333be9824d2de4652e83df0a
MD5 40a6460e0d73a2e50f67bc5f88b85421
BLAKE2b-256 29dbf648eb30e14eba301aed61e11672156f137905c1bdbb530151abe8065943

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.5.0-cp37-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6abb1f356fb865baeb6ebc3fadd843e9a96fbf49b9adcca55037f3cceccb7438
MD5 66407daa3459441eaa3f966730fde3c8
BLAKE2b-256 e80c19608b631f4538f908098d4a2d56a8f79a665e27cc58e9d90479761a9227

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.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.5.0-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84b736e3b391601bc47b86da381c749c0f894e9191aaca9f31f30c2632206df3
MD5 70b9d7cc24c39ca9cb3a63c4f46ecc31
BLAKE2b-256 a9cb82b41a0ab7fb1a88065f1d78ad32696ad88ea3fe8e25b8189d08833938de

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.5.0-cp37-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a864bdcacd8bff58bb4845304e031f821a3ec64b2b7259f2d409cd49c9e59ca3
MD5 d695738290edb45c202f06f0ffc256b3
BLAKE2b-256 f0defc68978fe78ca97063c96d764e41ff92ca639948f319271e0ff450e577a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_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.5.0-cp37-abi3-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.5.0-cp37-abi3-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5a4ee37248dfac25107c758bda99d545ce73e60b44d2dd39e4a2bb9f2831e9f5
MD5 e36a7e5a853e2250bd0c952be5be5083
BLAKE2b-256 5bf37b523d807cb5e73562ef8acf21d39cdb9d704955327362c781bc3478a73d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.5.0-cp37-abi3-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.

Supported by

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