Skip to main content

cChardet is high speed universal character encoding detector.

Project description

cChardet

NOTICE: This is a fork of the original project at https://github.com/PyYoshi/cChardet since the original project is no longer maintained.

To install:

pip install faust-cchardet

cChardet is high speed universal character encoding detector. - binding to uchardet.

PyPI version Build for Linux Build for macOS Build for Windows

Supported Languages/Encodings

  • International (Unicode)

    • UTF-8

    • UTF-16BE / UTF-16LE

    • UTF-32BE / UTF-32LE / X-ISO-10646-UCS-4-34121 / X-ISO-10646-UCS-4-21431

  • Arabic

    • ISO-8859-6

    • WINDOWS-1256

  • Bulgarian

    • ISO-8859-5

    • WINDOWS-1251

  • Chinese

    • ISO-2022-CN

    • BIG5

    • EUC-TW

    • GB18030

    • HZ-GB-2312

  • Croatian:

    • ISO-8859-2

    • ISO-8859-13

    • ISO-8859-16

    • Windows-1250

    • IBM852

    • MAC-CENTRALEUROPE

  • Czech

    • Windows-1250

    • ISO-8859-2

    • IBM852

    • MAC-CENTRALEUROPE

  • Danish

    • ISO-8859-1

    • ISO-8859-15

    • WINDOWS-1252

  • English

    • ASCII

  • Esperanto

    • ISO-8859-3

  • Estonian

    • ISO-8859-4

    • ISO-8859-13

    • ISO-8859-13

    • Windows-1252

    • Windows-1257

  • Finnish

    • ISO-8859-1

    • ISO-8859-4

    • ISO-8859-9

    • ISO-8859-13

    • ISO-8859-15

    • WINDOWS-1252

  • French

    • ISO-8859-1

    • ISO-8859-15

    • WINDOWS-1252

  • German

    • ISO-8859-1

    • WINDOWS-1252

  • Greek

    • ISO-8859-7

    • WINDOWS-1253

  • Hebrew

    • ISO-8859-8

    • WINDOWS-1255

  • Hungarian:

    • ISO-8859-2

    • WINDOWS-1250

  • Irish Gaelic

    • ISO-8859-1

    • ISO-8859-9

    • ISO-8859-15

    • WINDOWS-1252

  • Italian

    • ISO-8859-1

    • ISO-8859-3

    • ISO-8859-9

    • ISO-8859-15

    • WINDOWS-1252

  • Japanese

    • ISO-2022-JP

    • SHIFT_JIS

    • EUC-JP

  • Korean

    • ISO-2022-KR

    • EUC-KR / UHC

  • Lithuanian

    • ISO-8859-4

    • ISO-8859-10

    • ISO-8859-13

  • Latvian

    • ISO-8859-4

    • ISO-8859-10

    • ISO-8859-13

  • Maltese

    • ISO-8859-3

  • Polish:

    • ISO-8859-2

    • ISO-8859-13

    • ISO-8859-16

    • Windows-1250

    • IBM852

    • MAC-CENTRALEUROPE

  • Portuguese

    • ISO-8859-1

    • ISO-8859-9

    • ISO-8859-15

    • WINDOWS-1252

  • Romanian:

    • ISO-8859-2

    • ISO-8859-16

    • Windows-1250

    • IBM852

  • Russian

    • ISO-8859-5

    • KOI8-R

    • WINDOWS-1251

    • MAC-CYRILLIC

    • IBM866

    • IBM855

  • Slovak

    • Windows-1250

    • ISO-8859-2

    • IBM852

    • MAC-CENTRALEUROPE

  • Slovene

    • ISO-8859-2

    • ISO-8859-16

    • Windows-1250

    • IBM852

    • M

Example

# -*- coding: utf-8 -*-
import cchardet as chardet
with open(r"src/tests/samples/wikipediaJa_One_Thousand_and_One_Nights_SJIS.txt", "rb") as f:
    msg = f.read()
    result = chardet.detect(msg)
    print(result)

Benchmark

$ cd src/
$ pip install chardet
$ python tests/bench.py

Results

CPU: Intel(R) Core(TM) i7-9700K CPU @ 3.60GHz

RAM: DDR4-3200 64GB

Platform: Ubuntu 20.04 amd64

Python 3.9.0

Request (call/s)

chardet v3.0.4

0.46

cchardet v2.1.7

1404.05

LICENSE

See COPYING file.

Contact

Platform

Support

  • Windows i686, x86_64

  • Linux i686, x86_64

  • macOS x86_64

Do not Support

CHANGES

2.x.x

2.1.7 (2020-10-27)

  • support Python 3.9

  • drop support for Python 3.5

2.1.6 (2020-03-17)

  • drop support for Python 2.7

  • support Github Actions

  • update dev-dependencies

2.1.5 (2019-09-27)

  • update language models (uchardet)

  • add iso8859-2 test but disabled it

  • support Python 3.8

  • drop support for Python 3.4

2.1.4 (2018-09-27)

  • disable LTO because become poor performance

2.1.3 (2018-09-26)

  • support Python 3.7

2.1.2 (2018-09-26)

  • enable LTO for wheel builds

  • update Cython

2.1.1 (2017-07-01)

  • fix that different results with different chuck sizes

  • fix that assignments to nsSMState in nsCodingStateMachine result in unspecified behavior

  • include COPYING in package

2.1.0 (2017-05-15)

2.0.1 (2017-04-25)

  • fix an issue where UTF-8 with a BOM would not be detected as UTF-8-SIG (fix #28)

  • pass NULL Byte to feed() / detect() (fix #27)

2.0.0 (2017-04-06)

  • Improve tests

2.0a4 (2017-04-05)

  • Update uchardet repo (Fix buffer overflow)

2.0a3 (2017-03-29)

  • Implement UniversalDetector (like chardet)

2.0a2 (2017-03-28)

  • Update uchardet repo (Fix memory leak)

2.0a1 (2017-03-28)

1.1.3 (2017-02-26)

  • Support AArch64

1.1.2 (2017-01-08)

  • Support Python 3.6

1.1.1 (2016-11-05)

  • Use len() function (9e61cb9e96b138b0d18e5f9e013e144202ae4067)

  • Remove detect function in _cchardet.pyx (25b581294fc0ae8f686ac9972c8549666766f695)

  • Support manylinux1 wheel

1.1.0 (2016-10-17)

  • Add Detector class

  • Improve unit tests

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

faust-cchardet-2.1.19.tar.gz (678.9 kB view details)

Uploaded Source

Built Distributions

faust_cchardet-2.1.19-pp310-pypy310_pp73-win_amd64.whl (116.0 kB view details)

Uploaded PyPy Windows x86-64

faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (140.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

faust_cchardet-2.1.19-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (122.4 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

faust_cchardet-2.1.19-pp39-pypy39_pp73-win_amd64.whl (115.9 kB view details)

Uploaded PyPy Windows x86-64

faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (139.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

faust_cchardet-2.1.19-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (122.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

faust_cchardet-2.1.19-pp38-pypy38_pp73-win_amd64.whl (115.1 kB view details)

Uploaded PyPy Windows x86-64

faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (139.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (139.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

faust_cchardet-2.1.19-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (121.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

faust_cchardet-2.1.19-pp37-pypy37_pp73-win_amd64.whl (115.1 kB view details)

Uploaded PyPy Windows x86-64

faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (139.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (139.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

faust_cchardet-2.1.19-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (121.9 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

faust_cchardet-2.1.19-cp312-cp312-win_amd64.whl (119.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_x86_64.whl (861.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_i686.whl (902.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_aarch64.whl (852.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (317.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (305.8 kB view details)

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

faust_cchardet-2.1.19-cp312-cp312-macosx_11_0_arm64.whl (134.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

faust_cchardet-2.1.19-cp312-cp312-macosx_10_9_x86_64.whl (135.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

faust_cchardet-2.1.19-cp311-cp311-win_amd64.whl (119.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_x86_64.whl (857.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_i686.whl (899.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_aarch64.whl (849.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (313.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (302.7 kB view details)

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

faust_cchardet-2.1.19-cp311-cp311-macosx_11_0_arm64.whl (134.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

faust_cchardet-2.1.19-cp311-cp311-macosx_10_9_x86_64.whl (134.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

faust_cchardet-2.1.19-cp310-cp310-win_amd64.whl (118.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_x86_64.whl (847.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_i686.whl (890.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_aarch64.whl (839.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (304.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (292.4 kB view details)

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

faust_cchardet-2.1.19-cp310-cp310-macosx_11_0_arm64.whl (134.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

faust_cchardet-2.1.19-cp310-cp310-macosx_10_9_x86_64.whl (134.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

faust_cchardet-2.1.19-cp39-cp39-win_amd64.whl (119.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_x86_64.whl (854.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_i686.whl (896.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_aarch64.whl (845.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (298.3 kB view details)

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

faust_cchardet-2.1.19-cp39-cp39-macosx_11_0_arm64.whl (135.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

faust_cchardet-2.1.19-cp39-cp39-macosx_10_9_x86_64.whl (135.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

faust_cchardet-2.1.19-cp38-cp38-win_amd64.whl (119.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_x86_64.whl (854.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_i686.whl (897.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_aarch64.whl (845.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (308.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (298.5 kB view details)

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

faust_cchardet-2.1.19-cp38-cp38-macosx_11_0_arm64.whl (135.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

faust_cchardet-2.1.19-cp38-cp38-macosx_10_9_x86_64.whl (135.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

faust_cchardet-2.1.19-cp37-cp37m-win_amd64.whl (120.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_x86_64.whl (848.8 kB view details)

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

faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_i686.whl (891.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_aarch64.whl (839.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.2 kB view details)

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

faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (306.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (293.9 kB view details)

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

faust_cchardet-2.1.19-cp37-cp37m-macosx_10_9_x86_64.whl (135.7 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

faust_cchardet-2.1.19-cp36-cp36m-win_amd64.whl (124.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_x86_64.whl (837.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_i686.whl (879.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_aarch64.whl (828.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (293.2 kB view details)

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

faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (283.1 kB view details)

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

faust_cchardet-2.1.19-cp36-cp36m-macosx_10_9_x86_64.whl (133.8 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file faust-cchardet-2.1.19.tar.gz.

File metadata

  • Download URL: faust-cchardet-2.1.19.tar.gz
  • Upload date:
  • Size: 678.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for faust-cchardet-2.1.19.tar.gz
Algorithm Hash digest
SHA256 f89386297cde0c8e0f5e21464bc2d6d0e4a4fc1b1d77cdb238ca24d740d872e0
MD5 f67b9cb0198284535b062992cb47be40
BLAKE2b-256 e9532125d17d7c2a14b76303bf5c3c5db35ea8e4b8a14817bb191c601d67e288

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 873089b385009c672c7364aaf281f39601af739218d812a8d41b6ac3a96e83d4
MD5 e49162e6a70e151db695ace9992c99d3
BLAKE2b-256 1420f191c428cc32a915a8059365f95d218b6f759397c5018c306a412662fb40

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8706fc2ce4392cf18fb823f0a805213bae103c1eb3659792d7ab690c5589ea39
MD5 f8df421a350e712862490328fb5fb353
BLAKE2b-256 1e745f25edcc35f54514c07b25a8cf0dfaa68e63db213b35edf749d131be9e3b

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64b3d9559a3c88baa7de0300e4d131b395903d0a9f32412aae15619791199527
MD5 2bed0482823bf28140986a13ee5de53d
BLAKE2b-256 06f75bd33be4ca3d09fc479ed56dd277d43867caf74925866482bde3ad90d6e2

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0dbf865b5a7f03d967294efb435de6eede51e74a8af31abc6e959b87b90b0d3a
MD5 fd3bf4c5f69d21964cee9282a12ceb8c
BLAKE2b-256 fa4675820b24d6855ffc29a68327ba94d3c7e9c64b9c9bb77d282cbd5c9a5bcf

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d5c5b245afbf89a4254abcdda93d7da3a8a58614aa0aed211e8d6e726c11b91
MD5 5ca63d6f5a4d09759e6d6a41b7095023
BLAKE2b-256 bff2917493e06368f72e0d9aa6915b01e6bc52b69d69db1b6cf5f8c3a58bc633

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dfe3d4360711cdc4ed5b913ab56b99fa03daa945e05bd7755eaaf7e1d8a3fa94
MD5 5dcd1cafd3886ddb7d7af73410809017
BLAKE2b-256 2384021be57aac3c3b6bcc082be44c7eb88b1b4b18dc69723c606ad450ace9c4

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd130c3feca879ef80c5090aefcd0cd4f22da80040c82206de666ca5eb2ee5e3
MD5 464c1ad6d65846d6989c2dcd3c8bfb65
BLAKE2b-256 4331477378e23053ec4a108ba51d14c8ecf1190e811aeaa1236facfecda44d73

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce81f69a3dee0bf73470bac31c8bcc29d05b981874b84c46e5599374b9f20d4f
MD5 221af6385caeb681665ea19bfef63aa3
BLAKE2b-256 db1dbe823d8f9f294cf20704e963ad2829e202f04598aec5c2d7f1fea3680423

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18e6fa0a2ca80d6d3ce7dae158eb85ae3d784583aed22b064ffebca592be5e46
MD5 5041d0e735afc0d27923a380f028e500
BLAKE2b-256 a3bceb3d6660246cc366fc859a32d30dad5665badfe88e791d68937ace1a9dc8

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a36f56c921536abcfdb560cbc02dca9fc637c48e58585699105e5ea8c6f558bc
MD5 85a0f5772e88af1e0eb75ff7b44b9d6e
BLAKE2b-256 10ad484c2495921acc2c2bf57bb3048353f916d3be19a8533e0d22f0bf7c780b

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9df42a1bc3f244ed219529c668d4b42e24243114bcb120229ebb7c44a829c648
MD5 e3563860c8273fd92b81699c699b849a
BLAKE2b-256 bcad38b8e81a26bc4f4d479d086d554cbaa8c540e6963e7714c45bfd37685e37

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0b3b8897ed14f338310a998a86d7671004bbe27dcd99451f2f9d73e0f04d110
MD5 8d6dc2793b041c10da0ad59829abec5a
BLAKE2b-256 e6bf0b294702bb635e1a9d091569fdd651a32724cf69a87a3d5774fbacd634a6

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5447f1c9b133abbcc97b87c5d29825567b76384088783b6171eefbca120e44ca
MD5 5337e8d68550768ada904065e29f75c0
BLAKE2b-256 a789edce979bad71df3b6c224910149c7692d9e40e18a42e6879161eab8142b8

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 396094d4875fcb30a573c71b6e8f44260ed89cf4e957769c50e84f453827d96d
MD5 51139175af797d91248595ba597679b3
BLAKE2b-256 e0964337732f8c5164ff0b372321895de55d843d66eef161a1d33746412f3e33

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 17d8aa6575d0b81fffc4b05a97f5ffe79a2dac585689517c9410b6ce4678981a
MD5 b25112ed90660716fed1509ae645b4b2
BLAKE2b-256 02fedaa1efe7bf2e3995974acd6b046b26fba1b71663cb692da3584321e626bc

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f81c2f643b2e09a09119554a5f9d60f40a70320b6519e9a6634ae93d05c01c0f
MD5 36ff99d179e4cf8c93ebb90a228e9438
BLAKE2b-256 9d4a7bcee285574bb4a09291831249252271ead634a4a41411b3abaa721d2cbb

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70511edd3be6d2537f47527762f44e9aeaf0d135cb78b2ba7a0d7e283baaaa01
MD5 7b2432554ea4bd406a7a718c170f0631
BLAKE2b-256 39848eb48a627656a5d138f17dcbc8924a0cdd6f7b60fb7f3bb630014a0f1497

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa5d8a290fe66a40582d0034c1ab6c8934231474f9361641f1206585716994fc
MD5 e2db531a65f71995f53ca2a241b90763
BLAKE2b-256 87e312286c5d7c49168b36380a19327a202bef9115d964bdb9d0f0aee13c9760

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba438330d8017016f0bb74d81d504bf9c5ab58211cbc35e71695cbf6858fca4b
MD5 050ed4b3ae14380dd2f4901598042fe8
BLAKE2b-256 7b785a5e0e24dd9ef4178e363e6fa1fc5a82bd71c965f5c8bbc5b27e5ee4528f

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b24c4d5c8eb12f09955e10566c9d2b372eb869060aca9999bd2e38770129eb7e
MD5 7a463ecee79039fe07d4d9d38310f153
BLAKE2b-256 ff14d0e8dcffdf841813cd7a0ca402e59921a51423fe900c394bd19db166e4aa

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a41cc69686450b7402a2e87703389cc9d6738a9658781ddb9acf7b52fea068f7
MD5 c9ea695a860f420c60a9ba5025cd4111
BLAKE2b-256 a48776c7f89447a52c96ad89de6085cfe36e5dfed52bf47806855e1491165018

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5e6c400186d8ec37365e9b22f322bb98d70aff0798da7377b2580f9169358a40
MD5 5cb5a707f9dc6e40b3497fe1e9925111
BLAKE2b-256 66c5f68789fcd790e14c94884895e50742b8971befa537beada487ef23bfde0e

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 171191fbc41b541012f5bd18efb3b1434c789f4eedb664332178715b70377372
MD5 0314d5d027b2c370da4475874459246c
BLAKE2b-256 cb8860d6ec0ac1c7be873147124084fda5fe85b7fa083e8b2dacfc123ac0954d

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0f808d12233fe92de881e4d232c0acd52f0123804bcd6d711db3a46b5e09ecf6
MD5 5c2e76f6326947bab4b283239e3b0a15
BLAKE2b-256 f7adf7495bf8162e96be67d142178ba464efcf6aa66cad78191b027abe42ccf2

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5eded4811f4a6d5a12ee5eed3c0b95312b0644ca504966043fdcc2f20637d7d5
MD5 a4d7ec24d6d5d8754111c9354f3c946d
BLAKE2b-256 8133a705c39e89b7ca7564b90c1a4ab4d4c2c0534cde911191d87a89b87b6c60

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2d088af4711241bc24d858d2fd54854f0a7a969e9890b6dea5512be28d3f83a
MD5 5d557c299236658ed1d60007af071d68
BLAKE2b-256 d472dbf13dd57a08d75ccf7feed83ea40d5e5a755344923ff5cc030986c7adde

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a194b7d63073ebf8bdc2a1c76451bbbf6b1d31191d2d04b02b14335df5523840
MD5 073c29b93e2739b0fb43801de29b2f3e
BLAKE2b-256 b4b77023e6fc7ae4e4247748531a971d0add8ae3308f1cdb3f5c60081ed0f440

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da1be0b5281f77e79009cf535a218892c24d87483a7a21a7f85d113c6e1da466
MD5 3fb681d85656340702d14ba58302e107
BLAKE2b-256 b6a00963f4440286fe17a47d9659baf3d7a6c43b9d71e0d7f15735b8c4c282f3

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ce7889e03ba7550099127ffc9b27f1c799c75cdf3698ea3a60e86dadff4bea4
MD5 2c96dee19855aafc1fb517462e0698c4
BLAKE2b-256 a9da16f83e0ebc5634e9b82d450302cab11d68c30c0b9ff7bdf093fabe44eb46

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f19f128b00b81b3e50f1e6fc6e177e0976e5d9b8ec24c047b68ae6e8118db309
MD5 bafd556d1d3947a6d34344011cccc296
BLAKE2b-256 6fefd56ef73599afc1e28716b51d4f2c2f327be642876a244441fa74e9b9664f

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd10370deebd340da20d94f7d5af70b7c17b78c90f8f98a0e11cbb45232d754c
MD5 ec9268c110390ffa6acb0f94c3b7fd4c
BLAKE2b-256 ed93b736ce8ea7cbc0ec35347df029b2d87bbb29d19b527c6746e5fcca85ed33

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6f79cf808f92f7c910a1922bdba4d4c711dda0ce7aff0cb8503c47c277c99d06
MD5 4e25c0d23f57606c47efffc353dad0d6
BLAKE2b-256 fa00fc538fa42273916c7292c0090ff271a680441eb1bbd680cd11132a8a9d28

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ddd7b1e40695fe4d3c42879ea91a96ea8552c757250109ddd80b8270ad49baa3
MD5 13be0045df57f816c0d2bbdc79c821b4
BLAKE2b-256 c6b2b0f85c0731dc2360c1817532268517d4f0f866ea6356a016906fabcad210

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e27c7c561db5ba1df87466003b6a76c88698efde2300cbfff62902d2a749f26
MD5 92c5f810da6de4daba034920f0439eef
BLAKE2b-256 e4391dbaa141a189e27a3aad2153b2d473a9513a814010ebecae216c60502e04

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34b9540f4ec63315902053bb328de6e367f1a3d6f42fcff4acf6ccd33b0f02f9
MD5 808567d6ee529bdf5bb34b26465ef4e8
BLAKE2b-256 e2924dc69a08e1afe407f0444ba50630cc7c345a99759d8c16901b5ae6b629eb

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7789695f100c6e60fead2c50277ad6d22b25b66b85ee091b5b7398a82ee98ea
MD5 e3e2c8babe519f7887451e637c6c0203
BLAKE2b-256 ec36895701e86b65efff16e77d63e155f81027e4d558f321cba42e70ba59671e

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6812ab2295f826c24e31e561e77a6044cdcb5841df685fb870d3dd573c0abec3
MD5 4bbb44e55c472cae33c974cfd099a145
BLAKE2b-256 b932da66de55a9a5b7c6180b11d896e19f3655de624f1669cf706f103e8ae25d

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90fa1ec45ec7afd0ecc523287c26858bc5e57ec8180880b9ae390460f65fe197
MD5 4f0d94679064fede47f2358438db9bf1
BLAKE2b-256 229893b749e8a84160a375810d7eb6615cced84973af419152ceaf5193133ca5

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ad0c52de878464242fee94f743879b9dfd5789ef612e022b54ec0f468c87f4ca
MD5 87cbea08e327e9764df8ee3da27d763b
BLAKE2b-256 08c89052f121d3749cb5319a025d82745e3eaed189de23cd01890e559733501e

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 89121579c5606ea9f5b9dee43edcad99f8e3bf14973127fdd564fd42931a01ac
MD5 79a510ccaeb5a9f1ca0db03dfd2a8c8d
BLAKE2b-256 d0ea3564a08916e3e00cddaffd0f6663af9c511c801f06b521b53905e96db15a

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 974af1b3a27a7b015571600ca941c9d2b127d23b47bb02039c56063b30c34431
MD5 7d5922922a9ed183d354a23df576c35b
BLAKE2b-256 f8a6f2c53a0dd7b068530598dd252d624dd2f0466a8c0a8e0b6aa9df6c024412

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b07fcb7a1269807289ac42917d18ad4b6e25385428293d9f972fb4bd2f0240a9
MD5 b7ff90a08e11f44cd45346b79d07f125
BLAKE2b-256 91cb34ad7b7b307aa01d896e1775bffd3f82450c97aa4a42fb8a4bd6a80d3556

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32298550400afe008bf5071975bfdeef051db6d266aa6c0b5cd9db86c87091a8
MD5 1cd4e9bdefb6aa88eb9159e1952a3c34
BLAKE2b-256 1207c692b01634bb097de65c03542e22d501987b9931feb9a0814c22a0e2bcfa

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 033d0cbbdb7d30775c895be0b8625854f0bc53c1b0bd43b382bc37d165a85072
MD5 6de5f6b935bd4cb104e818f406e071fa
BLAKE2b-256 f59ae4a9fd483e786c2bf44dc860eaf5e64e1d76d855f8e8a258c45b2c51a5d0

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ab0c4a6c26558daf7bf8a125ae9f46226557dbdb9bf185ff8824960dea9e3c23
MD5 97cbdb86f2e0d63e41f44c6c99271c14
BLAKE2b-256 f75c454bc2fc84aafa29a95075c67a09fa8648ddcd899788b0076fe210bba6b8

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 749d5293531d10ed6f9f7055d37dded2294c849371904bf3a4dc93c544bd8b29
MD5 09cf3ca59f04707076230ecb84f0d533
BLAKE2b-256 553c2e5368f1b16021713426459ab56e642ad1b0cecefd1e78ed5856c924939e

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd76c4c39fde29d8d8a0a79d63c15cd698d79a6cd21350f27a55c5f700ae37a0
MD5 858b40d533d7ee646b4753a485bb99fb
BLAKE2b-256 c04892fef72fc233355bbbcbafaa7f6b18ad82b5bb4436b98051ab976213a0c2

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e783e06f04bd2f35432c5735bee70ba0a1fd7bf33628c598ad865fa6a7d80fd1
MD5 5061fffdafc34459eb4547b447c984b6
BLAKE2b-256 7d2034279583201d7b1437eab8a2e63ff5a4be2f71a13bdad72b8e004ce70d19

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d27de578ef1e50d6bea5119abbf9056179f9ba799233a93632097485962882f4
MD5 c5c7392413d3894069ec61c3e04e2b72
BLAKE2b-256 bef90420762b54239c7968471339ca64a1c95ca7bc2a8f81816db96ee6b52b6f

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 283cdc978ca2149a77d92433ff15da4cb471924642a6c0add16c13f4afb9b4af
MD5 d0ec925a3959997b566720f542af9f8f
BLAKE2b-256 30920b31bbc3dfaf2888a4e6e7f4bae49f747a8d033f6673634041d85f43aff5

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5de8d35909c9a2186307a340525e67ebc5f84f808db6d67676a4d5ce134e0bfc
MD5 5f81e24de638afa6f1708b489f6de074
BLAKE2b-256 52116bc4d655bb8a50c47e7149dd2398f0bd5d19f0d81b7ae700921607c9b674

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7196a7a27c14f0b7a26beaf78bde6de7a2999d18a5ced74b55c01d6b85c54eef
MD5 1061aaf948ef3f9aa1725aa50f7d69c6
BLAKE2b-256 55d7f0557a711fb4f1df00ffa816cd9e36696597cc9c753388addc99fc556451

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fe6ae7c65825042f9db03ff1edb8b93b50db68d40b3eaa9340d22eb4f9d1e7d
MD5 5a52d9ea1f0a86b5879b67b3b538e356
BLAKE2b-256 abfa5d3002aa46d9a4e00af461a183a7b17e225c8b04381a8e31cf5416fb4a20

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d350349ea9024476b146134da40fb2696ce53827a6e7681cd11a3f4413bb53bc
MD5 39957d2b39b57a9c86b6ee3e4a82c228
BLAKE2b-256 bfdf5804161d2213c8202ae179d145e60560963881a42cd90678512c2e7bd60a

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1398d438bb718adc4b04828c2f790dd195db14b529533a7daf6fc60572231f04
MD5 cfd6265be924f5d1fd1e640e22af72e4
BLAKE2b-256 979c45411d2bbf15a3dbeaed487b1f1c357d4b4a923372315d97f6e7e726346a

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97d97a03165c2238147c76ff5d1fa4fd676721f1563407073a4ef00191beacc6
MD5 bd42f002f4e0721a56f1d4b9abcd5f5e
BLAKE2b-256 dcf4a902e68c967e625422f5a776340618cecd29b6b62c151ca873f83e3dfa26

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9d2eba1a31dfb8df5cc9ad42e9a8ead510f03314e5f09094f89cc164b82f47a4
MD5 75949a7d6e2a2996eddfb75bf34cfabf
BLAKE2b-256 04fbfef6755837154356a7e965c0844e36735ff24f4c29aac33f35fa08e5275d

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 998d7f4ad7bed4f879216bc658e738ca5f1a89a573f770914a16db5e26d160da
MD5 36d9408b49ade252d2ac156efed551c4
BLAKE2b-256 ae17eb94aaf0a3c8a8f9c34d95639ad8d45653e6ffd12d81ff887244098b405b

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d8bfaa533b92f7813c43bfb81ed0b418a939d808946aa6b160f8d29ba384a089
MD5 20d49acdf72be17a6845683d5bf0595a
BLAKE2b-256 5f14967222addb101ba64ca5dee2ed56b4cc6a35c62683e248ef2e69c65c9278

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fef6c9217e5fde444cec776aaf0d99b397dc59b6e379cdad86eb6c21c6844e8c
MD5 e00530d9e7b520bb1ddb6479dcf8c0d5
BLAKE2b-256 6087f28e9bb33510d8a578ef6b45b13f83d57ab65a9cba6a6f1c0a0b8e0ce9d2

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec258ee3ecbaae39293343c735218a4750d0230a3e56c1bc1a2c7710d555e16f
MD5 91b4b164333549f93726b9a83ec85776
BLAKE2b-256 488dcf7ec53fb9352169abfdafeb0bb95e3b8fd6b9ef85ff3b98018e68f74ecc

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8357587d56757582a1851a389159dd6234ba03af418119be0d43e18086538c8
MD5 92d8a0102bf2fb71d1201e233ae6021d
BLAKE2b-256 0dc70bd210ff7ad089ce36e8a491f47562cfedadd8f85b36b7aca3036e9524c5

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16cad2e3e81fd125f6ee00deb58afb5270b01f45db2a46e92701aa95d7fe2b50
MD5 5f2b68e93cc282c9b3f08de25bbd0647
BLAKE2b-256 d8932893d5f9751bc94f3db3b3b68fcac623cbed5ff93055a7551537467d3cb3

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 908b278fa3d38b3c01c5c0933523be23e6f5bfba649314864eb9a6262b407488
MD5 2018514e333c5e46b93c38706f579555
BLAKE2b-256 9c77bed228d34f6d5d6ce2842cbd3880ae4ac6c8c5acb81ba28ea16bf721ca3d

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6091daffd040575f4cd384346a71f130eddb0e0fe3be1b9c2bb412eb6dcc34c0
MD5 c40e60f034a42946e6cdbd5142082382
BLAKE2b-256 7329cce3218422bfd4d885b293076eaf6f149707608be3126677a449a633bf6d

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 05573988162fcb4d92966946561094bc9d8e73cdb6cd697473b12b234bf1a828
MD5 43cfc656b6265e15b9401a447cc9cb2e
BLAKE2b-256 b18b2a593c9ef33ea4af234a4fb8c94872a4cf62327ba36b679cf90a05a48c2e

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d14aaeb2ab67250e0b39e550b9554e97c3c92f4611590058d975556bc5f0408a
MD5 359197f8e7a281854ac12f7c84448eda
BLAKE2b-256 af1b1b34abd733598537fa5dd84dbf3eab600373a3875f4df223b85dcf8016d1

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d99c2d5735f48b4c80417322f9a36287d454e9dbdf683caa1f990f9a3b2cfb5c
MD5 faddfb735fcef9abc80f26b9c035ac15
BLAKE2b-256 1b4afab09128e6941d902f14875f93549b0742d26a1b514e0ba69140382b20d6

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0930c2adccd871ab7d39d4919d1cd5368556ea3bf7c96365e282125f22636692
MD5 979e89a46332adecd25f0e54851c5497
BLAKE2b-256 072bb4d0c97a70c6dadffb24dbe149145691face955f75bb98a99bc26658792d

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c23252578dd3be28e3e81b84702e2174e3b34da303128dc662d92fa217ee169
MD5 5d9a0447650b06d4743be590ed4d2bb2
BLAKE2b-256 7a690a604a60de82356f895172946d1ce3894f0eb0668f7d06dbe6e0360ae94b

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d99c42ed30a9b431633f729e24831ccc8a0d8c40b92789e72075197582424f84
MD5 413180915a49347163f7e778c1902024
BLAKE2b-256 927a11e69e1d8dbfbd227e9768236394d4cbdf7c2680633281bc6bd13d209cd5

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d705e5ae8cba8cfa6af28bda60a99d2f846752abc9dc4cdb5d2354e9a628008
MD5 e19adcf3df6c39bbd877ba347f31cec9
BLAKE2b-256 3978bd2a1427f7ac65bfadb555ac0dca6c21e95c2c01776c919b59a90effc288

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b150e1a3bf78e6680755902f1bb880caadd93a472ac460ebc0e6f55b3b31d78
MD5 6401d9dc31a1a00a7ac2cf96b0136c11
BLAKE2b-256 2269e1fea4a125c1c8c03029e08a391b4e637b72ca5ddc28bd45a3965fd525f6

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp36-cp36m-win_amd64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 da7ea1892ac51a1f96c1431ccfa0e9c99d6dda8a434c778a6da1ba12b2f5fa25
MD5 996afee2e5f2a3ec43be4e8af75ce763
BLAKE2b-256 95e50b1cb405272bb5c2aa475f1135e16d8e8dd1b703d86a68d73ad14bcfe627

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7b4b2a21af19d9034a31e2c990f5a572d00b5f5b758ef2cee0282e8545eba2ab
MD5 be3837c8c8d8e3fcfeb70ef312db7294
BLAKE2b-256 99c9225e8f0546292bdd99dfd32f0c19468509312eace86c355f5fc2db13d3db

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 600903f05ed0e2a70e557c30a629b6ba879d7eee259ae2d3cd27b907da09f139
MD5 9eb562e97ba2c8cbd50c80bab108a9e9
BLAKE2b-256 bc458624dc0785ea467a5ff93238f61ff412996157819040b9e5a4e235e07560

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 225495cc44f9f698456ccd325f105f2be206996fc743128de9e5afa866687879
MD5 510ecdaa208bcc9dc2b1b179cc3d7d0c
BLAKE2b-256 dc8243cf8186dfd0fb883d567721a0d261a26791bee99fa259737562d71cdeaa

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb649e25b7d5d594035dba3fb807ebc59d8dd433a434a8f5afa22c62f9deb0d0
MD5 f69cca3290c2ae34979ae7c9f106ce3b
BLAKE2b-256 d74f866b73d2c876dc37e2becde351b3f5695c717fa0d3d6fc81d67bcd3bbbb4

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 533dcb28107b255d8122268f2e76f0e1cbb1c1e437d522850cd67077fe36f16a
MD5 d27f53c17a5c2036d2cba8a898add51b
BLAKE2b-256 cc1abab00dc7f631f8ab6ac8e19d2c63791c811a4fc21cce1f6cd738a94bde7e

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f2e2ac15168c77a0a34bd1c1118ed85837cc3c922124e3bdc58f5a49ca3644d
MD5 37f0f9b4018cf7fdc5a20051debc48f6
BLAKE2b-256 2086fac2ca9179c52ec2113c87301a4914e4af09955f913e76a58996cf524a92

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.19-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for faust_cchardet-2.1.19-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 29f72f7ba7fb6a238e072596f0fc6731f770ddb415957ed951969236cab05e4c
MD5 4dbe418ed189c53a056988221c464be2
BLAKE2b-256 0fa331a0d19aba6f8e99267aac5c3e4f03b68401ad5dfc6e8818beda40efb660

See more details on using hashes here.

Supported by

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