Skip to main content

The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.

Project description

Charset Detection, for Everyone 👋

The Real First Universal Charset Detector
Download Count Total

Featured Packages
Static Badge Static Badge

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

A library that helps you read text from an unknown charset encoding.
Motivated by chardet, I'm trying to resolve the issue by taking a new approach. All IANA character set names for which the Python core library provides codecs are supported. You can also register your own set of codecs, and yes, it would work as-is.

>>>>> 👉 Try Me Online Now, Then Adopt Me 👈 <<<<<

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

Feature Chardet Charset Normalizer cChardet
Fast
Universal[^1]
Reliable without distinguishable standards
Reliable with distinguishable standards
License Disputed[^2]
restrictive
MIT MPL-1.1
restrictive
Native Python
Detect spoken language N/A
UnicodeDecodeError Safety
Whl Size (min) 500 kB 150 kB ~200 kB
Supported Encoding 99 99 40
Can register custom encoding

Reading Normalized TextCat Reading Text

[^1]: They are clearly using specific code for a specific encoding even if covering most of used one. [^2]: Chardet 7.0+ was relicensed from LGPL-2.1 to MIT following an AI-assisted rewrite. This relicensing is disputed on two independent grounds: (a) the original author contests that the maintainer had the right to relicense, arguing the rewrite is a derivative work of the LGPL-licensed codebase since it was not a clean room implementation; (b) the copyright claim itself is questionable given the code was primarily generated by an LLM, and AI-generated output may not be copyrightable under most jurisdictions. Either issue alone could undermine the MIT license. Beyond licensing, the rewrite raises questions about responsible use of AI in open source: key architectural ideas pioneered by charset-normalizer - notably decode-first validity filtering (our foundational approach since v1) and encoding pairwise similarity with the same algorithm and threshold — surfaced in chardet 7 without acknowledgment. The project also imported test files from charset-normalizer to train and benchmark against it, then claimed superior accuracy on those very files. Charset-normalizer has always been MIT-licensed, encoding-agnostic by design, and built on a verifiable human-authored history.

⚡ Performance

This package offer better performances (99th, and 95th) against Chardet. Here are some numbers.

Package Accuracy Mean per file (ms) File per sec (est)
chardet 7.1 89 % 3 ms 333 file/sec
charset-normalizer 97 % 3 ms 333 file/sec
Package 99th percentile 95th percentile 50th percentile
chardet 7.1 32 ms 17 ms < 1 ms
charset-normalizer 16 ms 10 ms 1 ms

updated as of March 2026 using CPython 3.12, Charset-Normalizer 3.4.6, and Chardet 7.1.0

Chardet's performance on larger file (1MB+) are very poor. Expect huge difference on large payload. No longer the case since Chardet 7.0+

Stats are generated using 400+ files using default parameters. More details on used files, see GHA workflows. And yes, these results might change at any time. The dataset can be updated to include more files. The actual delays heavily depends on your CPU capabilities. The factors should remain the same. 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.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

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

Fixed

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

Removed

  • Support for Python 3.5 (PR #192)

Deprecated

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

2.0.12 (2022-02-12)

Fixed

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

2.0.11 (2022-01-30)

Added

  • Explicit support for Python 3.11 (PR #164)

Changed

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

2.0.10 (2022-01-04)

Fixed

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

Changed

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

2.0.9 (2021-12-03)

Changed

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

Fixed

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

2.0.8 (2021-11-24)

Changed

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

Fixed

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

Added

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

2.0.7 (2021-10-11)

Added

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

Changed

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

Removed

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

Fixed

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

2.0.6 (2021-09-18)

Fixed

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

Changed

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

2.0.5 (2021-09-14)

Changed

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

Removed

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

Fixed

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

2.0.4 (2021-07-30)

Fixed

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

Changed

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

2.0.3 (2021-07-16)

Changed

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

2.0.2 (2021-07-15)

Fixed

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

Changed

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

2.0.1 (2021-07-13)

Fixed

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

Changed

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

Added

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

2.0.0 (2021-07-02)

Changed

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

Removed

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

Deprecated

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

Fixed

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

1.4.1 (2021-05-28)

Fixed

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

1.4.0 (2021-05-21)

Removed

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

Fixed

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

Changed

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

Added

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

1.3.9 (2021-05-13)

Fixed

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

1.3.8 (2021-05-12)

Fixed

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

1.3.7 (2021-05-12)

Fixed

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

1.3.6 (2021-02-09)

Changed

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

1.3.5 (2021-02-08)

Fixed

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

Changed

  • Dependencies refactoring, constraints revised.

Added

  • Add python 3.9 and 3.10 to the supported interpreters

MIT License

Copyright (c) 2025 TAHRI Ahmed R.

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

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

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

charset_normalizer-3.4.7.tar.gz (144.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.4.7-py3-none-any.whl (62.0 kB view details)

Uploaded Python 3

charset_normalizer-3.4.7-cp314-cp314t-win_arm64.whl (153.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

charset_normalizer-3.4.7-cp314-cp314t-win_amd64.whl (174.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

charset_normalizer-3.4.7-cp314-cp314t-win32.whl (159.8 kB view details)

Uploaded CPython 3.14tWindows x86

charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl (225.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_s390x.whl (233.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_riscv64.whl (219.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_ppc64le.whl (236.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_armv7l.whl (209.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl (219.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (220.0 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_armv7l.whl (206.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (223.3 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (233.4 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (234.9 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.3 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314t-macosx_10_15_universal2.whl (330.1 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314-win_arm64.whl (148.4 kB view details)

Uploaded CPython 3.14Windows ARM64

charset_normalizer-3.4.7-cp314-cp314-win_amd64.whl (159.6 kB view details)

Uploaded CPython 3.14Windows x86-64

charset_normalizer-3.4.7-cp314-cp314-win32.whl (148.5 kB view details)

Uploaded CPython 3.14Windows x86

charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_x86_64.whl (217.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_s390x.whl (227.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_riscv64.whl (211.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_ppc64le.whl (230.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_armv7l.whl (201.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_aarch64.whl (211.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (211.6 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_armv7l.whl (200.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (215.9 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (224.7 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (228.7 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (208.0 kB view details)

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

charset_normalizer-3.4.7-cp314-cp314-macosx_10_15_universal2.whl (309.2 kB view details)

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

charset_normalizer-3.4.7-cp313-cp313-win_arm64.whl (147.9 kB view details)

Uploaded CPython 3.13Windows ARM64

charset_normalizer-3.4.7-cp313-cp313-win_amd64.whl (158.8 kB view details)

Uploaded CPython 3.13Windows x86-64

charset_normalizer-3.4.7-cp313-cp313-win32.whl (148.1 kB view details)

Uploaded CPython 3.13Windows x86

charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_x86_64.whl (217.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_s390x.whl (226.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl (211.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl (230.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl (203.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_aarch64.whl (210.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (211.7 kB view details)

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

charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_armv7l.whl (202.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (215.6 kB view details)

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

charset_normalizer-3.4.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (224.3 kB view details)

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

charset_normalizer-3.4.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (228.3 kB view details)

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

charset_normalizer-3.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (207.0 kB view details)

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

charset_normalizer-3.4.7-cp313-cp313-macosx_10_13_universal2.whl (309.6 kB view details)

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

charset_normalizer-3.4.7-cp312-cp312-win_arm64.whl (147.8 kB view details)

Uploaded CPython 3.12Windows ARM64

charset_normalizer-3.4.7-cp312-cp312-win_amd64.whl (159.3 kB view details)

Uploaded CPython 3.12Windows x86-64

charset_normalizer-3.4.7-cp312-cp312-win32.whl (148.5 kB view details)

Uploaded CPython 3.12Windows x86

charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_x86_64.whl (218.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_s390x.whl (227.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_riscv64.whl (212.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl (230.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_armv7l.whl (203.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_aarch64.whl (211.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (212.7 kB view details)

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

charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_armv7l.whl (202.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (216.6 kB view details)

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

charset_normalizer-3.4.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (225.2 kB view details)

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

charset_normalizer-3.4.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (229.0 kB view details)

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

charset_normalizer-3.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (208.1 kB view details)

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

charset_normalizer-3.4.7-cp312-cp312-macosx_10_13_universal2.whl (311.3 kB view details)

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

charset_normalizer-3.4.7-cp311-cp311-win_arm64.whl (147.8 kB view details)

Uploaded CPython 3.11Windows ARM64

charset_normalizer-3.4.7-cp311-cp311-win_amd64.whl (159.3 kB view details)

Uploaded CPython 3.11Windows x86-64

charset_normalizer-3.4.7-cp311-cp311-win32.whl (147.8 kB view details)

Uploaded CPython 3.11Windows x86

charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_x86_64.whl (216.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_s390x.whl (224.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_riscv64.whl (210.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl (229.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_armv7l.whl (200.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_aarch64.whl (209.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (210.2 kB view details)

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

charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_armv7l.whl (199.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (214.1 kB view details)

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

charset_normalizer-3.4.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (222.7 kB view details)

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

charset_normalizer-3.4.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (227.9 kB view details)

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

charset_normalizer-3.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.4 kB view details)

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

charset_normalizer-3.4.7-cp311-cp311-macosx_10_9_universal2.whl (309.7 kB view details)

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

charset_normalizer-3.4.7-cp310-cp310-win_arm64.whl (147.8 kB view details)

Uploaded CPython 3.10Windows ARM64

charset_normalizer-3.4.7-cp310-cp310-win_amd64.whl (159.2 kB view details)

Uploaded CPython 3.10Windows x86-64

charset_normalizer-3.4.7-cp310-cp310-win32.whl (148.3 kB view details)

Uploaded CPython 3.10Windows x86

charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_x86_64.whl (218.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_s390x.whl (227.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_riscv64.whl (214.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl (232.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_armv7l.whl (203.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_aarch64.whl (212.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (214.7 kB view details)

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

charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_armv7l.whl (202.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (216.9 kB view details)

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

charset_normalizer-3.4.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (225.9 kB view details)

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

charset_normalizer-3.4.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (231.2 kB view details)

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

charset_normalizer-3.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (209.3 kB view details)

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

charset_normalizer-3.4.7-cp310-cp310-macosx_10_9_universal2.whl (315.2 kB view details)

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

charset_normalizer-3.4.7-cp39-cp39-win_arm64.whl (143.7 kB view details)

Uploaded CPython 3.9Windows ARM64

charset_normalizer-3.4.7-cp39-cp39-win_amd64.whl (154.7 kB view details)

Uploaded CPython 3.9Windows x86-64

charset_normalizer-3.4.7-cp39-cp39-win32.whl (144.6 kB view details)

Uploaded CPython 3.9Windows x86

charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_x86_64.whl (210.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_s390x.whl (217.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_riscv64.whl (206.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_ppc64le.whl (222.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_armv7l.whl (195.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_aarch64.whl (204.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.7-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (206.1 kB view details)

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

charset_normalizer-3.4.7-cp39-cp39-manylinux_2_31_armv7l.whl (195.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.4.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (208.4 kB view details)

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

charset_normalizer-3.4.7-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (216.3 kB view details)

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

charset_normalizer-3.4.7-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (221.0 kB view details)

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

charset_normalizer-3.4.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (200.6 kB view details)

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

charset_normalizer-3.4.7-cp39-cp39-macosx_10_9_universal2.whl (299.1 kB view details)

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

charset_normalizer-3.4.7-cp38-cp38-win_amd64.whl (151.9 kB view details)

Uploaded CPython 3.8Windows x86-64

charset_normalizer-3.4.7-cp38-cp38-win32.whl (142.1 kB view details)

Uploaded CPython 3.8Windows x86

charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_x86_64.whl (201.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_s390x.whl (207.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_riscv64.whl (197.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ riscv64

charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_ppc64le.whl (211.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_armv7l.whl (188.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_aarch64.whl (195.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

charset_normalizer-3.4.7-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (197.4 kB view details)

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

charset_normalizer-3.4.7-cp38-cp38-manylinux_2_31_armv7l.whl (188.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.31+ ARMv7l

charset_normalizer-3.4.7-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (199.2 kB view details)

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

charset_normalizer-3.4.7-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (205.8 kB view details)

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

charset_normalizer-3.4.7-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (209.6 kB view details)

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

charset_normalizer-3.4.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (192.5 kB view details)

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

charset_normalizer-3.4.7-cp38-cp38-macosx_10_9_universal2.whl (283.1 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for charset_normalizer-3.4.7.tar.gz
Algorithm Hash digest
SHA256 ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5
MD5 68805886064d248d2e5205fd11112d85
BLAKE2b-256 e7a167fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-py3-none-any.whl
Algorithm Hash digest
SHA256 3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d
MD5 f4aa1470ed3eeb815ebb83be1ead84c0
BLAKE2b-256 db8f61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c35abb8bfff0185efac5878da64c45dafd2b37fb0383add1be155a763c1f083d
MD5 f3f66b762b7cdd0b5c1a566243806242
BLAKE2b-256 de32d92444ad05c7a6e41fb2036749777c163baf7a0301a040cb672d6b2b1ae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 03853ed82eeebbce3c2abfdbc98c96dc205f32a79627688ac9a27370ea61a49c
MD5 9a4a1658813b42ee7d163626f9f207b1
BLAKE2b-256 7a1d29d32e0fb40864b1f878c7f5a0b343ae676c6e2b271a2d55cc3a152391da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c03a41a8784091e67a39648f70c5f97b5b6a37f216896d44d2cdcb82615339a0
MD5 9906a22b6862fd46baa5f5fc5d2bd01f
BLAKE2b-256 c5a70e0ab3e0b5bc1219bd80a6a0d4d72ca74d9250cb2382b7c699c147e06017

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce3412fbe1e31eb81ea42f4169ed94861c56e643189e1e75f0041f3fe7020abe
MD5 a274bc90ceae7f8dcbeb21a58d5011b3
BLAKE2b-256 7622ef7bd0fe480a0ae9b656189ec00744b60933f68b4f42a7bb06589f6f576a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8778f0c7a52e56f75d12dae53ae320fae900a8b9b4164b981b9c5ce059cd1fcb
MD5 c0c299e2e0f3058975d42a677644cc1c
BLAKE2b-256 2c6f6e897c6984cc4d41af319b077f2f600fc8214eb2fe2d6bcb79141b882400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 752a45dc4a6934060b3b0dab47e04edc3326575f82be64bc4fc293914566503e
MD5 91b1d1da902f796a1e4aa9b58561eee1
BLAKE2b-256 9623bce28734eb3ed2c91dcf93abeb8a5cf393a7b2749725030bb630e554fdd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0c96c3b819b5c3e9e165495db84d41914d6894d55181d2d108cc1a69bfc9cce0
MD5 99323a4a7206e79828b1f32ae20b4a9e
BLAKE2b-256 c24e0f3f5d47b86bdb79256e7290b26ac847a2832d9a4033f7eb2cd4bcf4bb5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf1493cd8607bec4d8a7b9b004e699fcf8f9103a9284cc94962cb73d20f9d4a3
MD5 b135030024c0c67bc84f0054e1b61dc1
BLAKE2b-256 029ab759b503d507f375b2b5c153e4d2ee0a75aa215b7f2489cf314f4541f2c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d828b6667a32a728a1ad1d93957cdf37489c57b97ae6c4de2860fa749b8fc1e
MD5 8c8234fd51f8df16de8fa5f05231b17f
BLAKE2b-256 7e808a7b8104a3e203074dc9aa2c613d4b726c0e136bad1cc734594b02867972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3c9a494bc5ec77d43cea229c4f6db1e4d8fe7e1bbffa8b6f0f0032430ff8ab44
MD5 a484ec1be9dd507f3083daa2db848986
BLAKE2b-256 69d5a527c0cd8d64d2eab7459784fb4169a0ac76e5a6fc5237337982fd61347e

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp314-cp314t-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a180c5e59792af262bf263b21a3c49353f25945d8d9f70628e73de370d55e1e1
MD5 c042f4b23615741a0022a789ef580e85
BLAKE2b-256 2b9ff2ff16fb050946169e3e1f82134d107e5d4ae72647ec8a1b1446c148480f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-cp314-cp314t-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.4.7-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.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c114670c45346afedc0d947faf3c7f701051d2518b943679c8ff88befe14f8e
MD5 d49344c858581b6faa95b5c853be6868
BLAKE2b-256 bec106c6c49d5a5450f76899992f1ee40b41d076aee9279b49cf9974d2f313d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a89c23ef8d2c6b27fd200a42aa4ac72786e7c60d40efdc76e6011260b6e949c4
MD5 7110428cadf3a6e775210861302b6cef
BLAKE2b-256 9b40e5ff04233e70da2681fa43969ad6f66ca5611d7e669be0246c4c7aaf6dc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 733784b6d6def852c814bce5f318d25da2ee65dd4839a0718641c696e09a2960
MD5 ab45603c3935c97e152b8b697fe142d8
BLAKE2b-256 e5e81d63bf8ef2d388e95c64b2098f45f84758f6d102a087552da1485912637b

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbccdc05410c9ee21bbf16a35f4c1d16123dcdeb8a1d38f33654fa21d0234f79
MD5 4c041fc76a3f58c13b8afb970b5c490f
BLAKE2b-256 8dda96975ddb11f8e977f706f45cddd8540fd8242f71ecdb5d18a80723dcf62c

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 effc3f449787117233702311a1b7d8f59cba9ced946ba727bdc329ec69028e24
MD5 26fd7655cb83c592223a1710ad8594d1
BLAKE2b-256 94097e8a7f73d24dba1f0035fbbf014d2c36828fc1bf9c88f84093e57d315935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 67f6279d125ca0046a7fd386d01b311c6363844deac3e5b069b514ba3e63c246
MD5 73f2a0829de7b85b275a5db0694c7456
BLAKE2b-256 c6a3c2369911cd72f02386e4e340770f6e158c7980267da16af8f668217abaa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 92a0a01ead5e668468e952e4238cccd7c537364eb7d851ab144ab6627dbbe12f
MD5 ac05f9e065361813c4183b989aa51eb1
BLAKE2b-256 487772dcb0921b2ce86420b2d79d454c7022bf5be40202a2a07906b9f2a35c97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5b77459df20e08151cd6f8b9ef8ef1f961ef73d85c21a555c7eed5b79410ec10
MD5 f8e671bd80971785a54e0cb97746e93b
BLAKE2b-256 5c055ee478aa53f4bb7996482153d4bfe1b89e0f087f0ab6b294fcf92d595873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7579e913a5339fb8fa133f6bbcfd8e6749696206cf05acdbdca71a1b436d8e72
MD5 584856c5a0b3a4c93a1ff4b010a1906a
BLAKE2b-256 304599d18aa925bd1740098ccd3060e238e21115fffbfdcb8f3ece837d0ace6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d6038d37043bced98a66e68d3aa2b6a35505dc01328cd65217cefe82f25def44
MD5 9c1f22beff9398f492a962936ca975fa
BLAKE2b-256 8cd74353be581b373033fb9198bf1da3cf8f09c1082561e8e922aa7b39bf9fe8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e74327fb75de8986940def6e8dee4f127cc9752bee7355bb323cc5b2659b6d46
MD5 dc059f06ae3818452773fb662d489f53
BLAKE2b-256 b66e52c84015394a6a0bdcd435210a7e944c5f94ea1055f5cc5d56c5fe368e7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2d6eb928e13016cea4f1f21d1e10c1cebd5a421bc57ddf5b1142ae3f86824fab
MD5 215f0e667bb1248df3ef52faf83e10ca
BLAKE2b-256 6a29f33daa50b06525a237451cdb6c69da366c381a3dadcd833fa5676bc468b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5fe03b42827c13cdccd08e6c0247b6a6d4b5e3cdc53fd1749f5896adcdc2356
MD5 0477d6cf3ecb53ebfea74d30e45409e5
BLAKE2b-256 8ffed17c32dc72e17e155e06883efa84514ca375f8a528ba2546bee73fc4df81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8ac484bf18ce6975760921bb6148041faa8fef0547200386ea0b52b5d27bf7b
MD5 f6bddb89b7394bd97b656c9516678cb5
BLAKE2b-256 448658e6f13ce26cc3b8f4a36b94a0f22ae2f00a72534520f4ae6857c4b81f89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3534e7dcbdcf757da6b85a0bbf5b6868786d5982dd959b065e65481644817a18
MD5 aa18c97e7139fe00d98cc275721c1a9e
BLAKE2b-256 0ccda32a84217ced5039f53b29f460962abb2d4420def55afabe45b1c3c7483d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp314-cp314-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c45e9440fb78f8ddabcf714b68f936737a121355bf59f3907f4e17721b9d1aae
MD5 8c641489802bcadbd82b847379e42d0e
BLAKE2b-256 2cc2356065d5a8b78ed04499cae5f339f091946a6a74f91e03476c33f0ab7100

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-cp314-cp314-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.4.7-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.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd6c2a1c7573c64738d716488d2cdd3c00e340e4835707d8fdb8dc1a66ef164e
MD5 a5f7a5b6187ac91ddd78b866953e4c04
BLAKE2b-256 475c032c2d5a07fe4d4855fea851209cca2b6f03ebeb6d4e3afdb3358386a684

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 715479b9a2802ecac752a3b0efa2b0b60285cf962ee38414211abdfccc233b41
MD5 027ac8c0ebf47c13c088fbe8696fb1ea
BLAKE2b-256 a8292b1d2cb00bf085f59d29eb773ce58ec2d325430f8c216804a0a5cd83cbca

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 54523e136b8948060c0fa0bc7b1b50c32c186f2fceee897a495406bb6e311d2b
MD5 d7a16a7684961ea13bd661616a59e450
BLAKE2b-256 871cab2ce611b984d2fd5d86a5a8a19c1ae26acac6bad967da4967562c75114d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c2aed2e5e41f24ea8ef1590b8e848a79b56f3a5564a65ceec43c9d692dc7d8a
MD5 67ca7e05553f60416f4c3cfa2956efbf
BLAKE2b-256 9985c091fdee33f20de70d6c8b522743b6f831a2f1cd3ff86de4c6a827c48a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c36c333c39be2dbca264d7803333c896ab8fa7d4d6f0ab7edb7dfd7aea6e98c0
MD5 333a8526d9eb0e766817c5f2827ac8f8
BLAKE2b-256 97c8c67cb8c70e19ef1960b97b22ed2a1567711de46c4ddf19799923adc836c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b
MD5 db81d58873b96e82f3f9239eb3b8a817
BLAKE2b-256 688646bd42279d323deb8687c4a5a811fd548cb7d1de10cf6535d099877a9a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110
MD5 098f878c70a0634f8e382529c4029a7e
BLAKE2b-256 5d781b74c5bbb3f99b77a1715c91b3e0b5bdb6fe302d95ace4f5b1bec37b0167

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e
MD5 d57acac59626e980165a93962011af5c
BLAKE2b-256 7355c469897448a06e49f8fa03f6caae97074fde823f432a98f979cc42b90e69

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a
MD5 c07fb1392b86598299b695726e1a4441
BLAKE2b-256 6a9f130394f9bbe06f4f63e22641d32fc9b202b7e251c9aef4db044324dac493

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48
MD5 faea59a0943100374de79fddf7181e04
BLAKE2b-256 800f088cbb3020d44428964a6c97fe1edfb1b9550396bf6d278330281e8b709c

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6
MD5 3268d0042971c0cd41b88dfcebbb3c8b
BLAKE2b-256 b99f1e1941bc3f0e01df116e68dc37a55c4d249df5e6fa77f008841aef68264f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832
MD5 aba2c864bf3d8be8f53f737a82768383
BLAKE2b-256 e74e23efd79b65d314fa320ec6017b4b5834d5c12a58ba4610aa353af2e2f577

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5
MD5 7f066127cd3eac0c6e87fc377460f922
BLAKE2b-256 8cbfb3ab5bcb478e4193d517644b0fb2bf5497fbceeaa7a1bc0f4d5b50953861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8
MD5 0a620faa114e3e2ef12203301511ae4b
BLAKE2b-256 6fa5a581c13798546a7fd557c82614a5c65a13df2157e9ad6373166d2a3e645d

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859
MD5 570146b0e24c3be02a8230016beb6fe6
BLAKE2b-256 d897bfb18b3db2aed3b90cf54dc292ad79fdd5ad65c4eae454099475cbeadd0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp313-cp313-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215
MD5 42e0a05437a062e3ac827f80044807cc
BLAKE2b-256 e37cfc890655786e423f02556e0216d4b8c6bcb6bdfa890160dc66bf52dee468

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-cp313-cp313-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.4.7-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.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd
MD5 988be00d4debf2fc44c2ba1fd6c93742
BLAKE2b-256 fa07330e3a0dda4c404d6da83b327270906e9654a24f6c546dc886a0eb0ffb23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18
MD5 43226c23054d49cee65aaa1cb1c49580
BLAKE2b-256 85fb32d1f5033484494619f701e719429c69b766bfc4dbc61aa9e9c8c166528b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66
MD5 a0cf6220d94a7afe9e81845daa4f58ec
BLAKE2b-256 c4bbec73c0257c9e11b268f018f068f5d00aa0ef8c8b09f7753ebd5f2880e248

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c
MD5 b713fb8cd5c44ead1d349affc659546b
BLAKE2b-256 2e4eb7f84e617b4854ade48a1b7915c8ccfadeba444d2a18c291f696e37f0d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063
MD5 890b04138c1172020e9f4e7f67a29771
BLAKE2b-256 c13b66777e39d3ae1ddc77ee606be4ec6d8cbd4c801f65e5a1b6f2b11b8346dd

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 56be790f86bfb2c98fb742ce566dfb4816e5a83384616ab59c49e0604d49c51d
MD5 033c7891a51ed1559ff0cd7d919f8fe5
BLAKE2b-256 9e5d481bcc2a7c88ea6b0878c299547843b2521ccbc40980cb406267088bc701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5ed6ab538499c8644b8a3e18debabcd7ce684f3fa91cf867521a7a0279cab2d6
MD5 035d1e45c1e06c0997d8a361a6ece888
BLAKE2b-256 35d90e7dffa06c5ab081f75b1b786f0aefc88365825dfcd0ac544bdb7b2b6853

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2257141f39fe65a3fdf38aeccae4b953e5f3b3324f4ff0daf9f15b8518666a2c
MD5 91e60eb07ef9cc9297b60bb9ae86a7df
BLAKE2b-256 86eb890922a8b03a568ca2f336c36585a4713c55d4d67bf0f0c78924be6315ca

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb6d88045545b26da47aa879dd4a89a71d1dce0f0e549b1abcb31dfe4a8eac49
MD5 6379ea3729e6c1cb048362bfc7fd7769
BLAKE2b-256 8a2da572df5c9204ab7688ec1edc895a73ebded3b023bb07364710b05dd1c9be

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fea24543955a6a729c45a73fe90e08c743f0b3334bbf3201e6c4bc1b0c7fa464
MD5 3a6646c57929d41fa5f74fe37d7438cc
BLAKE2b-256 fd35f7dba3994312d7ba508e041eaac39a36b120f32d4c8662b8814dab876431

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 aed52fea0513bac0ccde438c188c8a471c4e0f457c2dd20cdbf6ea7a450046c7
MD5 f23eb48ea35ed82b8c199b9116845f68
BLAKE2b-256 597a071feed8124111a32b316b33ae4de83d36923039ef8cf48120266844285b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4dc1e73c36828f982bfe79fadf5919923f8a6f4df2860804db9a98c48824ce8d
MD5 55df0f937142dd8566974bf8453a1484
BLAKE2b-256 c14ca5fb52d528a8ca41f7598cb619409ece30a169fbdf9cdce592e53b46c3a6

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f7eb884681e3938906ed0434f20c63046eacd0111c4ba96f27b76084cd679f5
MD5 563a85e95ec69e12a9a7cf0e7319f076
BLAKE2b-256 d5ff531a1cad5ca855d1c1a8b69cb71abfd6d85c0291580146fda7c82857caa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 708838739abf24b2ceb208d0e22403dd018faeef86ddac04319a62ae884c4f15
MD5 6f586df1da79e7fc7ca5bdcd4f979644
BLAKE2b-256 38dd5a9ab159fe45c6e72079398f277b7d2b523e7f716acc489726115a910097

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 298930cec56029e05497a76988377cbd7457ba864beeea92ad7e844fe74cd1f1
MD5 d60412130a62b98a21dc05be1ca6e5ad
BLAKE2b-256 6fc07b1f943f7e87cc3db9626ba17807d042c38645f0a1d4415c7a14afb5591f

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp312-cp312-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 203104ed3e428044fd943bc4bf45fa73c0730391f9621e37fe39ecf477b128cb
MD5 cf7aedeb21fc6defb05126ef363cc0d6
BLAKE2b-256 b1f16d2b0b261b6c4ceef0fcb0d17a01cc5bc53586c2d4796fa04b5c540bc13d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-cp312-cp312-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.4.7-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.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5649fd1c7bade02f320a462fdefd0b4bd3ce036065836d4f42e0de958038e116
MD5 51c2fe70fdd26728dea32a399a145e53
BLAKE2b-256 4bf8d0118a2f5f23b02cd166fa385c60f9b0d4f9194f574e2b31cef350ad7223

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 edac0f1ab77644605be2cbba52e6b7f630731fc42b34cb0f634be1a6eface56a
MD5 466f14755c43c7faeeb7acb977e66978
BLAKE2b-256 dc67675a46eb016118a2fbde5a277a5d15f4f69d5f3f5f338e5ee2f8948fcf43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e1421b502d83040e6d7fb2fb18dff63957f720da3d77b2fbd3187ceb63755d7b
MD5 15ca58d9597fa1259b9485f1e662c29e
BLAKE2b-256 42f03dd1045c47f4a4604df85ec18ad093912ae1344ac706993aff91d38773a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6178f72c5508bfc5fd446a5905e698c6212932f25bcdd4b47a757a50605a90e2
MD5 f1b21201e104996c735375df5c64360d
BLAKE2b-256 f8e30fadc706008ac9d7b9b5be6dc767c05f9d3e5df51744ce4cc9605de7b9f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 eca9705049ad3c7345d574e3510665cb2cf844c2f2dcfe675332677f081cbd46
MD5 489b5e46573d451012c41f9af775f05a
BLAKE2b-256 0ceb4fc8d0a7110eb5fc9cc161723a34a8a6c200ce3b4fbf681bc86feee22308

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d4a48e5b3c2a489fae013b7589308a40146ee081f6f509e047e0e096084ceca1
MD5 50fe5d561f38000f4428edc21638e751
BLAKE2b-256 ca836413f36c5a34afead88ce6f66684d943d91f233d76dd083798f9602b75ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e385e4267ab76874ae30db04c627faaaf0b509e1ccc11a95b3fc3e83f855c00
MD5 de96f0eb2116f87dc81bbb8d5a6c5e0e
BLAKE2b-256 20d95f67790f06b735d7c7637171bbfd89882ad67201891b7275e51116ed8207

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 adb2597b428735679446b46c8badf467b4ca5f5056aae4d51a19f9570301b1ad
MD5 56b3fd9e15fab1c3e7b1b8121aca8f12
BLAKE2b-256 066d3be70e827977f20db77c12a97e6a9f973631a45b8d186c084527e53e77a4

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae196f021b5e7c78e918242d217db021ed2a6ace2bc6ae94c0fc596221c7f58d
MD5 7fe1ec5f9814c03f20c8e33086bb70c3
BLAKE2b-256 17ab63133691f56baae417493cba6b7c641571a2130eb7bceba6773367ab9ec5

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d635aab80466bc95771bb78d5370e74d36d1fe31467b6b29b8b57b2a3cd7d22c
MD5 54cd541a6c822eff0d789f2ab130f8e6
BLAKE2b-256 9abc015b2387f913749f82afd4fcba07846d05b6d784dd16123cb66860e0237d

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1a87ca9d5df6fe460483d9a5bbf2b18f620cbed41b432e2bddb686228282d10b
MD5 08fc7b6a0ba373c59cedb55229c0da05
BLAKE2b-256 54bb8fb0a946296ea96a488928bdce8ef99023998c48e4713af533e9bb98ef07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1c2a768fdd44ee4a9339a9b0b130049139b8ce3c01d2ce09f67f5a68048d477c
MD5 3fd24aa372487175caae7f90842aa059
BLAKE2b-256 7d1dee6f3be3464247578d1ed5c46de545ccc3d3ff933695395c402c21fa6b77

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38c0109396c4cfc574d502df99742a45c72c08eff0a36158b6f04000043dbf38
MD5 2848fd43dd5979f7a58e143306eb8717
BLAKE2b-256 d259893d8f99cc4c837dda1fe2f1139079703deb9f321aabcb032355de13b6c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e060d01aec0a910bdccb8be71faf34e7799ce36950f8294c8bf612cba65a2c9e
MD5 44ae0e2883e9cda53111d0e95f25d0f1
BLAKE2b-256 62519d56feb5f2e7074c46f93e0ebdbe61f0848ee246e2f0d89f8e20b89ebb8f

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 08e721811161356f97b4059a9ba7bafb23ea5ee2255402c42881c214e173c6b4
MD5 b4db5763df6ff9fd80c0e42dfa76551d
BLAKE2b-256 4c3d069e7184e2aa3b3cddc700e3dd267413dc259854adc3380421c805c6a17d

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp311-cp311-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 65bcd23054beab4d166035cabbc868a09c1a49d1efe458fe8e4361215df40265
MD5 2683339a95486d17297751f1c282c690
BLAKE2b-256 dc9242bd3cefcf7687253fb86694b45f37b733c97f59af3724f356fa92b8c344

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-cp311-cp311-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.4.7-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.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fe249cb4651fd12605b7288b24751d8bfd46d35f12a20b1ba33dea122e690df
MD5 b29a9ec4f8b96c660216b9e66ba42ee5
BLAKE2b-256 a1faf74eb381a7d94ded44739e9d94de18dc5edc9c17fb8c11f0a6890696c0a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 532bc9bf33a68613fd7d65e4b1c71a6a38d7d42604ecf239c77392e9b4e8998c
MD5 c5bb1ac26d3132e0adf08290fce8f20a
BLAKE2b-256 fb7377486c4cd58f1267bf17db420e930c9afa1b3be3fe8c8b8ebbebc9624359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 30b8d1d8c52a48c2c5690e152c169b673487a2a58de1ec7393196753063fcd5e
MD5 e18619580653dfe71d7289a444b9ae46
BLAKE2b-256 b202e8146dc6591a37a00e5144c63f29fb7c97a734ea8a111190783c0e60ab63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 202389074300232baeb53ae2569a60901f7efadd4245cf3a3bf0617d60b439d7
MD5 215338b745d42bf1ba80afe89eee61d3
BLAKE2b-256 5a5358c29116c340e5456724ecd2fff4196d236b98f3da97b404bc5e51ac3493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7641bb8895e77f921102f72833904dcd9901df5d6d72a2ab8f31d04b7e51e4e7
MD5 1032450c39b61af171d4f4028b5e28c7
BLAKE2b-256 c2d7b5b7020a0565c2e9fa8c09f4b5fa6232feb326b8c20081ccded47ea368fd

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 66671f93accb62ed07da56613636f3641f1a12c13046ce91ffc923721f23c008
MD5 bceaaff58c7321fd90d129fee89cbc3d
BLAKE2b-256 bec1feb40dca40dbb21e0a908801782d9288c64fc8d8e562c2098e9994c8c21b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6696b7688f54f5af4462118f0bfa7c1621eeb87154f77fa04b9295ce7a8f2943
MD5 8ba032e78d53ec42f85036da7bbc0db5
BLAKE2b-256 351b3b8c8c77184af465ee9ad88b5aea46ea6b2e1f7b9dc9502891e37af21e30

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6785f414ae0f3c733c437e0f3929197934f526d19dfaa75e18fdb4f94c6fb374
MD5 f5dafa1bc71a70e8c8cf18323f8855f3
BLAKE2b-256 ad802e8b7f8915ed5c9ef13aa828d82738e33888c485b65ebf744d615040c7ea

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94e1885b270625a9a828c9793b4d52a64445299baa1fea5a173bf1d3dd9a1a5a
MD5 3f321b2b268ae6cc16c02f63d3fb7a77
BLAKE2b-256 1d983a45bf8247889cf28262ebd3d0872edff11565b2a1e3064ccb132db3fbb0

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6ed74185b2db44f41ef35fd1617c5888e59792da9bbc9190d6c7300617182616
MD5 35a8df4a1d285429a0b99e49c4e30410
BLAKE2b-256 473a7d4cd7ed54be99973a0dc176032cba5cb1f258082c31fa6df35cff46acfc

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4e5163c14bffd570ef2affbfdd77bba66383890797df43dc8b4cc7d6f500bf53
MD5 7d3a7ab0fba45afc80d7ba76f03c3e34
BLAKE2b-256 58d5abcf2d83bf8e0a1286df55cd0dc1d49af0da4282aa77e986df343e7de124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 750e02e074872a3fad7f233b47734166440af3cdea0add3e95163110816d6752
MD5 c915c899429e6197040c4bc993e637d4
BLAKE2b-256 922e7a951d6a08aefb7eb8e1b54cdfb580b1365afdd9dd484dc4bee9e5d8f258

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc17a677b21b3502a21f66a8cc64f5bfad4df8a0b8434d661666f8ce90ac3af1
MD5 2bc6cac05c2386b383a15ca6c9f8f015
BLAKE2b-256 66cd6e9889c648e72c0ab2e5967528bb83508f354d706637bc7097190c874e13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b14b2d9dac08e28bb8046a1a0434b1750eb221c8f5b87a68f4fa11a6f97b5e34
MD5 b21ba861acd9d18f0a57f2087fb4671c
BLAKE2b-256 71948c61d8da9f062fdf457c80acfa25060ec22bf1d34bbeaca4350f13bcfd07

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d560742f3c0d62afaccf9f41fe485ed69bd7661a241f86a3ef0f0fb8b1a397af
MD5 38064dbd710c57474f29ecbb1b39dc09
BLAKE2b-256 82e57e9440768a06dfb3075936490cb82dbf0ee20a133bf0dd8551fa096914ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp310-cp310-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 12d8baf840cc7889b37c7c770f478adea7adce3dcb3944d02ec87508e2dcf153
MD5 16cafb464f84d8f1a06e3f88c7b2de5b
BLAKE2b-256 e2abb18f0ab31cdd7b3ddb8bb76c4a414aeb8160c9810fdf1bc62f269a539d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-cp310-cp310-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.4.7-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.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf29836da5119f3c8a8a70667b0ef5fdca3bb12f80fd06487cfa575b3909b393
MD5 04363d283c8164b068656b3279d138ac
BLAKE2b-256 20e7bed0024a0f4ab0c8a9c64d4445f39b30c99bd1acd228291959e3de664247

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 007d05ec7321d12a40227aae9e2bc6dca73f3cb21058999a1df9e193555a9dcc
MD5 cd2ba29d40407113343e1463533146c5
BLAKE2b-256 20f77b991776844dfa058017e600e6e55ff01984a063290ca5622c0b63162f68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 511ef87c8aec0783e08ac18565a16d435372bc1ac25a91e6ac7f5ef2b0bff790
MD5 bffa477936b2949df54d3db638068ff7
BLAKE2b-256 c2b401fa81c5ca6141024d89a8fc15968002b71da7f825dd14113207113fabbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e17b8d5d6a8c47c85e68ca8379def1303fd360c3e22093a807cd34a71cd082b8
MD5 6cf16c56489d5335b293eeb3e9f12175
BLAKE2b-256 2447b192933e94b546f1b1fe4df9cc1f84fcdbf2359f8d1081d46dd029b50207

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cdd68a1fb318e290a2077696b7eb7a21a49163c455979c639bf5a5dcdc46617d
MD5 9c246b8a3f920bc9896ca0415ade5539
BLAKE2b-256 26080f303cb0b529e456bb116f2d50565a482694fbb94340bf56d44677e7ed03

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 bb8cc7534f51d9a017b93e3e85b260924f909601c3df002bcdb58ddb4dc41a5c
MD5 25f80fb5b45ca6f121b7ef7f55f47a3f
BLAKE2b-256 cc4fe1fb138201ad9a32499dd9a98aa4a5a5441fbf7f56b52b619a54b7ee8777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 12a6fff75f6bc66711b73a2f0addfc4c8c15a20e805146a02d147a318962c444
MD5 7c9471990d6e326c89c49845bce99f12
BLAKE2b-256 21e792901117e2ddc8facfe8235a3ecd4eb482185b2ad5d5b6606b37c1afea06

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8751d2787c9131302398b11e6c8068053dcb55d5a8964e114b6e196cf16cb366
MD5 23870b74913c3c08f4eaa156229d7ffe
BLAKE2b-256 1a62d9340c7a79c393e57807d7fb6c57e82060687891f81b74d3201958b919c1

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0f081d69a6e58272819b70288d3221a6ee64b98df852631c80f293514d3b274
MD5 009f2e476759ce987f3720b27a82bd84
BLAKE2b-256 2ee7a7a6147f8e3375676309cf584b25c72a3bab784ea4085b0011fa07b23aeb

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 07d9e39b01743c3717745f4c530a6349eadbfa043c7577eef86c502c15df2c67
MD5 1cbe8b7743df0557cfd4ab2a0bc321ba
BLAKE2b-256 20ec90339ff5cdc598b265748c1f231c7d7fbd9123a92cee10f757e0b1448de4

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 813c0e0132266c08eb87469a642cb30aaff57c5f426255419572aaeceeaa7bf4
MD5 f434de7ef2e73afed7d298c22899f4aa
BLAKE2b-256 9f57301682e7469bdbfa2ce219a804f0668b2266ab8520570d85d3b3ef483ea3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2cd4a60d0e2fb04537162c62bbbb4182f53541fe0ede35cdf270a1c1e723cc42
MD5 6face64f3979750d50bd689cb1675f34
BLAKE2b-256 8f9b7c7f4b7f11525fcbdfba752455314ac60646bae91cdd671d531c1f7a97c6

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed065083d0898c9d5b4bbec7b026fd755ff7454e6e8b73a67f8c744b13986e24
MD5 511b9be96b134f0dea8ee2060cb537bb
BLAKE2b-256 d52a41816ceda78a551cbfdfbeab6f3891152b0e3f758ce6580c2c18c829f774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6c5863edfbe888d9eff9c8b8087354e27618d9da76425c119293f11712a6319
MD5 dec8389a1ced2460df30ae290ffbb777
BLAKE2b-256 dd8c60ebe912379627d023eb96995b40bc50308729f210f43d66109ca0a7bbd2

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6370e8686f662e6a3941ee48ed4742317cafbe5707e36406e9df792cdb535776
MD5 f3f45cadc01917aae599b3149e74c0eb
BLAKE2b-256 c1d1d8a6b7dd5c5636b76ce0d080bc57d8e56c7bbd6bc2ac941529a35e41d84a

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-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.4.7-cp39-cp39-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d61f00a0869d77422d9b2aba989e2d24afa6ffd552af442e0e58de4f35ea6d00
MD5 6ca8eb953b948e5f7cb963d2105764ed
BLAKE2b-256 1a643f9142293c88b1b10e199649ed1330f070c2a68e305335a5819fa7f25fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-cp39-cp39-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.4.7-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.4.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f22dec1690b584cea26fade98b2435c132c1b5f68e39f5a0b7627cd7ae31f1dc
MD5 bf7492585640a80037b0ce6bbaf3829d
BLAKE2b-256 2e92bdcf94997e06b223d826df3abed45a5ad6e17f609b7df9d25cd23b5bde30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 87fad7d9ba98c86bcb41b2dc8dbb326619be2562af1f8ff50776a39e55721c5a
MD5 2260ce9327e2df1a3ce1348855932366
BLAKE2b-256 217bc414866a138400b2e81973d006da7f694cfeaf895ef07d2cba9a8743841a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 14265bfe1f09498b9d8ec91e9ec9fa52775edf90fcbde092b25f4a33d444fea9
MD5 7ac3a12e36aa5c3bad08209af5f74c4a
BLAKE2b-256 bcb610c84e789126ca97d4a7228863a30481e786980a8b8cfcbf4f30658ca63c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e0d51f618228538a3e8f46bd246f87a6cd030565e015803691603f55e12afb5
MD5 d481df9d74e52eb08b7458c5e58c98aa
BLAKE2b-256 a3222f12878fbc680fbbb52386cd39a379801f62eaca74fc8b323381325f0f04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 177a0ba5f0211d488e295aaf82707237e331c24788d8d76c96c5a41594723217
MD5 20577c3e489e97c448b844e19c183cd7
BLAKE2b-256 011bef725f8eb19b5a261b30f78efa9252ef9d017985cb499102f6f49834cd12

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1dc8b0ea451d6e69735094606991f32867807881400f808a106ee1d963c46a83
MD5 a1472752cdaec938553acac17f38d71b
BLAKE2b-256 6f5e9e74560659e3f8a7650e09dac978749d408917c8e9764af13f5f81ceec53

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 320ade88cfb846b8cd6b4ddf5ee9e80ee0c1f52401f2456b84ae1ae6a1a5f207
MD5 1c28595466d3002363ff98f120ae71a0
BLAKE2b-256 042ac1f1f791467d865b48b749842c895668229e553dd79b71ad80498a0b646f

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd915403e231e6b1809fe9b6d9fc55cf8fb5e02765ac625d9cd623342a7905d7
MD5 b38739492b83475eca0c52303fd168fe
BLAKE2b-256 d35e8161a7bbf4a7f88d0409091ab5a5762c014913c9ef80a48b50f806140918

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 84c018e49c3bf790f9c2771c45e9313a08c2c2a6342b162cd650258b57817706
MD5 afb51fd9b99e2fd4e90f69b1d1272227
BLAKE2b-256 ec5e0739d2975ae6fd42505fdb80881ab5e99b4edfbff1d581f4cd5aa94f2d94

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 af21eb4409a119e365397b2adbaca4c9ccab56543a65d5dbd9f920d6ac29f686
MD5 56450fc0ba131168082e8734d94d803d
BLAKE2b-256 473f9bb0864a92b4abf0ec0d1f40546297f45afd73851795e3216c899b360aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c593052c465475e64bbfe5dbd81680f64a67fdc752c56d7a0ae205dc8aeefe0f
MD5 94d0725e1cdff6b8db999b0fe4a91b23
BLAKE2b-256 75208b3cefb78df39d40272d7831dda07b51875d89af1f390f97a801eaedec78

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1efde3cae86c8c273f1eb3b287be7d8499420cf2fe7585c41d370d3e790054a5
MD5 b169b364ca3c3e7e61a6616810f76e5c
BLAKE2b-256 76790e09d2169b7ba38a04e9660669d124ea688605f66189030e4c2be44d8e27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82b271f5137d07749f7bf32f70b17ab6eaabedd297e75dce75081a24f76eb545
MD5 67ad03e686859658d1dfdf846b690f36
BLAKE2b-256 52f947a52cbcce0140f612ef7a37797b2929244bcaaf2f83ade3775429457252

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

File details

Details for the file charset_normalizer-3.4.7-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aef65cd602a6d0e0ff6f9930fcb1c8fec60dd2cfcb6facaf4bdb0e5873042db0
MD5 3a9307a8dbd5f5b189c4b8646b998c6e
BLAKE2b-256 96536ea2906da0fd3773d57398e7cee5628d004d844b0c4903ea3038ae8488cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for charset_normalizer-3.4.7-cp38-cp38-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.4.7-cp38-cp38-manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 bd9b23791fe793e4968dba0c447e12f78e425c59fc0e3b97f6450f4781f3ee60
MD5 8876140689be98964c443177fa9f14ca
BLAKE2b-256 0ef140a59aae52edc5275e85813cbc49621c10758f481deeb27f71c97406cda0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36836d6ff945a00b88ba1e4572d721e60b5b8c98c155d465f56ad19d68f23734
MD5 ae167c5a0db855b49a5d36febc54244a
BLAKE2b-256 1785cacf6d45cff52be431468ee4cfa6f625eb622ab8f23a892218af8c77094d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e80c8378d8f3d83cd3164da1ad2df9e37a666cdde7b1cb2298ed0b558064be30
MD5 a3259398cec3e2fd4f64cbe948bc614b
BLAKE2b-256 efece7961eea9977a4d5ac920627e78938784272cb9b752cf1209da91e93d006

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dca4bbc466a95ba9c0234ef56d7dd9509f63da22274589ebd4ed7f1f4d4c54e3
MD5 7c8c26a4bff94af57ee2c2079050b8fc
BLAKE2b-256 6c0e0f722c41d983dd204b3142606fbfcdbb0a33c34b9b031ef3c1fe9e8187ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16d971e29578a5e97d7117866d15889a4a07befe0e87e703ed63cd90cb348c01
MD5 0acdb26f46ddcbdbc64868fb106ccf87
BLAKE2b-256 817614ab25789e14f83124c4318f0edbbf15a6ed535bd3d88720c42001a954df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for charset_normalizer-3.4.7-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e5f4d355f0a2b1a31bc3edec6795b46324349c9cb25eed068049e4f472fb4259
MD5 a7f7811ca447e8dff5abc149dcecd8e9
BLAKE2b-256 1246fce169ad09419b8e8a5a81db61e08cd7b9fd31332221b84bd176fe0a3136

See more details on using hashes here.

Provenance

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

Publisher: cd.yml on jawah/charset_normalizer

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

Supported by

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