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

Uploaded Source

Built Distributions

faust_cchardet-2.1.18-cp311-cp311-win_amd64.whl (110.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

faust_cchardet-2.1.18-cp311-cp311-musllinux_1_1_x86_64.whl (803.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

faust_cchardet-2.1.18-cp311-cp311-musllinux_1_1_i686.whl (850.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

faust_cchardet-2.1.18-cp311-cp311-musllinux_1_1_aarch64.whl (793.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (260.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (251.7 kB view details)

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

faust_cchardet-2.1.18-cp311-cp311-macosx_11_0_arm64.whl (124.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

faust_cchardet-2.1.18-cp311-cp311-macosx_10_9_x86_64.whl (124.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

faust_cchardet-2.1.18-cp310-cp310-win_amd64.whl (110.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

faust_cchardet-2.1.18-cp310-cp310-musllinux_1_1_x86_64.whl (802.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

faust_cchardet-2.1.18-cp310-cp310-musllinux_1_1_i686.whl (849.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

faust_cchardet-2.1.18-cp310-cp310-musllinux_1_1_aarch64.whl (793.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (259.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (250.8 kB view details)

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

faust_cchardet-2.1.18-cp310-cp310-macosx_11_0_arm64.whl (124.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

faust_cchardet-2.1.18-cp310-cp310-macosx_10_9_x86_64.whl (124.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

faust_cchardet-2.1.18-cp39-cp39-win_amd64.whl (110.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

faust_cchardet-2.1.18-cp39-cp39-musllinux_1_1_x86_64.whl (802.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

faust_cchardet-2.1.18-cp39-cp39-musllinux_1_1_i686.whl (849.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

faust_cchardet-2.1.18-cp39-cp39-musllinux_1_1_aarch64.whl (793.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (256.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (259.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (250.6 kB view details)

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

faust_cchardet-2.1.18-cp39-cp39-macosx_11_0_arm64.whl (124.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

faust_cchardet-2.1.18-cp39-cp39-macosx_10_9_x86_64.whl (124.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

faust_cchardet-2.1.18-cp38-cp38-win_amd64.whl (110.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

faust_cchardet-2.1.18-cp38-cp38-musllinux_1_1_x86_64.whl (803.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

faust_cchardet-2.1.18-cp38-cp38-musllinux_1_1_i686.whl (850.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

faust_cchardet-2.1.18-cp38-cp38-musllinux_1_1_aarch64.whl (794.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (258.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

faust_cchardet-2.1.18-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (260.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (252.0 kB view details)

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

faust_cchardet-2.1.18-cp38-cp38-macosx_11_0_arm64.whl (124.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

faust_cchardet-2.1.18-cp38-cp38-macosx_10_9_x86_64.whl (124.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

faust_cchardet-2.1.18-cp37-cp37m-win_amd64.whl (110.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

faust_cchardet-2.1.18-cp37-cp37m-musllinux_1_1_x86_64.whl (800.7 kB view details)

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

faust_cchardet-2.1.18-cp37-cp37m-musllinux_1_1_i686.whl (848.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

faust_cchardet-2.1.18-cp37-cp37m-musllinux_1_1_aarch64.whl (791.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (255.8 kB view details)

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

faust_cchardet-2.1.18-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (258.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (250.0 kB view details)

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

faust_cchardet-2.1.18-cp37-cp37m-macosx_10_9_x86_64.whl (124.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

faust_cchardet-2.1.18-cp36-cp36m-win_amd64.whl (115.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

faust_cchardet-2.1.18-cp36-cp36m-musllinux_1_1_x86_64.whl (801.8 kB view details)

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

faust_cchardet-2.1.18-cp36-cp36m-musllinux_1_1_i686.whl (849.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

faust_cchardet-2.1.18-cp36-cp36m-musllinux_1_1_aarch64.whl (792.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

faust_cchardet-2.1.18-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (257.2 kB view details)

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

faust_cchardet-2.1.18-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (259.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

faust_cchardet-2.1.18-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (250.9 kB view details)

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

faust_cchardet-2.1.18-cp36-cp36m-macosx_10_9_x86_64.whl (124.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for faust-cchardet-2.1.18.tar.gz
Algorithm Hash digest
SHA256 d374eecad23c68383e549c83e90b16788bde6b0354fd5ece4020b046df5a7c7e
MD5 7d02c2c7ab05ad30572685aec27021b3
BLAKE2b-256 1c601f89cf7896c820c6942d5de8ac628ba2232427050d2ba8ec7f5215dfb456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48bcb2bd854c5644273ab73dd5ec68d39f0ce35d7dff73a62e40dbd4c9a75a0f
MD5 b29d0aad0a624281e4eb63f366b2b8ce
BLAKE2b-256 77db19edd96fb386aef0ea1175f0bee0ec957651307ca82295fb389319bb566d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c3b3c4b116a93395a8b318eb3ce858f0918864f430d5364d344b33a27a7b2a8a
MD5 95c4bb37378efaaec03d53ad2cb540a1
BLAKE2b-256 5f8ace668383181288f617ffe6e9a6893fa7d988be966efe86c22594914e4952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b5b629158c0e0c02dd1e29f60ee680b3a76523458969564132525b63f9c32ae1
MD5 06591174e43aa422476b7c7a8630a08e
BLAKE2b-256 e9d030f1255ef91e0e2e2fc0ddac833340d480d15f043976735256c1b1386332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d9c1896abb3735a25703c7f4eba5215fc52630f22372c7755f6cc50e8eecd7d6
MD5 1db1a46e0406448cf2f8b4f99c130b9a
BLAKE2b-256 dc146ee4a625235693948a366e4219d6ef809cd640dec6b551a3efe7aa117f0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f71456780f3f047bcd048194565fb92274f788ae893f66f1e07229999ff1848c
MD5 40d5e64c84094dae858f99a894c1a81f
BLAKE2b-256 d2472c312efb939d78c267853b1d0529b794da55e8f2f35e8ebbc8185ae2eb0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ecab71c89b3f24e6a140829fa4c1b7f9a2cb9cb3e4fcfd5e47a7f63a22c2e860
MD5 a77d037980411b72d4fc8d62efd8073e
BLAKE2b-256 1ed7c3dc4f8ab11e3a6f237464b1b1df2f36490a91e14718f635b1d34670e098

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.18-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.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 94179454a5bf433dbe5822c2f159d80865ed558decbdb7a947b67447cf5675c7
MD5 5be140cd9f8f2bf5dcee528d6fd7a701
BLAKE2b-256 2589a2b073f86719a046c8a2f156be91811130e9bc57564302797dc8cf1898d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8cf986b2e1c07b777918e26472fd98f2843bdb5eb369e301b961c7ef3257ced
MD5 fb362e995c483aa86b76bf6e4956307f
BLAKE2b-256 79be78521468f58f29fb903efdb8a299197d732ec52ddf46b435c840334a735d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb62a62caabcaa9a534fd8918837895e9c7c82526acc8a2275f2638be15fa8cb
MD5 a16ec4c78264e027db4f33050d7385eb
BLAKE2b-256 aed3a8eaf2bacac688d649300010bd7e24dd20d62b0932e1b9b13a49405f719e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3aa61101c03701f051bce9e10145d8a9a4ed43e366e9bb8c059fcd8e3b55dc0a
MD5 74215edea16e54aecd87c11460ae7e5d
BLAKE2b-256 712b16fef1ce0f203dad4630504bedf53d1ad721a85c29382023026888c97db7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f72fb710faddf550d4083b027ec6a184267404c7d8cec056d837f2bbcefbdcab
MD5 4fd4f05e3fe8d4fe03df45d74ff2ab54
BLAKE2b-256 3f7da60cb5e849987540930d477fc743be3de131bbfa1795af168e8fa68f208a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a83e195e7a0e8336042041e95a77554540f33968a9946be96c74c8b403ed54c4
MD5 55d527fe32903a25bf6eeee843bd3939
BLAKE2b-256 69c0208b0af97844d427d74abbca9533b7e58b1fa90616c11159640b6aacef35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c05cec6fff567e3a192117b6c0fd6d95c52f072e739d36c0636a70f27a7855fb
MD5 cc1ce6509e80823c1e7c7b73ba2d53ec
BLAKE2b-256 9fd96f75c7e30dce3cfa48182292590845e931a8f42c3227aa52d59be5859556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b35e04d9a9d1ce42a4e4ecc4b89c3927bacc2f2cf46fa7f751fd5afd6061fea
MD5 2b0d3699bdf2659642e32a5f245f347d
BLAKE2b-256 5e008d1df1152079bd3d01edcca2a6878b636719be37482d605161cc5c6262d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2077a966136248fed078b1800f1b7bb67362134f4ee46be074e683170e383f10
MD5 7095af3560624c2710ddd72586ebe79c
BLAKE2b-256 ea3bdfb5c401291fc3c89b30a7246c8255a57661cb65ee34121409339ed7dd72

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.18-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.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4cab4d617e06e279156d49002d8e988debf39ffe4d3c55da7621d4b1ad5e66a7
MD5 1b5f507393da117d8a311b12f46b9887
BLAKE2b-256 2427bc2b3f222e50c306fa3bc06e0484a029c78e823451690813999067a18c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 175e17d106d903187bd65f0ba65ba6f35b2128bbc3a33ebae24f65870ac3931e
MD5 35b5de5f3500e2e80b005318d75e6b8d
BLAKE2b-256 a09895b77343367a365bb3b504ff9196a8f144015e3f6eaeea394b8082eb403c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a5444ac3a2edc47b6140e95f253db7870806456bc29307ff81df73767f0a01d
MD5 65bf0c670dea4db6c077b95e2e9b3b88
BLAKE2b-256 1f6ffd61799599c922b8e2b4ea70fe6a7aa85c0f04f377ae3ea3d55036967dc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 abe79a1e1c7a68b0905c7c0d872ba759e02dce142e6a735b1d0a4dc990a631cd
MD5 fac7dae05b7d567f01b9b1e70302c31e
BLAKE2b-256 b0ac18f27bc41b3995c02da8d3e8566b5306f609656d539ff73941b39f3e136a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aa7a8f5aa819dbe52d3c24cd0b1fed40ec5a2a33a8b68f04f2721599593c201c
MD5 ed29a9af81299656890c2c4c0e8ecd59
BLAKE2b-256 0efa53f83d6dd406d3a495e08e67a06f1a889a5f141c18922a51ba74e001623d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 53a0f37a084af23e6e2c3b3458f0bb28606f6272ede27cbc157be5e80705cca5
MD5 251a0e89d4dd45cbf7bdf814a07a1a35
BLAKE2b-256 e78374e3a24b77383e8295a2c65be335ad8f5e3defb50b8d4a691c71b4ef3bcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 80b1cf0cef666806a943afbc86fd06cfe935a1bd106a997057f9d1eabf7c0b66
MD5 75a2d9050151d5e546b6d7d0608c0467
BLAKE2b-256 7514e36fa5efac831506df90c6751e7fa7619b98d26629435483d10da9a06144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78b478c5c9e6b4055e563b83dd050123c5c7ef0ff17d7ce7e727ff0f7fea02ba
MD5 780b5bfb4b305248904c097c6ad151f2
BLAKE2b-256 d770a51cb969d0788b5839a80d2c68c82e48f9f693ad4480eda13264bdd834a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b92430d49b8f9cd524ddb768204fc39cfc90b7cf77252adfe6ccbfdb8c9e0c3e
MD5 88f8325f714e11f4270555c6bf8416af
BLAKE2b-256 c9a6884a77f9b8574ba541085ed0b68df194385e8ef9eec57a7556951d89a414

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.18-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.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3116ecfd42f53f5da446c385f5f0beaa3ce18adc3d251d71232b2754da81daaa
MD5 92d9d7058ae645be266aa82774819e13
BLAKE2b-256 528435ab881d2e5f64a7f66f3bf6232c781336ae5498c655ea2c14d018d9328b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0982ae31b3d46c3158509ec786cd430de7045aae61f31795583dbec0e7f4b26d
MD5 70e8e397f69affdf458828b678d53e97
BLAKE2b-256 0dff432cf9b9f4ef39277181fb23b5a275d88c62e21aab43595759358041efab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8349643d41d50fbf39815fc38e9c8a0aeb2c98674daa137fe4d33cdda8223aec
MD5 f7bf88228cfbc244c025b96652d0421f
BLAKE2b-256 0a7564b88eda65879537a23bbdfc6d0bf509cb34deadae12293b01e1a1400b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b76d650d1023812b71c369bcb3ae3728c4f55e2313298ddb63b85b6e2d2dbc26
MD5 345a5a8191802a54362e762c4cf64bf9
BLAKE2b-256 484d5f962c18a2ab728a2787650aaedb4768af2fb5ad650f4b2872167f867288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f8df4e3ce93cd5211ac720578e60bbab63d25dde23248d5ceaae45f46554942
MD5 e10dec594e70d56d0ad4b94268bf66dc
BLAKE2b-256 4800cc001eb147c27d935bd972afbcab0299609ad6b4802ab33d87dba9260e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5c7b8a42820a2923e0edc79c0f6c0511e21359165e7f39842f8810afb1bfe065
MD5 b612227b010db8a3b4e657fa2399a8ea
BLAKE2b-256 c120bdb1b67ecb829cc9e8e96677aa57e93bc449e6b4fdb6bdc431591f960757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 757f74a0d36ff956a1d6ab36932c528b8edb28ba6faa8142480338cc126c9a56
MD5 89b196d33b378c5fae230029c5eaa4a0
BLAKE2b-256 364e10fee96d8b368757d59f756ce1b3e78e18b9684c7d6652fe4fef22993cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6afdc31efb0b9c5aeea4e2c35e65194ccc837108ba7f9108f3d6371f33186c5
MD5 0cfbe54515249bd43848fbd4f332aae8
BLAKE2b-256 b75300f5af28d6dc873138bc0d9513ed0b28f31f32ed3fc898e51b3a09360a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccf2c2595189a11911a02da594e6068287ad23d3e9cb754c9ce24e2d43575da0
MD5 200c4c0a05a90d0892d30bcdd16c65d9
BLAKE2b-256 cd285ddb6684dd79f16f896b4a19f98f9198921995acbff9b4f2dc7a2d45f0d9

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.18-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.18-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c5dc522f98dd0e40b12e97af114a9f0f7848252ea08366b56da324f57cb52d5
MD5 d9783e622edc2cbade35d5e360fd4f74
BLAKE2b-256 83da25682dc2658450bff2530ba267a6f6ff5be159b7ca986a1e567bfede182b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 439f238a818ee3fd38169c8dd34fb52fb50ed4260382ad0eda2bdd80a791c7eb
MD5 a8cf046ca9df6c9b00f6ea228d435403
BLAKE2b-256 34c139579481f8a36dfa1f4e56bd7538a0dc9a8b8ef8cb2f46727df43159e272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5321da21c34c9f055a154a4395d0ab599914d8a3c5ff1b7c07fa62e25c7428d
MD5 94dab822bf406d8e5a1ca42f18aecf3c
BLAKE2b-256 80f4bae35f61ca7e54819751cd40b9938d7251b2a99a35ae4148c5044a00b8f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5afa23fe8dba344d99318715b0b97131dac77eec073b757afa6cf46c68acefad
MD5 095930e8575743d3cc2fc9cd80a650ef
BLAKE2b-256 588590c8d4c7ba0cfdfa5af79e8785ef393260b5b2740807eaa9031d42eefd6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ab91981e8a1b6e73deb22dd318d10f015d304710baf033d12b8e2f7ac8ec219
MD5 70dfe96c6813c8d770a64ed11fa585e5
BLAKE2b-256 136c8fa768bd1dc7e34d26fcf32ba5953b91634d344079bd5a8aaa5d6b4368ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ec8d4afa961bd9552ce822891b2e4f1071d2e0df3afb8577d4bc4c444d2d6d93
MD5 8d8f5cbb44f23d3e6b0962b62354e8a2
BLAKE2b-256 053d8eb6dac88e01e0aa9234fd3d36962a5d921106bf92c216b9af6d6980e0b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fea83fb69b3a9e9fd37ebdeb7cb575bae9f07f238e5532b4ef9c406b99e0dd20
MD5 e3e7c7579856c1b659f05db192c583af
BLAKE2b-256 209e037fbaae410a3446f746019e0f7dd033e85cd37f6e118a18804287387a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee12b427a23b36f24500d16a235a7fb1b601b4631e4470c5c7dc6dec6e88c103
MD5 bb8966e4781b201ae8b61ffd5973bea0
BLAKE2b-256 42ad5c6bc8f12eeeb562c5fac65a7d0658eac1962737ffc34c6a828851aac5cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f29c8328c5cd074f1afa253903a39a5340baa59ae9f49fbfad9c035f26d182d
MD5 fb2c7db144e37a208bb4a2b3dfb1e130
BLAKE2b-256 360e9e717d45a055ebc8f242f84e3da79ca5490bb4085e5eb3a3245d64b5a4e3

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.18-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.18-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83443540bcbcc67880a5b65f70d9864b6ceb6b51c20c4e1283f289ba013ec741
MD5 aafd4a1ee53e1c494dcc405bde05dfb4
BLAKE2b-256 f610a0a57e613d4cab9c9263753809b34035a7a5bec47a53bf71684cde1939fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 187c8b9f26ff72d8478c98acf940f8abd46078a0bea5ae0a365a13e5f3676dfc
MD5 258950b942da5b154fd96c02dc3c4d65
BLAKE2b-256 5acb1845ddaeb78e6566a5715d4f7b52d5f1e7b1fa6252204b77a6673774a746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5906cc7170c027511a50de44ec342c9656c24d918d1ddcc047e30932b07668d5
MD5 da6d40a57471b925a8a438384dd92c27
BLAKE2b-256 817ae51f1d5741a39f50fc8363b6979d1ce417c5be39e650629099970252ca4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 11872f36f76c0c7f3f3e04cdf487787eb61b5c8dbd1cbcb948e208155d254772
MD5 6b3a19084c600e58879b8a659582203a
BLAKE2b-256 146843e91fe652ceeb073d7a85736c0c4ace7e10584694ba51c9fb4ec0952df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 50e7ca83ae849d9e9dfeb1fb7f7e30734470156369c1a0146d775d7c721cb4bd
MD5 33569a85808fc195972b6511054f82bf
BLAKE2b-256 20bca9a68a2a612ac9fe5ed643a26575b3409e5c03376b7e6eec79fa8e5f9ae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 019411216573a57e5729b395007e54e8d941a76dc063f4b1dde4776b5c28344f
MD5 6e71350ddba454ef05126f84edc12393
BLAKE2b-256 f53de004cb57c856282b62c6fc350272198cfd1631280de713408e81d9871e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16ff97ce6bf32f73887494eeb528df78a7ed93c54f47710950a8f56e0d0cf8d0
MD5 5480d43ef76d5943e8cf00ab6c7d010e
BLAKE2b-256 b3b33a5eeef85e5a31429c9d76b9c4cb55b0765450b121bfdbae43e7116f8ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20e376251fe8ad6dfc8ccdeb7ecb9b49c3737d16b0aecca221cdd42e6ff27e36
MD5 99490f8b038130fd481a4333e9df7fb5
BLAKE2b-256 1b2f99af2932926dbcfea7bc8964b638fd5f68671368cb3dd3ac1f42566b87b6

See more details on using hashes here.

File details

Details for the file faust_cchardet-2.1.18-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.18-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d778683491145d6fde78eda78eef12a297f014f4c0dbdbda49996c414187dacc
MD5 e5cd16de9cf2c93de041e0afa11d62ab
BLAKE2b-256 81344138f3de54465cab2ca717023b22d139cac8624d0df0b2370428ddc47aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for faust_cchardet-2.1.18-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c1218cd7204234121358359f9f2b917b5af24fbb91dd0f8878df86b51290086
MD5 b48be2cffff23ecba381edb94f8e32c2
BLAKE2b-256 55813395ccfece42d4d5238d11bff825144e76fa3105f0427fea4003700e45de

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