Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Charset Detection, for Everyone 👋

The Real First Universal Charset Detector
Download Count Total

A library that helps you read text from an unknown charset encoding.
Motivated by chardet, I'm trying to resolve the issue by taking a new approach. All IANA character set names for which the Python core library provides codecs are supported.

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

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

Feature Chardet Charset Normalizer cChardet
Fast


Universal**
Reliable without distinguishable standards
Reliable with distinguishable standards
License LGPL-2.1
restrictive
MIT MPL-1.1
restrictive
Native Python
Detect spoken language N/A
UnicodeDecodeError Safety
Whl Size 193.6 kB 39.5 kB ~200 kB
Supported Encoding 33 :tada: 90 40

Reading Normalized TextCat Reading Text

** : They are clearly using specific code for a specific encoding even if covering most of used one
Did you got there because of the logs? See https://charset-normalizer.readthedocs.io/en/latest/user/miscellaneous.html

⭐ Your support

Fork, test-it, star-it, submit your ideas! We do listen.

⚡ Performance

This package offer better performance than its counterpart Chardet. Here are some numbers.

Package Accuracy Mean per file (ms) File per sec (est)
chardet 86 % 200 ms 5 file/sec
charset-normalizer 98 % 10 ms 100 file/sec
Package 99th percentile 95th percentile 50th percentile
chardet 1200 ms 287 ms 23 ms
charset-normalizer 100 ms 50 ms 5 ms

Chardet's performance on larger file (1MB+) are very poor. Expect huge difference on large payload.

Stats are generated using 400+ files using default parameters. More details on used files, see GHA workflows. And yes, these results might change at any time. The dataset can be updated to include more files. The actual delays heavily depends on your CPU capabilities. The factors should remain the same. Keep in mind that the stats are generous and that Chardet accuracy vs our is measured using Chardet initial capability (eg. Supported Encoding) Challenge-them if you want.

✨ Installation

Using PyPi for latest stable

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

:tada: 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()))

Normalize any text file

from charset_normalizer import normalize
try:
    normalize('./my_subtitle.srt') # should write to disk my_subtitle-***.srt
except IOError as e:
    print('Sadly, we are unable to perform charset normalization.', str(e))

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

Chaos : I opened hundred of text files, written by humans, with the wrong encoding table. I observed, then I established some ground rules about what is obvious when it seems like a mess. I know that my interpretation of what is chaotic is very subjective, 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.

👤 Contributing

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

📝 License

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

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

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.0.0rc1 (2022-10-18)

Added

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

Changed

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

Fixed

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

Removed

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

3.0.0b2 (2022-08-21)

Added

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

Removed

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

Fixed

  • Sphinx warnings when generating the documentation

3.0.0b1 (2022-08-15)

Changed

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

Removed

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

2.1.1 (2022-08-19)

Deprecated

  • Function normalize scheduled for removal in 3.0

Changed

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

Fixed

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

2.1.0 (2022-06-19)

Added

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

Changed

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

Fixed

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

Removed

  • Support for Python 3.5 (PR #192)

Deprecated

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

2.0.12 (2022-02-12)

Fixed

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

2.0.11 (2022-01-30)

Added

  • Explicit support for Python 3.11 (PR #164)

Changed

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

2.0.10 (2022-01-04)

Fixed

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

Changed

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

2.0.9 (2021-12-03)

Changed

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

Fixed

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

2.0.8 (2021-11-24)

Changed

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

Fixed

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

Added

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

2.0.7 (2021-10-11)

Added

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

Changed

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

Removed

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

Fixed

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

2.0.6 (2021-09-18)

Fixed

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

Changed

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

2.0.5 (2021-09-14)

Changed

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

Removed

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

Fixed

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

2.0.4 (2021-07-30)

Fixed

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

Changed

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

2.0.3 (2021-07-16)

Changed

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

2.0.2 (2021-07-15)

Fixed

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

Changed

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

2.0.1 (2021-07-13)

Fixed

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

Changed

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

Added

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

2.0.0 (2021-07-02)

Changed

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

Removed

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

Deprecated

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

Fixed

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

1.4.1 (2021-05-28)

Fixed

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

1.4.0 (2021-05-21)

Removed

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

Fixed

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

Changed

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

Added

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

1.3.9 (2021-05-13)

Fixed

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

1.3.8 (2021-05-12)

Fixed

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

1.3.7 (2021-05-12)

Fixed

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

1.3.6 (2021-02-09)

Changed

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

1.3.5 (2021-02-08)

Fixed

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

Changed

  • Dependencies refactoring, constraints revised.

Added

  • Add python 3.9 and 3.10 to the supported interpreters

MIT License

Copyright (c) 2019 TAHRI Ahmed R.

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

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

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

Release files for charset-normalizer 3.0.0rc1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for charset-normalizer 3.0.0rc1
File Size Uploaded
charset-normalizer-3.0.0rc1.tar.gz 89.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for charset-normalizer 3.0.0rc1
File
charset_normalizer-3.0.0rc1-py3-none-any.whl Python 3 none any Details
charset_normalizer-3.0.0rc1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
charset_normalizer-3.0.0rc1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_s390x.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_ppc64le.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
charset_normalizer-3.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
charset_normalizer-3.0.0rc1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
charset_normalizer-3.0.0rc1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
charset_normalizer-3.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
charset_normalizer-3.0.0rc1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
charset_normalizer-3.0.0rc1-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
charset_normalizer-3.0.0rc1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
charset_normalizer-3.0.0rc1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
charset_normalizer-3.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
charset_normalizer-3.0.0rc1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
charset_normalizer-3.0.0rc1-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
charset_normalizer-3.0.0rc1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
charset_normalizer-3.0.0rc1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
charset_normalizer-3.0.0rc1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
charset_normalizer-3.0.0rc1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
charset_normalizer-3.0.0rc1-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
charset_normalizer-3.0.0rc1-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
charset_normalizer-3.0.0rc1-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
charset_normalizer-3.0.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
charset_normalizer-3.0.0rc1-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
charset_normalizer-3.0.0rc1-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 Details
charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32 Details
charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64 Details
charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x Details
charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
charset_normalizer-3.0.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 14.4 MB

Release files / charset-normalizer-3.0.0rc1.tar.gz

Download URL charset-normalizer-3.0.0rc1.tar.gz
Size 89.3 kB
Tags Source
SHA-256 checksum
How to use checksums
ed0265ab660362f4c2a7f44edb54d6ba55e8164e02b1b89a3b2acf7f706ba813
BLAKE2b-256 checksum
How to use checksums
4327b92f9a847c1e3e5d53f61a5e8100895899294452dde857d15edf31e2ba33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-py3-none-any.whl

Download URL charset_normalizer-3.0.0rc1-py3-none-any.whl
Size 45.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
a56bc1315f383be1b8431e347bcdb192b6fd2090b86aaf3f428a3a70b039313f
BLAKE2b-256 checksum
How to use checksums
717a7294228a660fc306cb8497bc443ca80999d5f9727ddca1cd39aac579f299
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-win_amd64.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-win_amd64.whl
Size 95.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
5f9044f228a486af882131e565d2756f5e9662a308b67410ad2c827813422974
BLAKE2b-256 checksum
How to use checksums
731eea19747ac34c151e5eee9b9c10dfaf318dbb635e591c908d5734ca993005
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-win32.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-win32.whl
Size 88.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
4a34043ce38cb4539a79ea4c7b4747365fab79fa4dd8a40b71f89c424f9df302
BLAKE2b-256 checksum
How to use checksums
728a3a6ae8bd1bb03359a10aac34860c4045a2956107bad5caddcc45fd6eae37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_x86_64.whl
Size 190.4 kB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
9fab98185582a23b5902cb95e94f6d5544ae6e00594863cd982786e2f4f7a987
BLAKE2b-256 checksum
How to use checksums
bba9933f01c3e27e3f15a48b06875789241a5085e0876d81fc85de02c094b737
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_s390x.whl
Size 192.7 kB
Tags CPython 3.11 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
281ff974f2c909242a6c5f9dc15b523d87c45f91056261ba6640e6b8b0e7d272
BLAKE2b-256 checksum
How to use checksums
0a8b675652a02fce0f6a441333c27ca01f529cdaffb484a0c9cd064fe48086af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_ppc64le.whl
Size 202.1 kB
Tags CPython 3.11 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
59d15d7be095c6dc98915e9360b4584a3f0c7cd38fa2f84ae2c780ab4b39be2d
BLAKE2b-256 checksum
How to use checksums
ac388524df326cb650110a1bfa11337c671668fcf6e198d8700abab626e7db6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_i686.whl
Size 191.6 kB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
317935f0f207a01975534ec04f514075ee45b0e9ca28ffae69b9d68bbbc36e9e
BLAKE2b-256 checksum
How to use checksums
d9642c6ff7e3cac33f6d43ba1b973ebb7c52338a5fd7ab1fed165f61fc223f09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-musllinux_1_1_aarch64.whl
Size 189.9 kB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
3c6322f11f5d7778ef7d16f4ca4f08500029dffea498ca6aa52280c50bbac9fa
BLAKE2b-256 checksum
How to use checksums
c9ebae5b4607b66546b99d53881691fa7dbea572b815643e1493e6e89fd1f15a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 196.6 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
82479a64253373e1393749c21462d0accd790f517e065e0b5c6cd6e0c92947b8
BLAKE2b-256 checksum
How to use checksums
208549bc2f3f7b92b5176213fac124e210efebbfaf81bc2a84a07c53e322a143
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 197.1 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e286329a14c90cb8d0ca62c3cb5f4ea9f00a09e4b303b9ff1114e4979771c540
BLAKE2b-256 checksum
How to use checksums
bdb49406845b37fbf21bd0a52eb3e095486ce60901d5f487a4311ccd8fc8cc99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 206.5 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
353210a6d2a8031cfcb8e3c6759ec13f6be06302545e1d56506631cf8a4a2edc
BLAKE2b-256 checksum
How to use checksums
e736622be4cae089e8f34d71340831e37ae461da574b94cfd6ea160f6fa23e64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 192.7 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
868718ba96e17a0831d113f833548867b4841ff631227d399a14fd03607c6075
BLAKE2b-256 checksum
How to use checksums
045fb1dffa8a025d0cd356fdadddfeb2b27df0605cb545e1ed9da854d0d019b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 197.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e7dc9c104c458f31e10c3fdb68b8c1c1abf6a4e372261df385b4ba7057da0be9
BLAKE2b-256 checksum
How to use checksums
a01db621d0420d9e973a65f5635a481948a65f6cb6ac0b2830ddbc9c5bbd56d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Size 119.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
15e8a1782a6845e3dcec8344cac766b9c1f56f7420fc76fde5c7d3991b8cf274
BLAKE2b-256 checksum
How to use checksums
bbad0d7e8e0702ac567e251cf7258ff122ddda181af4b722e8696a3480c93938
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Size 122.1 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
132c2d502e2a2c6196b2a377ac6119f4355d3fde6ad2f4b88ffe6fefe6fb6b99
BLAKE2b-256 checksum
How to use checksums
2a12f9d1f79e80405e2de04e4adff0adf3a9b4999e818e6d6e917a0591775633
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_universal2.whl

Download URL charset_normalizer-3.0.0rc1-cp311-cp311-macosx_10_9_universal2.whl
Size 196.0 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
210b09a1397f678718a70a4e005b7e9ab2d8007698197519354ad3788fda70f9
BLAKE2b-256 checksum
How to use checksums
2bac94a94c47cf5c5806aa7556f15ee9ead26a2e9dfe3e9c5f86ab05301dbcc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-win_amd64.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-win_amd64.whl
Size 96.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
f3623f684818f5bc053b0edbbf364780486964db13a6b39d1283652a30870eff
BLAKE2b-256 checksum
How to use checksums
3de57e73b4c3f051b653bf934a1c0da9cfadbf869305a2167ef0110f24ca33e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-win32.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-win32.whl
Size 88.7 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
906e83de546db5e389edaefd5f8df68be997fd03d7c7b9e84b6bd12f38977e07
BLAKE2b-256 checksum
How to use checksums
26c356a0d3dd99e55ec7ef4f681cdd0d6cf9e7993af3974af1fa064c9f3385e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_x86_64.whl
Size 192.2 kB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
0ce52a161707dd66dc8055fe97ba633ad8f777c6d01d89a0f876246b643a5c76
BLAKE2b-256 checksum
How to use checksums
73154225bafeeb9033859731a3c456b54c5d30d9c18a56a4859b2ba5bba27c0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_s390x.whl
Size 194.6 kB
Tags CPython 3.10 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
9f1a9f28ea3495ce36ee435aa3dc43704bc7a0a3409a22f965e2608c7727c54b
BLAKE2b-256 checksum
How to use checksums
a08fddc70622e316279171419f7c5919c02ee6e2c7b142f3bb12f45a14ec3005
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_ppc64le.whl
Size 204.4 kB
Tags CPython 3.10 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
676a6ae3dc062fa48ea1e31164c805743c870fdc9eb46bfb32ef98b453e98be1
BLAKE2b-256 checksum
How to use checksums
7e3bb9ff75394115c2c15be43b9d4f7da191efd0e437451dd9b5c8f1518f12a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_i686.whl
Size 193.8 kB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
5ef1f3c949e449a383b0bd3bf85757e5b12de336031c32fc3ba47c0bf5ff651c
BLAKE2b-256 checksum
How to use checksums
6998d6370b54f4f062281a7645a20deb0068ce14a9df1a2ee872d24dc35a474b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-musllinux_1_1_aarch64.whl
Size 192.0 kB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
e1bff073a4148d92b636f3cceae0ea92f9dacae76e8f41461f623ef8025c8045
BLAKE2b-256 checksum
How to use checksums
4d8085354507c9b8247608682623ecc7e7297b80c75a826ac68866a575f7fb02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 198.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a24af9576233d2d96a7a87e04459ec71faa217ac9f44975a51789df02891a4e3
BLAKE2b-256 checksum
How to use checksums
cb42ae7fe401bb88bd93972bde6bf916ea06f35e7d2557000dc8756b2dec1099
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 198.5 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
496ff858eaebe319b540dc30342867d049184efe10135e4abcbdb10b711b055e
BLAKE2b-256 checksum
How to use checksums
c3b048a74936b8b033f3cd1fb074258b8ddb2ec40206087105c1f1d0b644bc0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 208.7 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4a167929cf942845c1d56c37e58ca3a56d214f712654a764478895dab0ad2d82
BLAKE2b-256 checksum
How to use checksums
376d3bd893e77dfdd18f1847431d5b8d9b6bbdc5d58ff85b4baa599b470a9450
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 195.1 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
899c064e7b490f31d185d1da58e4258559b6d219ecde41588f9b27b4dad46fcf
BLAKE2b-256 checksum
How to use checksums
5387f4d2bd1709487637339fb0446c2bd47261707199209da405da8608c890e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 200.0 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4a328ca5401263daabbac025b544e3a43d1b0b24dba85df71f1a00282ca21e9e
BLAKE2b-256 checksum
How to use checksums
1087fd43f365ad176eeba76abff5725b71fe8d30811106aa3ad090c8c5fd3074
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Size 120.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
119433490ca27b2e0a6d4b3d9b4d0a26d755a69c4eaae3468a79da6eff161c0a
BLAKE2b-256 checksum
How to use checksums
f7672579e2970449c14a2b321e214bfc19d0091196dc94bbc766c1f08a5ed7d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Size 123.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4bf92863caa81a00ca016c5ccda129d67c202407bd8f1cd45f376bbd1302da46
BLAKE2b-256 checksum
How to use checksums
28d647984074caa6f6c19fbecfd69b1b7f472643b9d63251ef683031316e49ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp310-cp310-macosx_10_9_universal2.whl

Download URL charset_normalizer-3.0.0rc1-cp310-cp310-macosx_10_9_universal2.whl
Size 198.4 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
8ab8be4ad459a946db1eb004bc689d04018d78896508847ac6355b45d93b1977
BLAKE2b-256 checksum
How to use checksums
95641de9a8d035c1f510f1384a13448905f36f3ad1770e5383eddca9036ba5f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-win_amd64.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-win_amd64.whl
Size 96.2 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
bd8c1b68cd3f7d05fb2067044b034d68f14c8b5db2b437f5d4c8d2e7d5892838
BLAKE2b-256 checksum
How to use checksums
0237e0e07df1266e42ce1713dd03399c31794759f75f27646da3769c72d7d715
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-win32.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-win32.whl
Size 88.8 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
4f9fff8c6e6fd77af1d3dc4d67709a03be0444eca7df018c318116c16dbd14f6
BLAKE2b-256 checksum
How to use checksums
ddb34a2697a66ce90a9f46f164dfe3081b00086533933190221db7d144049c3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_x86_64.whl
Size 192.2 kB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
13b2a576e8ba6392abfc778f778dd682a0168c109817a0d91bcd5dc24efa2ea2
BLAKE2b-256 checksum
How to use checksums
98aa26cf5700d6d1d1c89d01be164cd8b1c41deabeb892db6506c7d70df2d14e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_s390x.whl
Size 194.9 kB
Tags CPython 3.9 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
7b619d27a03348bd7ab7e663c4e5aae972ca37f524d302d0b9df249f4321f5ea
BLAKE2b-256 checksum
How to use checksums
55a640e0835ea3ebfa3dff56f0e403e3e0488345d2ed898cbab69e1474ef3064
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_ppc64le.whl
Size 204.1 kB
Tags CPython 3.9 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e1070093932ea925c30f51ade245aec4ccd00c2ffbbc29f081b1947af2e5c991
BLAKE2b-256 checksum
How to use checksums
fb851931cae04d18e0f7950c7e8e9d47d6ec72b810a47e8c8f8709d5dd2b85d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_i686.whl
Size 194.1 kB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
881968654e93b625598a6fd1fd32a08e783318c88c4f2b7ba0a88bf8090065f2
BLAKE2b-256 checksum
How to use checksums
0c1125545e767d0baddf15bf417f1063846dab07f23f47a49612e34dfa5c8bbf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-musllinux_1_1_aarch64.whl
Size 192.1 kB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
257a8eedd4c04a0ddde9ce1d3f0cc3c4595f34a7d19f19e4f5b092017cb22c40
BLAKE2b-256 checksum
How to use checksums
411f0bc64ce80305c47509ee06693cf5f42892d21ee5b62e6b97d4d99c5aecb5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 198.6 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e8d8231bd15c623739804fcb1c7c027b36b51a95c7fe346a7d1c8e4f94760b75
BLAKE2b-256 checksum
How to use checksums
be1455addd12c246c7fc2bdf0a8de42fefaa10487d239d9ef3a291ed52334e06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 198.8 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
429d64dadc738146ce665bf1015e993c2b4a42d887c8da2d0fb3576819545c23
BLAKE2b-256 checksum
How to use checksums
47b22e7a852ffaee257b7e6aba5febe32eec3f5133f19c18e6591f8d95f848aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 208.7 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
6aee1822aad822449f81b5067dce4bd4babbf75da30ce36125b9b21e5865d826
BLAKE2b-256 checksum
How to use checksums
b707a1da9c24fa6523aa3b97d3865c2335f91ab8cc424a9ad67eb8e6a8f4fba3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 195.5 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8c3f0feaec10788f6cd88ccb124f7bd921a167f7d0a69b283c09a1e8c0ad9567
BLAKE2b-256 checksum
How to use checksums
290abde5018d04e8cf6fc0f84db342769f4bcd3e2daf8e4a53dc5e226c28efbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 200.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
9b4b86524875172f47c13b6bdf0e0f4d5a01fc2fe8f6ceadaf40487ec2ec3fbe
BLAKE2b-256 checksum
How to use checksums
21843b50d08fdcb1b742d3f730eb3c3386c54afec29373c168c89582b4301859
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Size 120.5 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f7d1a72aa7fb7fdfa9cd47a30da8e5653ab740326fa5dbb89fc80aca99324935
BLAKE2b-256 checksum
How to use checksums
fdcd2880e4a792f3c59c9d71074671f6dc831b716e3f892c40b4fee685ffb1d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Size 123.3 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
26cd09b9a8fdc3627742beaabcae2e253525feb2d48c7a6ef10f4adaa23cdb18
BLAKE2b-256 checksum
How to use checksums
cd33a3dea03f4f2550acc8e775d88421cb4fe140a4767a0322d2fa72dc4c4b0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp39-cp39-macosx_10_9_universal2.whl

Download URL charset_normalizer-3.0.0rc1-cp39-cp39-macosx_10_9_universal2.whl
Size 198.5 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
304dfc653ca04b63c522046cc9dd02bb9d6726f42e2ace6f3f501abe55886f87
BLAKE2b-256 checksum
How to use checksums
c54883f65b1de4acd3e29ba864d48c92822afc1da53b028073a59fbccff557ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-win_amd64.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-win_amd64.whl
Size 95.5 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
8d943d86c91b0d7169d02c27b0bb6fb1d453a4efed360102420becaf390195dd
BLAKE2b-256 checksum
How to use checksums
1b0eb82b1a4f63b3f99bbfb5e5e499e91fbfaa9b7c0be1d7cf39b977165a7af7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-win32.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-win32.whl
Size 88.5 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
70e56c4b840f92738f4169c7de2f3cac57ac57c101df90e60233635d79ba3536
BLAKE2b-256 checksum
How to use checksums
68dc04a926b598f0dc41fe3f6cd8cc79fe6152fbf53a003715fe474decd817a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_x86_64.whl
Size 190.9 kB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
b9a21756a9bdf87f0473daa267a11fa9c1f0a7f411aefd2092885b83085fe565
BLAKE2b-256 checksum
How to use checksums
f22380b57757bf817d923201ea6542cfb04cf354468dcd5963adee3f4782f547
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_s390x.whl
Size 193.3 kB
Tags CPython 3.8 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
bb2f73947ef86a6649d65cc8fc0b73711aef4a306b63c89c0ff1f76343753749
BLAKE2b-256 checksum
How to use checksums
15463d7796eee791781f20aa41280cdae343510695a76c0cadeef12132592df3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_ppc64le.whl
Size 201.1 kB
Tags CPython 3.8 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9e0866d5052ca6de1c004202f7d182c3031968be1fc27f74eee3a4259c20ad90
BLAKE2b-256 checksum
How to use checksums
8bf5e37f3e4f7864c99591457f6829623f4845d75fe1da2851783d4096270157
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_i686.whl
Size 193.2 kB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
994363d24015a9cfe20690acd50b372962303da75befc3a0c5b8bd7a4ae614e2
BLAKE2b-256 checksum
How to use checksums
96c76dc01e7cb4342683124f68e10b1d33001b15cb9c51f27d8888f461374182
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-musllinux_1_1_aarch64.whl
Size 188.7 kB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
26ee368d7bdc080035f293eb4a1f85a1d4daf0daaea6d4e7819ae41c75742a27
BLAKE2b-256 checksum
How to use checksums
abb788932ff7ced4517134e6dad2bc24dd50d7a6d7748f779e4520c971192de2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 195.4 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7585a9ddbb99be18b2466f289efa1955ef6aa5682803588d98f1cae5ad441e15
BLAKE2b-256 checksum
How to use checksums
cd4ed94bc2df39727b8b5f181ad045ca5a87c673040d7d615805a64c0ddcf7c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 195.2 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4b74c2bebf36ec3abfaf17a01977bf625bb601037c8de968aca2312ff5bd9ed9
BLAKE2b-256 checksum
How to use checksums
875a9fca591737389517f92c59d7d499e20829f9acb43bd19e981c1fac20b938
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 205.2 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f773596fc6284eb17033698d892741543e4ee00e7f5db0f5c732467d020f2366
BLAKE2b-256 checksum
How to use checksums
b6a61411e79b932f032c9fc587359a7a3480977c74330967193f5e473ec6cfcc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 192.1 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
47cf2a75e34ed4ac1a4d00bc788d01a2e80ee369159d8d5e1e24480827194120
BLAKE2b-256 checksum
How to use checksums
4a226e584761a83db7884fadb76f23c785b68d5bfa11961f100056e9ca2648b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 197.8 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4bf64d8fd6c82966c71bba87728a379782a62716aea31f5ca9bf9fcaa1969e4c
BLAKE2b-256 checksum
How to use checksums
b3bc1fcc447ea19f0be9828649527478538fa284b0c6fd8eeb7c0149364c7124
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-macosx_11_0_arm64.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-macosx_11_0_arm64.whl
Size 119.6 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
56efe61a7c9c174dae89c7deb003322063b51e4cda6e4a094cdf6f94548ed9ef
BLAKE2b-256 checksum
How to use checksums
8abeebe5d3c260286db6b9512c234a24c568d0762a2cb766b4beef544ac3371d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-macosx_10_9_x86_64.whl
Size 122.1 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
cb342d823d9b2b9bc3d6311d3c410e6d3191f02ad980302281072234b612d8f5
BLAKE2b-256 checksum
How to use checksums
e3ea74239615a99bcaf0297902072a9c7816db6044ff930b81ac2e30896b2b37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp38-cp38-macosx_10_9_universal2.whl

Download URL charset_normalizer-3.0.0rc1-cp38-cp38-macosx_10_9_universal2.whl
Size 196.2 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
880b10f7751a1ce29cf2e8c06b1e43b4dd3d05f7c4cb63c51bef454bd791b17c
BLAKE2b-256 checksum
How to use checksums
3e0adf815c996f3a7411c7482ebb9feef59eb8f846045a45c7043cc8e09832aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-win_amd64.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-win_amd64.whl
Size 93.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
3acb525025fcfc525a707621aa652275c079b1d05f03ab4c414c45b3f0107a86
BLAKE2b-256 checksum
How to use checksums
f4e3f4891627edb285edc625c3e6feb9caddd158989fd203856ddcf5d6aecc73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-win32.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-win32.whl
Size 87.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
e0f5fcaf14b4f10ff0749f3b28c367f2675b8c02e5bd09a8ecd8419740211f11
BLAKE2b-256 checksum
How to use checksums
914484d297e9d77a912569df47b2fb7b0107a2eefca3dd1d1d0737d4c69d4373
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 166.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
3f8910cf63bf9527ed19ce0dabb70222ef96dd13d8fb3cba8d4adc898ee939e6
BLAKE2b-256 checksum
How to use checksums
7666bcdd983b12be28e22adfb0dd250a7d242b97481aa1fc446d3873db9e91ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_s390x.whl
Size 165.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
459b2d7c189f9ca980186b80256757762a60210c0b0c5b00e7bdfe47474c4353
BLAKE2b-256 checksum
How to use checksums
412e8038fae4c2d50bf74e5a1fb3d69682413abac99dc2b05cc28d8392e1b66c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Size 173.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
fbd3adf9bf976d06ac718b490b7852ed9517c24b158fc02da0ab3ec1b75f4716
BLAKE2b-256 checksum
How to use checksums
37a8fa5b9579eb00376c3eed5d6408701f953e249a1b29be15af314c2fb0c349
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_i686.whl
Size 168.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
65e0dcf41b58b9c4363d2f03c58b7b8a95953f26af321084560fb193ac454072
BLAKE2b-256 checksum
How to use checksums
488240c8cf8b6806fdc78f97dba8fc2550f6c6213e64844d3b7ab6c23cf97c33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 163.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
4217da8f51516bfd7953cacf5f61163796a7e1422bb5c0542a4f95b307e324f8
BLAKE2b-256 checksum
How to use checksums
9ed6330a47826494bb71d636e3ca34d736380d57290964124b8025f0228e4ed9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 170.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b4c0b7fe49ecdaa5e5bc11ceb8bcdd8a739078b7464a468577a253021a2f2d8b
BLAKE2b-256 checksum
How to use checksums
f3035908971965644495aadb93497a025d8f2058c5a509f773ad07bd9ac2bb6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 168.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2a35ff3c72b2f4aaba892214136db8c58aa5ee3ac31aa6546ff863fa14478e49
BLAKE2b-256 checksum
How to use checksums
49beaaaad85c264d2049c7f948b5e358381f4f9a2cfe54d009bcb5b551c62650
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 177.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d4348ed9ee0b69f2be1933db378dd7eb2a769baef851d6971851457afad24715
BLAKE2b-256 checksum
How to use checksums
e2cb89bb034604de51985cda8285ad9b8876b9d71818ce8d89a0cd74a8901169
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 166.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
01cb4d686d81da98b2d4e52e642a03f3a53db742d56df98b080811fb87f520b3
BLAKE2b-256 checksum
How to use checksums
8d28c094030a73a6f531e33399d818859f0564e57892418df25e645b07bc10a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 172.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0d2d760259faec6ddf742b5f3b1aac3ae7a78789de0824b1ed6d45a6750d0b02
BLAKE2b-256 checksum
How to use checksums
9e80a760b5684524effbe5ccf62c9aaa3dde73b7141de37f57a5fbdb4beb0c4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp37-cp37m-macosx_10_9_x86_64.whl
Size 119.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9452f8c67f7c85875b27666cf2fc37cb768514ab1fee6b1675c5deaeac8bc8d3
BLAKE2b-256 checksum
How to use checksums
d3802cdeed6898d6315d3324a5cfc2a495dd234ef61f8e92f55cfdb5979b71ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-win_amd64.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-win_amd64.whl
Size 91.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
2744d66516657c058b209d1e573043557750fbb1bb5d271336b62561bcfd078c
BLAKE2b-256 checksum
How to use checksums
08ae3e5b807fc973e00be2554c5277febf4d79c1f0284e40771ad22bf3387440
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-win32.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-win32.whl
Size 85.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
b21395de8f247e6a32b376f6402b10e669f346e5a01b0d8b7a2e4abbb598b54b
BLAKE2b-256 checksum
How to use checksums
f83eb9685c4db3fdf5873d3f7cacba66e618af8814c4d42f2f826397975cda71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_x86_64.whl
Size 158.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
e45f0b975c8785159522dfca733d99a2a37996b5aac0e7a1571cfc4de962599c
BLAKE2b-256 checksum
How to use checksums
bcc8ee57c3d11a85f36448e0dbbfcad0a675a60b6c40b52a8a2b14f0775c80b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_s390x.whl
Size 158.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
3b394f4fe0b73b9966c922b71564ed60c12e6fcb98737b91ce72844808abfa0f
BLAKE2b-256 checksum
How to use checksums
e8d1548da483cbafd9eff36042a940bfb0ba532eb7072aba795d85bc9c65527a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_ppc64le.whl
Size 165.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
122c73dba3c12d43d8b5250edc1dc5437fdfa95bc95628bbe5c41e4417bd3242
BLAKE2b-256 checksum
How to use checksums
b8558c520ed03e30213e060de9d79504ba96d61c21ff2e5e800bf19422815efe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_i686.whl
Size 160.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
b2e70ef31bd1e6659dc96e4ce867c1c3b2f89bc0df15ef110780c78e5916ae5a
BLAKE2b-256 checksum
How to use checksums
58c306e8e1c001932e1453a6ececb3b35fcdb6b8f9a378bfd5d631edf2bdb6fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-musllinux_1_1_aarch64.whl
Size 155.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
1d1cef8520e0a1b785dd780d3ed92fd88d56758d12db250a99eccd7480f90c56
BLAKE2b-256 checksum
How to use checksums
a35607a81956a3b6cb37618cced51ff48a9790b423ea7594686b1c3a632fa32f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 163.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f84431303accfa353ca3c49e93301cfee3542737b488af54a23814a64a91d4db
BLAKE2b-256 checksum
How to use checksums
8b4d98f56fbc64cd1b89e3a5c44957b5b17297a4a2d61d7f2f3d2022bd0cdf96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 160.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
da84e9f173bbf03357b358b92465a6edfa6d794c05a12983f41acb2be8832233
BLAKE2b-256 checksum
How to use checksums
c49f52da65c408afcd8c56feeecd5a717cc7530c4d40add8728fff394d96e4e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 168.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
6b3812bef24caa501d87785b11ac128e19e995690bb47fd84e760a85a028085d
BLAKE2b-256 checksum
How to use checksums
773a2967dea3b5e2bd1371f317cf5cd805ab06cef9fc045b245f0e910ecb1a2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 158.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f65901d0a00e56f970e9940a7c730b8a870cb2c9f925f1275e500ad75b5fd84f
BLAKE2b-256 checksum
How to use checksums
55228bf2b3632ca8878a9843e26e8e4985dbb180c828d11a83450983a7ace8ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 164.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2dde042e2580f531e1b47cb9bc55fce06d147ca606a891de757231ed3e65e485
BLAKE2b-256 checksum
How to use checksums
87786145172e9fdcfa4ca308e08228987199f2e649641c66cde4f8613e5a9b74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release files / charset_normalizer-3.0.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL charset_normalizer-3.0.0rc1-cp36-cp36m-macosx_10_9_x86_64.whl
Size 115.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a51bfbc8f6ec1fba407c2689a17ce4c0c1b648a92ecf7925a97fba80e9b4df35
BLAKE2b-256 checksum
How to use checksums
f2ab6172b6073cd3efe5d40756f050aebf5979bdc82ab5264c3b7573a0c4037f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.7

Release history Release notifications | RSS feed

3.4.1

92 release files

3.3.1

90 release files

3.3.0

90 release files

3.0.1

88 release files

3.0.0

88 release files

This release

3.0.0rc1 This release

88 release files

2.1.1

2 release files

2.1.0

2 release files

2.0.12

2 release files

2.0.11

2 release files

2.0.9

2 release files

2.0.8

2 release files

2.0.7

2 release files

2.0.6

2 release files

2.0.5

2 release files

2.0.4

2 release files

2.0.3

2 release files

2.0.2

2 release files

2.0.1

2 release files

2.0.0

2 release files

1.4.1

2 release files

1.4.0

2 release files

1.3.9

2 release files

1.3.8

2 release files

1.3.7

2 release files

1.3.6

2 release files

1.3.5

2 release files

1.3.4

1 release file

1.3.3

1 release file

1.3.2

1 release file

1.3.1

1 release file

1.3.0

1 release file

1.2.0

1 release file

1.1.1

1 release file

1.1.0

1 release file

1.0.0

1 release file

0.3.0

1 release file

0.2.3

1 release file

0.2.2

1 release file

0.2.1

1 release file

0.2.0

1 release file

0.1.8

1 release file

0.1.7

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page