faust-cchardet


Namefaust-cchardet JSON
Version 2.1.19 PyPI version JSON
download
home_pagehttps://github.com/faust-streaming/cChardet
SummarycChardet is high speed universal character encoding detector.
upload_time2023-08-09 16:34:28
maintainer
docs_urlNone
authorPyYoshi
requires_python
licenseMozilla Public License
keywords cython chardet charsetdetect
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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:

.. code-block:: bash

    pip install faust-cchardet


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

.. image:: https://badge.fury.io/py/faust-cchardet.svg
   :target: https://badge.fury.io/py/faust-cchardet
   :alt: PyPI version

.. image:: https://github.com/faust-streaming/cChardet/workflows/Build%20for%20Linux/badge.svg?branch=master
   :target: https://github.com/faust-streaming/cChardet/actions?query=workflow%3A%22Build+for+Linux%22
   :alt: Build for Linux

.. image:: https://github.com/faust-streaming/cChardet/workflows/Build%20for%20macOS/badge.svg?branch=master
   :target: https://github.com/faust-streaming/cChardet/actions?query=workflow%3A%22Build+for+macOS%22
   :alt: Build for macOS

.. image:: https://github.com/faust-streaming/cChardet/workflows/Build%20for%20windows/badge.svg?branch=master
   :target: https://github.com/faust-streaming/cChardet/actions?query=workflow%3A%22Build+for+windows%22
   :alt: 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
-------

.. code-block:: python

    # -*- 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
---------

.. code-block:: bash

    $ 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
-------

- `Issues`_


.. _uchardet: https://github.com/PyYoshi/uchardet
.. _Issues: https://github.com/PyYoshi/cChardet/issues?page=1&state=open

Platform
--------

Support
~~~~~~~

- Windows i686, x86_64
- Linux i686, x86_64
- macOS x86_64

Do not Support
~~~~~~~~~~~~~~

- `Anaconda`_
- `pyenv`_

.. _Anaconda: https://www.anaconda.com/
.. _pyenv: https://github.com/pyenv/pyenv

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

.. _LTO: https://gcc.gnu.org/wiki/LinkTimeOptimization

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)
------------------

- add cchardetect CLI script (`#30`_) `@craigds`_

.. _#30: https://github.com/PyYoshi/cChardet/pull/30
.. _@craigds: https://github.com/craigds

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`_)

.. _#28: https://github.com/PyYoshi/cChardet/issues/28
.. _#27: https://github.com/PyYoshi/cChardet/issues/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)
------------------

- Replace `uchardet-enhanced`_ to `uchardet`_
- Remove Detector class

.. _uchardet-enhanced: https://bitbucket.org/medoc/uchardet-enhanced/overview
.. _uchardet: https://github.com/PyYoshi/uchardet

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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/faust-streaming/cChardet",
    "name": "faust-cchardet",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "cython,chardet,charsetdetect",
    "author": "PyYoshi",
    "author_email": "myoshi321go@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e9/53/2125d17d7c2a14b76303bf5c3c5db35ea8e4b8a14817bb191c601d67e288/faust-cchardet-2.1.19.tar.gz",
    "platform": null,
    "description": "cChardet\n========\n\nNOTICE: This is a fork of the original project at https://github.com/PyYoshi/cChardet since\nthe original project is no longer maintained.\n\nTo install:\n\n.. code-block:: bash\n\n    pip install faust-cchardet\n\n\ncChardet is high speed universal character encoding detector. - binding to `uchardet`_.\n\n.. image:: https://badge.fury.io/py/faust-cchardet.svg\n   :target: https://badge.fury.io/py/faust-cchardet\n   :alt: PyPI version\n\n.. image:: https://github.com/faust-streaming/cChardet/workflows/Build%20for%20Linux/badge.svg?branch=master\n   :target: https://github.com/faust-streaming/cChardet/actions?query=workflow%3A%22Build+for+Linux%22\n   :alt: Build for Linux\n\n.. image:: https://github.com/faust-streaming/cChardet/workflows/Build%20for%20macOS/badge.svg?branch=master\n   :target: https://github.com/faust-streaming/cChardet/actions?query=workflow%3A%22Build+for+macOS%22\n   :alt: Build for macOS\n\n.. image:: https://github.com/faust-streaming/cChardet/workflows/Build%20for%20windows/badge.svg?branch=master\n   :target: https://github.com/faust-streaming/cChardet/actions?query=workflow%3A%22Build+for+windows%22\n   :alt: Build for Windows\n\nSupported Languages/Encodings\n-----------------------------\n\n-  International (Unicode)\n\n   -  UTF-8\n   -  UTF-16BE / UTF-16LE\n   -  UTF-32BE / UTF-32LE / X-ISO-10646-UCS-4-34121 /\n      X-ISO-10646-UCS-4-21431\n\n-  Arabic\n\n   -  ISO-8859-6\n   -  WINDOWS-1256\n\n-  Bulgarian\n\n   -  ISO-8859-5\n   -  WINDOWS-1251\n\n-  Chinese\n\n   -  ISO-2022-CN\n   -  BIG5\n   -  EUC-TW\n   -  GB18030\n   -  HZ-GB-2312\n\n-  Croatian:\n\n   -  ISO-8859-2\n   -  ISO-8859-13\n   -  ISO-8859-16\n   -  Windows-1250\n   -  IBM852\n   -  MAC-CENTRALEUROPE\n\n-  Czech\n\n   -  Windows-1250\n   -  ISO-8859-2\n   -  IBM852\n   -  MAC-CENTRALEUROPE\n\n-  Danish\n\n   -  ISO-8859-1\n   -  ISO-8859-15\n   -  WINDOWS-1252\n\n-  English\n\n   -  ASCII\n\n-  Esperanto\n\n   -  ISO-8859-3\n\n-  Estonian\n\n   -  ISO-8859-4\n   -  ISO-8859-13\n   -  ISO-8859-13\n   -  Windows-1252\n   -  Windows-1257\n\n-  Finnish\n\n   -  ISO-8859-1\n   -  ISO-8859-4\n   -  ISO-8859-9\n   -  ISO-8859-13\n   -  ISO-8859-15\n   -  WINDOWS-1252\n\n-  French\n\n   -  ISO-8859-1\n   -  ISO-8859-15\n   -  WINDOWS-1252\n\n-  German\n\n   -  ISO-8859-1\n   -  WINDOWS-1252\n\n-  Greek\n\n   -  ISO-8859-7\n   -  WINDOWS-1253\n\n-  Hebrew\n\n   -  ISO-8859-8\n   -  WINDOWS-1255\n\n-  Hungarian:\n\n   -  ISO-8859-2\n   -  WINDOWS-1250\n\n-  Irish Gaelic\n\n   -  ISO-8859-1\n   -  ISO-8859-9\n   -  ISO-8859-15\n   -  WINDOWS-1252\n\n-  Italian\n\n   -  ISO-8859-1\n   -  ISO-8859-3\n   -  ISO-8859-9\n   -  ISO-8859-15\n   -  WINDOWS-1252\n\n-  Japanese\n\n   -  ISO-2022-JP\n   -  SHIFT\\_JIS\n   -  EUC-JP\n\n-  Korean\n\n   -  ISO-2022-KR\n   -  EUC-KR / UHC\n\n-  Lithuanian\n\n   -  ISO-8859-4\n   -  ISO-8859-10\n   -  ISO-8859-13\n\n-  Latvian\n\n   -  ISO-8859-4\n   -  ISO-8859-10\n   -  ISO-8859-13\n\n-  Maltese\n\n   -  ISO-8859-3\n\n-  Polish:\n\n   -  ISO-8859-2\n   -  ISO-8859-13\n   -  ISO-8859-16\n   -  Windows-1250\n   -  IBM852\n   -  MAC-CENTRALEUROPE\n\n-  Portuguese\n\n   -  ISO-8859-1\n   -  ISO-8859-9\n   -  ISO-8859-15\n   -  WINDOWS-1252\n\n-  Romanian:\n\n   -  ISO-8859-2\n   -  ISO-8859-16\n   -  Windows-1250\n   -  IBM852\n\n-  Russian\n\n   -  ISO-8859-5\n   -  KOI8-R\n   -  WINDOWS-1251\n   -  MAC-CYRILLIC\n   -  IBM866\n   -  IBM855\n\n-  Slovak\n\n   -  Windows-1250\n   -  ISO-8859-2\n   -  IBM852\n   -  MAC-CENTRALEUROPE\n\n-  Slovene\n\n   -  ISO-8859-2\n   -  ISO-8859-16\n   -  Windows-1250\n   -  IBM852\n   -  M\n\nExample\n-------\n\n.. code-block:: python\n\n    # -*- coding: utf-8 -*-\n    import cchardet as chardet\n    with open(r\"src/tests/samples/wikipediaJa_One_Thousand_and_One_Nights_SJIS.txt\", \"rb\") as f:\n        msg = f.read()\n        result = chardet.detect(msg)\n        print(result)\n\nBenchmark\n---------\n\n.. code-block:: bash\n\n    $ cd src/\n    $ pip install chardet\n    $ python tests/bench.py\n\n\nResults\n~~~~~~~\n\nCPU: Intel(R) Core(TM) i7-9700K CPU @ 3.60GHz\n\nRAM: DDR4-3200 64GB\n\nPlatform: Ubuntu 20.04 amd64\n\nPython 3.9.0\n^^^^^^^^^^^^\n\n+-----------------+------------------+\n|                 | Request (call/s) |\n+=================+==================+\n| chardet v3.0.4  |       0.46       |\n+-----------------+------------------+\n| cchardet v2.1.7 |     1404.05      |\n+-----------------+------------------+\n\n\nLICENSE\n-------\n\nSee **COPYING** file.\n\nContact\n-------\n\n- `Issues`_\n\n\n.. _uchardet: https://github.com/PyYoshi/uchardet\n.. _Issues: https://github.com/PyYoshi/cChardet/issues?page=1&state=open\n\nPlatform\n--------\n\nSupport\n~~~~~~~\n\n- Windows i686, x86_64\n- Linux i686, x86_64\n- macOS x86_64\n\nDo not Support\n~~~~~~~~~~~~~~\n\n- `Anaconda`_\n- `pyenv`_\n\n.. _Anaconda: https://www.anaconda.com/\n.. _pyenv: https://github.com/pyenv/pyenv\n\nCHANGES\n=======\n\n2.x.x\n-----\n\n\n\n2.1.7 (2020-10-27)\n------------------\n\n- support Python 3.9\n- drop support for Python 3.5\n\n2.1.6 (2020-03-17)\n------------------\n\n- drop support for Python 2.7\n- support Github Actions\n- update dev-dependencies\n\n2.1.5 (2019-09-27)\n------------------\n\n- update language models (uchardet)\n- add iso8859-2 test but disabled it\n- support Python 3.8\n- drop support for Python 3.4\n\n2.1.4 (2018-09-27)\n------------------\n\n- disable LTO because become poor performance\n\n2.1.3 (2018-09-26)\n------------------\n\n- support Python 3.7\n\n2.1.2 (2018-09-26)\n------------------\n\n- enable `LTO`_ for wheel builds\n- update Cython\n\n.. _LTO: https://gcc.gnu.org/wiki/LinkTimeOptimization\n\n2.1.1 (2017-07-01)\n------------------\n\n- fix that different results with different chuck sizes\n- fix that assignments to nsSMState in nsCodingStateMachine result in unspecified behavior\n- include COPYING in package\n\n2.1.0 (2017-05-15)\n------------------\n\n- add cchardetect CLI script (`#30`_) `@craigds`_\n\n.. _#30: https://github.com/PyYoshi/cChardet/pull/30\n.. _@craigds: https://github.com/craigds\n\n2.0.1 (2017-04-25)\n------------------\n\n- fix an issue where UTF-8 with a BOM would not be detected as UTF-8-SIG (fix `#28`_)\n- pass NULL Byte to feed() / detect() (fix `#27`_)\n\n.. _#28: https://github.com/PyYoshi/cChardet/issues/28\n.. _#27: https://github.com/PyYoshi/cChardet/issues/27\n\n2.0.0 (2017-04-06)\n------------------\n\n- Improve tests\n\n2.0a4 (2017-04-05)\n------------------\n\n- Update uchardet repo (Fix buffer overflow)\n\n2.0a3 (2017-03-29)\n------------------\n\n- Implement UniversalDetector (like chardet)\n\n2.0a2 (2017-03-28)\n------------------\n\n- Update uchardet repo (Fix memory leak)\n\n2.0a1 (2017-03-28)\n------------------\n\n- Replace `uchardet-enhanced`_ to `uchardet`_\n- Remove Detector class\n\n.. _uchardet-enhanced: https://bitbucket.org/medoc/uchardet-enhanced/overview\n.. _uchardet: https://github.com/PyYoshi/uchardet\n\n1.1.3 (2017-02-26)\n------------------\n\n- Support AArch64\n\n1.1.2 (2017-01-08)\n------------------\n\n- Support Python 3.6\n\n1.1.1 (2016-11-05)\n------------------\n\n- Use len() function (9e61cb9e96b138b0d18e5f9e013e144202ae4067)\n\n- Remove detect function in _cchardet.pyx (25b581294fc0ae8f686ac9972c8549666766f695)\n\n- Support manylinux1 wheel\n\n1.1.0 (2016-10-17)\n------------------\n\n- Add Detector class\n\n- Improve unit tests\n",
    "bugtrack_url": null,
    "license": "Mozilla Public License",
    "summary": "cChardet is high speed universal character encoding detector.",
    "version": "2.1.19",
    "project_urls": {
        "Homepage": "https://github.com/faust-streaming/cChardet"
    },
    "split_keywords": [
        "cython",
        "chardet",
        "charsetdetect"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c04892fef72fc233355bbbcbafaa7f6b18ad82b5bb4436b98051ab976213a0c2",
                "md5": "858b40d533d7ee646b4753a485bb99fb",
                "sha256": "fd76c4c39fde29d8d8a0a79d63c15cd698d79a6cd21350f27a55c5f700ae37a0"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "858b40d533d7ee646b4753a485bb99fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 133986,
            "upload_time": "2023-08-09T16:32:31",
            "upload_time_iso_8601": "2023-08-09T16:32:31.489179Z",
            "url": "https://files.pythonhosted.org/packages/c0/48/92fef72fc233355bbbcbafaa7f6b18ad82b5bb4436b98051ab976213a0c2/faust_cchardet-2.1.19-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "553c2e5368f1b16021713426459ab56e642ad1b0cecefd1e78ed5856c924939e",
                "md5": "09cf3ca59f04707076230ecb84f0d533",
                "sha256": "749d5293531d10ed6f9f7055d37dded2294c849371904bf3a4dc93c544bd8b29"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "09cf3ca59f04707076230ecb84f0d533",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 134066,
            "upload_time": "2023-08-09T16:32:32",
            "upload_time_iso_8601": "2023-08-09T16:32:32.937189Z",
            "url": "https://files.pythonhosted.org/packages/55/3c/2e5368f1b16021713426459ab56e642ad1b0cecefd1e78ed5856c924939e/faust_cchardet-2.1.19-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f59ae4a9fd483e786c2bf44dc860eaf5e64e1d76d855f8e8a258c45b2c51a5d0",
                "md5": "6de5f6b935bd4cb104e818f406e071fa",
                "sha256": "033d0cbbdb7d30775c895be0b8625854f0bc53c1b0bd43b382bc37d165a85072"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6de5f6b935bd4cb104e818f406e071fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 304035,
            "upload_time": "2023-08-09T16:32:34",
            "upload_time_iso_8601": "2023-08-09T16:32:34.303463Z",
            "url": "https://files.pythonhosted.org/packages/f5/9a/e4a9fd483e786c2bf44dc860eaf5e64e1d76d855f8e8a258c45b2c51a5d0/faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1207c692b01634bb097de65c03542e22d501987b9931feb9a0814c22a0e2bcfa",
                "md5": "1cd4e9bdefb6aa88eb9159e1952a3c34",
                "sha256": "32298550400afe008bf5071975bfdeef051db6d266aa6c0b5cd9db86c87091a8"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1cd4e9bdefb6aa88eb9159e1952a3c34",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 301991,
            "upload_time": "2023-08-09T16:32:35",
            "upload_time_iso_8601": "2023-08-09T16:32:35.651654Z",
            "url": "https://files.pythonhosted.org/packages/12/07/c692b01634bb097de65c03542e22d501987b9931feb9a0814c22a0e2bcfa/faust_cchardet-2.1.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f75c454bc2fc84aafa29a95075c67a09fa8648ddcd899788b0076fe210bba6b8",
                "md5": "97cbdb86f2e0d63e41f44c6c99271c14",
                "sha256": "ab0c4a6c26558daf7bf8a125ae9f46226557dbdb9bf185ff8824960dea9e3c23"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "97cbdb86f2e0d63e41f44c6c99271c14",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 292363,
            "upload_time": "2023-08-09T16:32:36",
            "upload_time_iso_8601": "2023-08-09T16:32:36.967463Z",
            "url": "https://files.pythonhosted.org/packages/f7/5c/454bc2fc84aafa29a95075c67a09fa8648ddcd899788b0076fe210bba6b8/faust_cchardet-2.1.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "91cb34ad7b7b307aa01d896e1775bffd3f82450c97aa4a42fb8a4bd6a80d3556",
                "md5": "b7ff90a08e11f44cd45346b79d07f125",
                "sha256": "b07fcb7a1269807289ac42917d18ad4b6e25385428293d9f972fb4bd2f0240a9"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b7ff90a08e11f44cd45346b79d07f125",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 839387,
            "upload_time": "2023-08-09T16:32:38",
            "upload_time_iso_8601": "2023-08-09T16:32:38.498074Z",
            "url": "https://files.pythonhosted.org/packages/91/cb/34ad7b7b307aa01d896e1775bffd3f82450c97aa4a42fb8a4bd6a80d3556/faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8a6f2c53a0dd7b068530598dd252d624dd2f0466a8c0a8e0b6aa9df6c024412",
                "md5": "7d5922922a9ed183d354a23df576c35b",
                "sha256": "974af1b3a27a7b015571600ca941c9d2b127d23b47bb02039c56063b30c34431"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "7d5922922a9ed183d354a23df576c35b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 890662,
            "upload_time": "2023-08-09T16:32:40",
            "upload_time_iso_8601": "2023-08-09T16:32:40.428639Z",
            "url": "https://files.pythonhosted.org/packages/f8/a6/f2c53a0dd7b068530598dd252d624dd2f0466a8c0a8e0b6aa9df6c024412/faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0ea3564a08916e3e00cddaffd0f6663af9c511c801f06b521b53905e96db15a",
                "md5": "79a510ccaeb5a9f1ca0db03dfd2a8c8d",
                "sha256": "89121579c5606ea9f5b9dee43edcad99f8e3bf14973127fdd564fd42931a01ac"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79a510ccaeb5a9f1ca0db03dfd2a8c8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 847913,
            "upload_time": "2023-08-09T16:32:41",
            "upload_time_iso_8601": "2023-08-09T16:32:41.915465Z",
            "url": "https://files.pythonhosted.org/packages/d0/ea/3564a08916e3e00cddaffd0f6663af9c511c801f06b521b53905e96db15a/faust_cchardet-2.1.19-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08c89052f121d3749cb5319a025d82745e3eaed189de23cd01890e559733501e",
                "md5": "87cbea08e327e9764df8ee3da27d763b",
                "sha256": "ad0c52de878464242fee94f743879b9dfd5789ef612e022b54ec0f468c87f4ca"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "87cbea08e327e9764df8ee3da27d763b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 118641,
            "upload_time": "2023-08-09T16:32:43",
            "upload_time_iso_8601": "2023-08-09T16:32:43.166195Z",
            "url": "https://files.pythonhosted.org/packages/08/c8/9052f121d3749cb5319a025d82745e3eaed189de23cd01890e559733501e/faust_cchardet-2.1.19-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "229893b749e8a84160a375810d7eb6615cced84973af419152ceaf5193133ca5",
                "md5": "4f0d94679064fede47f2358438db9bf1",
                "sha256": "90fa1ec45ec7afd0ecc523287c26858bc5e57ec8180880b9ae390460f65fe197"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4f0d94679064fede47f2358438db9bf1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 134745,
            "upload_time": "2023-08-09T16:32:44",
            "upload_time_iso_8601": "2023-08-09T16:32:44.202555Z",
            "url": "https://files.pythonhosted.org/packages/22/98/93b749e8a84160a375810d7eb6615cced84973af419152ceaf5193133ca5/faust_cchardet-2.1.19-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b932da66de55a9a5b7c6180b11d896e19f3655de624f1669cf706f103e8ae25d",
                "md5": "4bbb44e55c472cae33c974cfd099a145",
                "sha256": "6812ab2295f826c24e31e561e77a6044cdcb5841df685fb870d3dd573c0abec3"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4bbb44e55c472cae33c974cfd099a145",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 134647,
            "upload_time": "2023-08-09T16:32:45",
            "upload_time_iso_8601": "2023-08-09T16:32:45.275814Z",
            "url": "https://files.pythonhosted.org/packages/b9/32/da66de55a9a5b7c6180b11d896e19f3655de624f1669cf706f103e8ae25d/faust_cchardet-2.1.19-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2924dc69a08e1afe407f0444ba50630cc7c345a99759d8c16901b5ae6b629eb",
                "md5": "808567d6ee529bdf5bb34b26465ef4e8",
                "sha256": "34b9540f4ec63315902053bb328de6e367f1a3d6f42fcff4acf6ccd33b0f02f9"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "808567d6ee529bdf5bb34b26465ef4e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 315504,
            "upload_time": "2023-08-09T16:32:46",
            "upload_time_iso_8601": "2023-08-09T16:32:46.549289Z",
            "url": "https://files.pythonhosted.org/packages/e2/92/4dc69a08e1afe407f0444ba50630cc7c345a99759d8c16901b5ae6b629eb/faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4391dbaa141a189e27a3aad2153b2d473a9513a814010ebecae216c60502e04",
                "md5": "92c5f810da6de4daba034920f0439eef",
                "sha256": "9e27c7c561db5ba1df87466003b6a76c88698efde2300cbfff62902d2a749f26"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "92c5f810da6de4daba034920f0439eef",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 313151,
            "upload_time": "2023-08-09T16:32:48",
            "upload_time_iso_8601": "2023-08-09T16:32:48.023660Z",
            "url": "https://files.pythonhosted.org/packages/e4/39/1dbaa141a189e27a3aad2153b2d473a9513a814010ebecae216c60502e04/faust_cchardet-2.1.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ec36895701e86b65efff16e77d63e155f81027e4d558f321cba42e70ba59671e",
                "md5": "e3e2c8babe519f7887451e637c6c0203",
                "sha256": "c7789695f100c6e60fead2c50277ad6d22b25b66b85ee091b5b7398a82ee98ea"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e3e2c8babe519f7887451e637c6c0203",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 302726,
            "upload_time": "2023-08-09T16:32:49",
            "upload_time_iso_8601": "2023-08-09T16:32:49.299502Z",
            "url": "https://files.pythonhosted.org/packages/ec/36/895701e86b65efff16e77d63e155f81027e4d558f321cba42e70ba59671e/faust_cchardet-2.1.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c6b2b0f85c0731dc2360c1817532268517d4f0f866ea6356a016906fabcad210",
                "md5": "13be0045df57f816c0d2bbdc79c821b4",
                "sha256": "ddd7b1e40695fe4d3c42879ea91a96ea8552c757250109ddd80b8270ad49baa3"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "13be0045df57f816c0d2bbdc79c821b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 849331,
            "upload_time": "2023-08-09T16:32:50",
            "upload_time_iso_8601": "2023-08-09T16:32:50.928944Z",
            "url": "https://files.pythonhosted.org/packages/c6/b2/b0f85c0731dc2360c1817532268517d4f0f866ea6356a016906fabcad210/faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa00fc538fa42273916c7292c0090ff271a680441eb1bbd680cd11132a8a9d28",
                "md5": "4e25c0d23f57606c47efffc353dad0d6",
                "sha256": "6f79cf808f92f7c910a1922bdba4d4c711dda0ce7aff0cb8503c47c277c99d06"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "4e25c0d23f57606c47efffc353dad0d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 899604,
            "upload_time": "2023-08-09T16:32:52",
            "upload_time_iso_8601": "2023-08-09T16:32:52.243860Z",
            "url": "https://files.pythonhosted.org/packages/fa/00/fc538fa42273916c7292c0090ff271a680441eb1bbd680cd11132a8a9d28/faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed93b736ce8ea7cbc0ec35347df029b2d87bbb29d19b527c6746e5fcca85ed33",
                "md5": "ec9268c110390ffa6acb0f94c3b7fd4c",
                "sha256": "cd10370deebd340da20d94f7d5af70b7c17b78c90f8f98a0e11cbb45232d754c"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec9268c110390ffa6acb0f94c3b7fd4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 857892,
            "upload_time": "2023-08-09T16:32:54",
            "upload_time_iso_8601": "2023-08-09T16:32:54.047224Z",
            "url": "https://files.pythonhosted.org/packages/ed/93/b736ce8ea7cbc0ec35347df029b2d87bbb29d19b527c6746e5fcca85ed33/faust_cchardet-2.1.19-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6fefd56ef73599afc1e28716b51d4f2c2f327be642876a244441fa74e9b9664f",
                "md5": "bafd556d1d3947a6d34344011cccc296",
                "sha256": "f19f128b00b81b3e50f1e6fc6e177e0976e5d9b8ec24c047b68ae6e8118db309"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bafd556d1d3947a6d34344011cccc296",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 119172,
            "upload_time": "2023-08-09T16:32:55",
            "upload_time_iso_8601": "2023-08-09T16:32:55.867467Z",
            "url": "https://files.pythonhosted.org/packages/6f/ef/d56ef73599afc1e28716b51d4f2c2f327be642876a244441fa74e9b9664f/faust_cchardet-2.1.19-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9da16f83e0ebc5634e9b82d450302cab11d68c30c0b9ff7bdf093fabe44eb46",
                "md5": "2c96dee19855aafc1fb517462e0698c4",
                "sha256": "8ce7889e03ba7550099127ffc9b27f1c799c75cdf3698ea3a60e86dadff4bea4"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2c96dee19855aafc1fb517462e0698c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 135121,
            "upload_time": "2023-08-09T16:32:57",
            "upload_time_iso_8601": "2023-08-09T16:32:57.198700Z",
            "url": "https://files.pythonhosted.org/packages/a9/da/16f83e0ebc5634e9b82d450302cab11d68c30c0b9ff7bdf093fabe44eb46/faust_cchardet-2.1.19-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6a00963f4440286fe17a47d9659baf3d7a6c43b9d71e0d7f15735b8c4c282f3",
                "md5": "3fb681d85656340702d14ba58302e107",
                "sha256": "da1be0b5281f77e79009cf535a218892c24d87483a7a21a7f85d113c6e1da466"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3fb681d85656340702d14ba58302e107",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 134788,
            "upload_time": "2023-08-09T16:32:58",
            "upload_time_iso_8601": "2023-08-09T16:32:58.654055Z",
            "url": "https://files.pythonhosted.org/packages/b6/a0/0963f4440286fe17a47d9659baf3d7a6c43b9d71e0d7f15735b8c4c282f3/faust_cchardet-2.1.19-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d472dbf13dd57a08d75ccf7feed83ea40d5e5a755344923ff5cc030986c7adde",
                "md5": "5d557c299236658ed1d60007af071d68",
                "sha256": "f2d088af4711241bc24d858d2fd54854f0a7a969e9890b6dea5512be28d3f83a"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5d557c299236658ed1d60007af071d68",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 319173,
            "upload_time": "2023-08-09T16:33:00",
            "upload_time_iso_8601": "2023-08-09T16:33:00.521115Z",
            "url": "https://files.pythonhosted.org/packages/d4/72/dbf13dd57a08d75ccf7feed83ea40d5e5a755344923ff5cc030986c7adde/faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8133a705c39e89b7ca7564b90c1a4ab4d4c2c0534cde911191d87a89b87b6c60",
                "md5": "a4d7ec24d6d5d8754111c9354f3c946d",
                "sha256": "5eded4811f4a6d5a12ee5eed3c0b95312b0644ca504966043fdcc2f20637d7d5"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4d7ec24d6d5d8754111c9354f3c946d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 317101,
            "upload_time": "2023-08-09T16:33:02",
            "upload_time_iso_8601": "2023-08-09T16:33:02.259465Z",
            "url": "https://files.pythonhosted.org/packages/81/33/a705c39e89b7ca7564b90c1a4ab4d4c2c0534cde911191d87a89b87b6c60/faust_cchardet-2.1.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4b77023e6fc7ae4e4247748531a971d0add8ae3308f1cdb3f5c60081ed0f440",
                "md5": "073c29b93e2739b0fb43801de29b2f3e",
                "sha256": "a194b7d63073ebf8bdc2a1c76451bbbf6b1d31191d2d04b02b14335df5523840"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "073c29b93e2739b0fb43801de29b2f3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 305823,
            "upload_time": "2023-08-09T16:33:03",
            "upload_time_iso_8601": "2023-08-09T16:33:03.842050Z",
            "url": "https://files.pythonhosted.org/packages/b4/b7/7023e6fc7ae4e4247748531a971d0add8ae3308f1cdb3f5c60081ed0f440/faust_cchardet-2.1.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7adf7495bf8162e96be67d142178ba464efcf6aa66cad78191b027abe42ccf2",
                "md5": "5c2e76f6326947bab4b283239e3b0a15",
                "sha256": "0f808d12233fe92de881e4d232c0acd52f0123804bcd6d711db3a46b5e09ecf6"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5c2e76f6326947bab4b283239e3b0a15",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 852642,
            "upload_time": "2023-08-09T16:33:05",
            "upload_time_iso_8601": "2023-08-09T16:33:05.056777Z",
            "url": "https://files.pythonhosted.org/packages/f7/ad/f7495bf8162e96be67d142178ba464efcf6aa66cad78191b027abe42ccf2/faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb8860d6ec0ac1c7be873147124084fda5fe85b7fa083e8b2dacfc123ac0954d",
                "md5": "0314d5d027b2c370da4475874459246c",
                "sha256": "171191fbc41b541012f5bd18efb3b1434c789f4eedb664332178715b70377372"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "0314d5d027b2c370da4475874459246c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 902114,
            "upload_time": "2023-08-09T16:33:06",
            "upload_time_iso_8601": "2023-08-09T16:33:06.951100Z",
            "url": "https://files.pythonhosted.org/packages/cb/88/60d6ec0ac1c7be873147124084fda5fe85b7fa083e8b2dacfc123ac0954d/faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66c5f68789fcd790e14c94884895e50742b8971befa537beada487ef23bfde0e",
                "md5": "5cb5a707f9dc6e40b3497fe1e9925111",
                "sha256": "5e6c400186d8ec37365e9b22f322bb98d70aff0798da7377b2580f9169358a40"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5cb5a707f9dc6e40b3497fe1e9925111",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 861680,
            "upload_time": "2023-08-09T16:33:08",
            "upload_time_iso_8601": "2023-08-09T16:33:08.334443Z",
            "url": "https://files.pythonhosted.org/packages/66/c5/f68789fcd790e14c94884895e50742b8971befa537beada487ef23bfde0e/faust_cchardet-2.1.19-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a48776c7f89447a52c96ad89de6085cfe36e5dfed52bf47806855e1491165018",
                "md5": "c9ea695a860f420c60a9ba5025cd4111",
                "sha256": "a41cc69686450b7402a2e87703389cc9d6738a9658781ddb9acf7b52fea068f7"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c9ea695a860f420c60a9ba5025cd4111",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 119325,
            "upload_time": "2023-08-09T16:33:09",
            "upload_time_iso_8601": "2023-08-09T16:33:09.655460Z",
            "url": "https://files.pythonhosted.org/packages/a4/87/76c7f89447a52c96ad89de6085cfe36e5dfed52bf47806855e1491165018/faust_cchardet-2.1.19-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fa331a0d19aba6f8e99267aac5c3e4f03b68401ad5dfc6e8818beda40efb660",
                "md5": "4dbe418ed189c53a056988221c464be2",
                "sha256": "29f72f7ba7fb6a238e072596f0fc6731f770ddb415957ed951969236cab05e4c"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4dbe418ed189c53a056988221c464be2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 133791,
            "upload_time": "2023-08-09T16:33:10",
            "upload_time_iso_8601": "2023-08-09T16:33:10.993854Z",
            "url": "https://files.pythonhosted.org/packages/0f/a3/31a0d19aba6f8e99267aac5c3e4f03b68401ad5dfc6e8818beda40efb660/faust_cchardet-2.1.19-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc1abab00dc7f631f8ab6ac8e19d2c63791c811a4fc21cce1f6cd738a94bde7e",
                "md5": "d27f53c17a5c2036d2cba8a898add51b",
                "sha256": "533dcb28107b255d8122268f2e76f0e1cbb1c1e437d522850cd67077fe36f16a"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d27f53c17a5c2036d2cba8a898add51b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 295049,
            "upload_time": "2023-08-09T16:33:12",
            "upload_time_iso_8601": "2023-08-09T16:33:12.264134Z",
            "url": "https://files.pythonhosted.org/packages/cc/1a/bab00dc7f631f8ab6ac8e19d2c63791c811a4fc21cce1f6cd738a94bde7e/faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d74f866b73d2c876dc37e2becde351b3f5695c717fa0d3d6fc81d67bcd3bbbb4",
                "md5": "f69cca3290c2ae34979ae7c9f106ce3b",
                "sha256": "fb649e25b7d5d594035dba3fb807ebc59d8dd433a434a8f5afa22c62f9deb0d0"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f69cca3290c2ae34979ae7c9f106ce3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 293155,
            "upload_time": "2023-08-09T16:33:13",
            "upload_time_iso_8601": "2023-08-09T16:33:13.514444Z",
            "url": "https://files.pythonhosted.org/packages/d7/4f/866b73d2c876dc37e2becde351b3f5695c717fa0d3d6fc81d67bcd3bbbb4/faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2086fac2ca9179c52ec2113c87301a4914e4af09955f913e76a58996cf524a92",
                "md5": "37f0f9b4018cf7fdc5a20051debc48f6",
                "sha256": "7f2e2ac15168c77a0a34bd1c1118ed85837cc3c922124e3bdc58f5a49ca3644d"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "37f0f9b4018cf7fdc5a20051debc48f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 283084,
            "upload_time": "2023-08-09T16:33:15",
            "upload_time_iso_8601": "2023-08-09T16:33:15.363682Z",
            "url": "https://files.pythonhosted.org/packages/20/86/fac2ca9179c52ec2113c87301a4914e4af09955f913e76a58996cf524a92/faust_cchardet-2.1.19-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc8243cf8186dfd0fb883d567721a0d261a26791bee99fa259737562d71cdeaa",
                "md5": "510ecdaa208bcc9dc2b1b179cc3d7d0c",
                "sha256": "225495cc44f9f698456ccd325f105f2be206996fc743128de9e5afa866687879"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "510ecdaa208bcc9dc2b1b179cc3d7d0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 828399,
            "upload_time": "2023-08-09T16:33:16",
            "upload_time_iso_8601": "2023-08-09T16:33:16.638274Z",
            "url": "https://files.pythonhosted.org/packages/dc/82/43cf8186dfd0fb883d567721a0d261a26791bee99fa259737562d71cdeaa/faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc458624dc0785ea467a5ff93238f61ff412996157819040b9e5a4e235e07560",
                "md5": "9eb562e97ba2c8cbd50c80bab108a9e9",
                "sha256": "600903f05ed0e2a70e557c30a629b6ba879d7eee259ae2d3cd27b907da09f139"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "9eb562e97ba2c8cbd50c80bab108a9e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 879808,
            "upload_time": "2023-08-09T16:33:17",
            "upload_time_iso_8601": "2023-08-09T16:33:17.971636Z",
            "url": "https://files.pythonhosted.org/packages/bc/45/8624dc0785ea467a5ff93238f61ff412996157819040b9e5a4e235e07560/faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99c9225e8f0546292bdd99dfd32f0c19468509312eace86c355f5fc2db13d3db",
                "md5": "be3837c8c8d8e3fcfeb70ef312db7294",
                "sha256": "7b4b2a21af19d9034a31e2c990f5a572d00b5f5b758ef2cee0282e8545eba2ab"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be3837c8c8d8e3fcfeb70ef312db7294",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 837429,
            "upload_time": "2023-08-09T16:33:19",
            "upload_time_iso_8601": "2023-08-09T16:33:19.583572Z",
            "url": "https://files.pythonhosted.org/packages/99/c9/225e8f0546292bdd99dfd32f0c19468509312eace86c355f5fc2db13d3db/faust_cchardet-2.1.19-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "95e50b1cb405272bb5c2aa475f1135e16d8e8dd1b703d86a68d73ad14bcfe627",
                "md5": "996afee2e5f2a3ec43be4e8af75ce763",
                "sha256": "da7ea1892ac51a1f96c1431ccfa0e9c99d6dda8a434c778a6da1ba12b2f5fa25"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "996afee2e5f2a3ec43be4e8af75ce763",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 124875,
            "upload_time": "2023-08-09T16:33:21",
            "upload_time_iso_8601": "2023-08-09T16:33:21.002896Z",
            "url": "https://files.pythonhosted.org/packages/95/e5/0b1cb405272bb5c2aa475f1135e16d8e8dd1b703d86a68d73ad14bcfe627/faust_cchardet-2.1.19-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2269e1fea4a125c1c8c03029e08a391b4e637b72ca5ddc28bd45a3965fd525f6",
                "md5": "6401d9dc31a1a00a7ac2cf96b0136c11",
                "sha256": "5b150e1a3bf78e6680755902f1bb880caadd93a472ac460ebc0e6f55b3b31d78"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6401d9dc31a1a00a7ac2cf96b0136c11",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 135712,
            "upload_time": "2023-08-09T16:33:22",
            "upload_time_iso_8601": "2023-08-09T16:33:22.282860Z",
            "url": "https://files.pythonhosted.org/packages/22/69/e1fea4a125c1c8c03029e08a391b4e637b72ca5ddc28bd45a3965fd525f6/faust_cchardet-2.1.19-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "927a11e69e1d8dbfbd227e9768236394d4cbdf7c2680633281bc6bd13d209cd5",
                "md5": "413180915a49347163f7e778c1902024",
                "sha256": "d99c42ed30a9b431633f729e24831ccc8a0d8c40b92789e72075197582424f84"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "413180915a49347163f7e778c1902024",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 306885,
            "upload_time": "2023-08-09T16:33:23",
            "upload_time_iso_8601": "2023-08-09T16:33:23.954289Z",
            "url": "https://files.pythonhosted.org/packages/92/7a/11e69e1d8dbfbd227e9768236394d4cbdf7c2680633281bc6bd13d209cd5/faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a690a604a60de82356f895172946d1ce3894f0eb0668f7d06dbe6e0360ae94b",
                "md5": "5d9a0447650b06d4743be590ed4d2bb2",
                "sha256": "7c23252578dd3be28e3e81b84702e2174e3b34da303128dc662d92fa217ee169"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d9a0447650b06d4743be590ed4d2bb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 304216,
            "upload_time": "2023-08-09T16:33:25",
            "upload_time_iso_8601": "2023-08-09T16:33:25.189901Z",
            "url": "https://files.pythonhosted.org/packages/7a/69/0a604a60de82356f895172946d1ce3894f0eb0668f7d06dbe6e0360ae94b/faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3978bd2a1427f7ac65bfadb555ac0dca6c21e95c2c01776c919b59a90effc288",
                "md5": "e19adcf3df6c39bbd877ba347f31cec9",
                "sha256": "4d705e5ae8cba8cfa6af28bda60a99d2f846752abc9dc4cdb5d2354e9a628008"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e19adcf3df6c39bbd877ba347f31cec9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 293888,
            "upload_time": "2023-08-09T16:33:26",
            "upload_time_iso_8601": "2023-08-09T16:33:26.427011Z",
            "url": "https://files.pythonhosted.org/packages/39/78/bd2a1427f7ac65bfadb555ac0dca6c21e95c2c01776c919b59a90effc288/faust_cchardet-2.1.19-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "072bb4d0c97a70c6dadffb24dbe149145691face955f75bb98a99bc26658792d",
                "md5": "979e89a46332adecd25f0e54851c5497",
                "sha256": "0930c2adccd871ab7d39d4919d1cd5368556ea3bf7c96365e282125f22636692"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "979e89a46332adecd25f0e54851c5497",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 839723,
            "upload_time": "2023-08-09T16:33:27",
            "upload_time_iso_8601": "2023-08-09T16:33:27.768795Z",
            "url": "https://files.pythonhosted.org/packages/07/2b/b4d0c97a70c6dadffb24dbe149145691face955f75bb98a99bc26658792d/faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b4afab09128e6941d902f14875f93549b0742d26a1b514e0ba69140382b20d6",
                "md5": "faddfb735fcef9abc80f26b9c035ac15",
                "sha256": "d99c2d5735f48b4c80417322f9a36287d454e9dbdf683caa1f990f9a3b2cfb5c"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "faddfb735fcef9abc80f26b9c035ac15",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 891575,
            "upload_time": "2023-08-09T16:33:29",
            "upload_time_iso_8601": "2023-08-09T16:33:29.323453Z",
            "url": "https://files.pythonhosted.org/packages/1b/4a/fab09128e6941d902f14875f93549b0742d26a1b514e0ba69140382b20d6/faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af1b1b34abd733598537fa5dd84dbf3eab600373a3875f4df223b85dcf8016d1",
                "md5": "359197f8e7a281854ac12f7c84448eda",
                "sha256": "d14aaeb2ab67250e0b39e550b9554e97c3c92f4611590058d975556bc5f0408a"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "359197f8e7a281854ac12f7c84448eda",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 848830,
            "upload_time": "2023-08-09T16:33:30",
            "upload_time_iso_8601": "2023-08-09T16:33:30.681620Z",
            "url": "https://files.pythonhosted.org/packages/af/1b/1b34abd733598537fa5dd84dbf3eab600373a3875f4df223b85dcf8016d1/faust_cchardet-2.1.19-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b18b2a593c9ef33ea4af234a4fb8c94872a4cf62327ba36b679cf90a05a48c2e",
                "md5": "43cfc656b6265e15b9401a447cc9cb2e",
                "sha256": "05573988162fcb4d92966946561094bc9d8e73cdb6cd697473b12b234bf1a828"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "43cfc656b6265e15b9401a447cc9cb2e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 120215,
            "upload_time": "2023-08-09T16:33:32",
            "upload_time_iso_8601": "2023-08-09T16:33:32.071415Z",
            "url": "https://files.pythonhosted.org/packages/b1/8b/2a593c9ef33ea4af234a4fb8c94872a4cf62327ba36b679cf90a05a48c2e/faust_cchardet-2.1.19-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7329cce3218422bfd4d885b293076eaf6f149707608be3126677a449a633bf6d",
                "md5": "c40e60f034a42946e6cdbd5142082382",
                "sha256": "6091daffd040575f4cd384346a71f130eddb0e0fe3be1b9c2bb412eb6dcc34c0"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c40e60f034a42946e6cdbd5142082382",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 135248,
            "upload_time": "2023-08-09T16:33:33",
            "upload_time_iso_8601": "2023-08-09T16:33:33.235475Z",
            "url": "https://files.pythonhosted.org/packages/73/29/cce3218422bfd4d885b293076eaf6f149707608be3126677a449a633bf6d/faust_cchardet-2.1.19-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c77bed228d34f6d5d6ce2842cbd3880ae4ac6c8c5acb81ba28ea16bf721ca3d",
                "md5": "2018514e333c5e46b93c38706f579555",
                "sha256": "908b278fa3d38b3c01c5c0933523be23e6f5bfba649314864eb9a6262b407488"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2018514e333c5e46b93c38706f579555",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 135157,
            "upload_time": "2023-08-09T16:33:34",
            "upload_time_iso_8601": "2023-08-09T16:33:34.563906Z",
            "url": "https://files.pythonhosted.org/packages/9c/77/bed228d34f6d5d6ce2842cbd3880ae4ac6c8c5acb81ba28ea16bf721ca3d/faust_cchardet-2.1.19-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0dc70bd210ff7ad089ce36e8a491f47562cfedadd8f85b36b7aca3036e9524c5",
                "md5": "92d8a0102bf2fb71d1201e233ae6021d",
                "sha256": "e8357587d56757582a1851a389159dd6234ba03af418119be0d43e18086538c8"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92d8a0102bf2fb71d1201e233ae6021d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 310794,
            "upload_time": "2023-08-09T16:33:35",
            "upload_time_iso_8601": "2023-08-09T16:33:35.774143Z",
            "url": "https://files.pythonhosted.org/packages/0d/c7/0bd210ff7ad089ce36e8a491f47562cfedadd8f85b36b7aca3036e9524c5/faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "488dcf7ec53fb9352169abfdafeb0bb95e3b8fd6b9ef85ff3b98018e68f74ecc",
                "md5": "91b4b164333549f93726b9a83ec85776",
                "sha256": "ec258ee3ecbaae39293343c735218a4750d0230a3e56c1bc1a2c7710d555e16f"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91b4b164333549f93726b9a83ec85776",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 308467,
            "upload_time": "2023-08-09T16:33:37",
            "upload_time_iso_8601": "2023-08-09T16:33:37.138789Z",
            "url": "https://files.pythonhosted.org/packages/48/8d/cf7ec53fb9352169abfdafeb0bb95e3b8fd6b9ef85ff3b98018e68f74ecc/faust_cchardet-2.1.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8932893d5f9751bc94f3db3b3b68fcac623cbed5ff93055a7551537467d3cb3",
                "md5": "5f2b68e93cc282c9b3f08de25bbd0647",
                "sha256": "16cad2e3e81fd125f6ee00deb58afb5270b01f45db2a46e92701aa95d7fe2b50"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5f2b68e93cc282c9b3f08de25bbd0647",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 298535,
            "upload_time": "2023-08-09T16:33:38",
            "upload_time_iso_8601": "2023-08-09T16:33:38.561970Z",
            "url": "https://files.pythonhosted.org/packages/d8/93/2893d5f9751bc94f3db3b3b68fcac623cbed5ff93055a7551537467d3cb3/faust_cchardet-2.1.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6087f28e9bb33510d8a578ef6b45b13f83d57ab65a9cba6a6f1c0a0b8e0ce9d2",
                "md5": "e00530d9e7b520bb1ddb6479dcf8c0d5",
                "sha256": "fef6c9217e5fde444cec776aaf0d99b397dc59b6e379cdad86eb6c21c6844e8c"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e00530d9e7b520bb1ddb6479dcf8c0d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 845329,
            "upload_time": "2023-08-09T16:33:39",
            "upload_time_iso_8601": "2023-08-09T16:33:39.753162Z",
            "url": "https://files.pythonhosted.org/packages/60/87/f28e9bb33510d8a578ef6b45b13f83d57ab65a9cba6a6f1c0a0b8e0ce9d2/faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f14967222addb101ba64ca5dee2ed56b4cc6a35c62683e248ef2e69c65c9278",
                "md5": "20d49acdf72be17a6845683d5bf0595a",
                "sha256": "d8bfaa533b92f7813c43bfb81ed0b418a939d808946aa6b160f8d29ba384a089"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "20d49acdf72be17a6845683d5bf0595a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 897253,
            "upload_time": "2023-08-09T16:33:41",
            "upload_time_iso_8601": "2023-08-09T16:33:41.674107Z",
            "url": "https://files.pythonhosted.org/packages/5f/14/967222addb101ba64ca5dee2ed56b4cc6a35c62683e248ef2e69c65c9278/faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae17eb94aaf0a3c8a8f9c34d95639ad8d45653e6ffd12d81ff887244098b405b",
                "md5": "36d9408b49ade252d2ac156efed551c4",
                "sha256": "998d7f4ad7bed4f879216bc658e738ca5f1a89a573f770914a16db5e26d160da"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36d9408b49ade252d2ac156efed551c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 854183,
            "upload_time": "2023-08-09T16:33:43",
            "upload_time_iso_8601": "2023-08-09T16:33:43.165317Z",
            "url": "https://files.pythonhosted.org/packages/ae/17/eb94aaf0a3c8a8f9c34d95639ad8d45653e6ffd12d81ff887244098b405b/faust_cchardet-2.1.19-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04fbfef6755837154356a7e965c0844e36735ff24f4c29aac33f35fa08e5275d",
                "md5": "75949a7d6e2a2996eddfb75bf34cfabf",
                "sha256": "9d2eba1a31dfb8df5cc9ad42e9a8ead510f03314e5f09094f89cc164b82f47a4"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "75949a7d6e2a2996eddfb75bf34cfabf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 119765,
            "upload_time": "2023-08-09T16:33:44",
            "upload_time_iso_8601": "2023-08-09T16:33:44.555625Z",
            "url": "https://files.pythonhosted.org/packages/04/fb/fef6755837154356a7e965c0844e36735ff24f4c29aac33f35fa08e5275d/faust_cchardet-2.1.19-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcf4a902e68c967e625422f5a776340618cecd29b6b62c151ca873f83e3dfa26",
                "md5": "bd42f002f4e0721a56f1d4b9abcd5f5e",
                "sha256": "97d97a03165c2238147c76ff5d1fa4fd676721f1563407073a4ef00191beacc6"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bd42f002f4e0721a56f1d4b9abcd5f5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 135384,
            "upload_time": "2023-08-09T16:33:45",
            "upload_time_iso_8601": "2023-08-09T16:33:45.870613Z",
            "url": "https://files.pythonhosted.org/packages/dc/f4/a902e68c967e625422f5a776340618cecd29b6b62c151ca873f83e3dfa26/faust_cchardet-2.1.19-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "979c45411d2bbf15a3dbeaed487b1f1c357d4b4a923372315d97f6e7e726346a",
                "md5": "cfd6265be924f5d1fd1e640e22af72e4",
                "sha256": "1398d438bb718adc4b04828c2f790dd195db14b529533a7daf6fc60572231f04"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cfd6265be924f5d1fd1e640e22af72e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 135359,
            "upload_time": "2023-08-09T16:33:47",
            "upload_time_iso_8601": "2023-08-09T16:33:47.654911Z",
            "url": "https://files.pythonhosted.org/packages/97/9c/45411d2bbf15a3dbeaed487b1f1c357d4b4a923372315d97f6e7e726346a/faust_cchardet-2.1.19-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abfa5d3002aa46d9a4e00af461a183a7b17e225c8b04381a8e31cf5416fb4a20",
                "md5": "5a52d9ea1f0a86b5879b67b3b538e356",
                "sha256": "3fe6ae7c65825042f9db03ff1edb8b93b50db68d40b3eaa9340d22eb4f9d1e7d"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5a52d9ea1f0a86b5879b67b3b538e356",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 310714,
            "upload_time": "2023-08-09T16:33:48",
            "upload_time_iso_8601": "2023-08-09T16:33:48.918274Z",
            "url": "https://files.pythonhosted.org/packages/ab/fa/5d3002aa46d9a4e00af461a183a7b17e225c8b04381a8e31cf5416fb4a20/faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55d7f0557a711fb4f1df00ffa816cd9e36696597cc9c753388addc99fc556451",
                "md5": "1061aaf948ef3f9aa1725aa50f7d69c6",
                "sha256": "7196a7a27c14f0b7a26beaf78bde6de7a2999d18a5ced74b55c01d6b85c54eef"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1061aaf948ef3f9aa1725aa50f7d69c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 308360,
            "upload_time": "2023-08-09T16:33:50",
            "upload_time_iso_8601": "2023-08-09T16:33:50.744011Z",
            "url": "https://files.pythonhosted.org/packages/55/d7/f0557a711fb4f1df00ffa816cd9e36696597cc9c753388addc99fc556451/faust_cchardet-2.1.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfdf5804161d2213c8202ae179d145e60560963881a42cd90678512c2e7bd60a",
                "md5": "39957d2b39b57a9c86b6ee3e4a82c228",
                "sha256": "d350349ea9024476b146134da40fb2696ce53827a6e7681cd11a3f4413bb53bc"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "39957d2b39b57a9c86b6ee3e4a82c228",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 298287,
            "upload_time": "2023-08-09T16:33:51",
            "upload_time_iso_8601": "2023-08-09T16:33:51.892146Z",
            "url": "https://files.pythonhosted.org/packages/bf/df/5804161d2213c8202ae179d145e60560963881a42cd90678512c2e7bd60a/faust_cchardet-2.1.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52116bc4d655bb8a50c47e7149dd2398f0bd5d19f0d81b7ae700921607c9b674",
                "md5": "5f81e24de638afa6f1708b489f6de074",
                "sha256": "5de8d35909c9a2186307a340525e67ebc5f84f808db6d67676a4d5ce134e0bfc"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5f81e24de638afa6f1708b489f6de074",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 845404,
            "upload_time": "2023-08-09T16:33:53",
            "upload_time_iso_8601": "2023-08-09T16:33:53.191661Z",
            "url": "https://files.pythonhosted.org/packages/52/11/6bc4d655bb8a50c47e7149dd2398f0bd5d19f0d81b7ae700921607c9b674/faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30920b31bbc3dfaf2888a4e6e7f4bae49f747a8d033f6673634041d85f43aff5",
                "md5": "d0ec925a3959997b566720f542af9f8f",
                "sha256": "283cdc978ca2149a77d92433ff15da4cb471924642a6c0add16c13f4afb9b4af"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "d0ec925a3959997b566720f542af9f8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 896566,
            "upload_time": "2023-08-09T16:33:54",
            "upload_time_iso_8601": "2023-08-09T16:33:54.763663Z",
            "url": "https://files.pythonhosted.org/packages/30/92/0b31bbc3dfaf2888a4e6e7f4bae49f747a8d033f6673634041d85f43aff5/faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bef90420762b54239c7968471339ca64a1c95ca7bc2a8f81816db96ee6b52b6f",
                "md5": "c5c7392413d3894069ec61c3e04e2b72",
                "sha256": "d27de578ef1e50d6bea5119abbf9056179f9ba799233a93632097485962882f4"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c5c7392413d3894069ec61c3e04e2b72",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 854032,
            "upload_time": "2023-08-09T16:33:56",
            "upload_time_iso_8601": "2023-08-09T16:33:56.113457Z",
            "url": "https://files.pythonhosted.org/packages/be/f9/0420762b54239c7968471339ca64a1c95ca7bc2a8f81816db96ee6b52b6f/faust_cchardet-2.1.19-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d2034279583201d7b1437eab8a2e63ff5a4be2f71a13bdad72b8e004ce70d19",
                "md5": "5061fffdafc34459eb4547b447c984b6",
                "sha256": "e783e06f04bd2f35432c5735bee70ba0a1fd7bf33628c598ad865fa6a7d80fd1"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5061fffdafc34459eb4547b447c984b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 119694,
            "upload_time": "2023-08-09T16:33:57",
            "upload_time_iso_8601": "2023-08-09T16:33:57.730232Z",
            "url": "https://files.pythonhosted.org/packages/7d/20/34279583201d7b1437eab8a2e63ff5a4be2f71a13bdad72b8e004ce70d19/faust_cchardet-2.1.19-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bff2917493e06368f72e0d9aa6915b01e6bc52b69d69db1b6cf5f8c3a58bc633",
                "md5": "5ca63d6f5a4d09759e6d6a41b7095023",
                "sha256": "0d5c5b245afbf89a4254abcdda93d7da3a8a58614aa0aed211e8d6e726c11b91"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ca63d6f5a4d09759e6d6a41b7095023",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 122403,
            "upload_time": "2023-08-09T16:33:59",
            "upload_time_iso_8601": "2023-08-09T16:33:59.583640Z",
            "url": "https://files.pythonhosted.org/packages/bf/f2/917493e06368f72e0d9aa6915b01e6bc52b69d69db1b6cf5f8c3a58bc633/faust_cchardet-2.1.19-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06f75bd33be4ca3d09fc479ed56dd277d43867caf74925866482bde3ad90d6e2",
                "md5": "2bed0482823bf28140986a13ee5de53d",
                "sha256": "64b3d9559a3c88baa7de0300e4d131b395903d0a9f32412aae15619791199527"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2bed0482823bf28140986a13ee5de53d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 140326,
            "upload_time": "2023-08-09T16:34:01",
            "upload_time_iso_8601": "2023-08-09T16:34:01.277997Z",
            "url": "https://files.pythonhosted.org/packages/06/f7/5bd33be4ca3d09fc479ed56dd277d43867caf74925866482bde3ad90d6e2/faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e745f25edcc35f54514c07b25a8cf0dfaa68e63db213b35edf749d131be9e3b",
                "md5": "f8df421a350e712862490328fb5fb353",
                "sha256": "8706fc2ce4392cf18fb823f0a805213bae103c1eb3659792d7ab690c5589ea39"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f8df421a350e712862490328fb5fb353",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 140152,
            "upload_time": "2023-08-09T16:34:02",
            "upload_time_iso_8601": "2023-08-09T16:34:02.589178Z",
            "url": "https://files.pythonhosted.org/packages/1e/74/5f25edcc35f54514c07b25a8cf0dfaa68e63db213b35edf749d131be9e3b/faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa4675820b24d6855ffc29a68327ba94d3c7e9c64b9c9bb77d282cbd5c9a5bcf",
                "md5": "fd3bf4c5f69d21964cee9282a12ceb8c",
                "sha256": "0dbf865b5a7f03d967294efb435de6eede51e74a8af31abc6e959b87b90b0d3a"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "fd3bf4c5f69d21964cee9282a12ceb8c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 139956,
            "upload_time": "2023-08-09T16:34:04",
            "upload_time_iso_8601": "2023-08-09T16:34:04.440358Z",
            "url": "https://files.pythonhosted.org/packages/fa/46/75820b24d6855ffc29a68327ba94d3c7e9c64b9c9bb77d282cbd5c9a5bcf/faust_cchardet-2.1.19-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1420f191c428cc32a915a8059365f95d218b6f759397c5018c306a412662fb40",
                "md5": "e49162e6a70e151db695ace9992c99d3",
                "sha256": "873089b385009c672c7364aaf281f39601af739218d812a8d41b6ac3a96e83d4"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e49162e6a70e151db695ace9992c99d3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 115965,
            "upload_time": "2023-08-09T16:34:05",
            "upload_time_iso_8601": "2023-08-09T16:34:05.615454Z",
            "url": "https://files.pythonhosted.org/packages/14/20/f191c428cc32a915a8059365f95d218b6f759397c5018c306a412662fb40/faust_cchardet-2.1.19-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff14d0e8dcffdf841813cd7a0ca402e59921a51423fe900c394bd19db166e4aa",
                "md5": "7a463ecee79039fe07d4d9d38310f153",
                "sha256": "b24c4d5c8eb12f09955e10566c9d2b372eb869060aca9999bd2e38770129eb7e"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a463ecee79039fe07d4d9d38310f153",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 121887,
            "upload_time": "2023-08-09T16:34:06",
            "upload_time_iso_8601": "2023-08-09T16:34:06.928583Z",
            "url": "https://files.pythonhosted.org/packages/ff/14/d0e8dcffdf841813cd7a0ca402e59921a51423fe900c394bd19db166e4aa/faust_cchardet-2.1.19-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "87e312286c5d7c49168b36380a19327a202bef9115d964bdb9d0f0aee13c9760",
                "md5": "e2db531a65f71995f53ca2a241b90763",
                "sha256": "aa5d8a290fe66a40582d0034c1ab6c8934231474f9361641f1206585716994fc"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2db531a65f71995f53ca2a241b90763",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 139417,
            "upload_time": "2023-08-09T16:34:08",
            "upload_time_iso_8601": "2023-08-09T16:34:08.557974Z",
            "url": "https://files.pythonhosted.org/packages/87/e3/12286c5d7c49168b36380a19327a202bef9115d964bdb9d0f0aee13c9760/faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39848eb48a627656a5d138f17dcbc8924a0cdd6f7b60fb7f3bb630014a0f1497",
                "md5": "7b2432554ea4bd406a7a718c170f0631",
                "sha256": "70511edd3be6d2537f47527762f44e9aeaf0d135cb78b2ba7a0d7e283baaaa01"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b2432554ea4bd406a7a718c170f0631",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 139482,
            "upload_time": "2023-08-09T16:34:09",
            "upload_time_iso_8601": "2023-08-09T16:34:09.733522Z",
            "url": "https://files.pythonhosted.org/packages/39/84/8eb48a627656a5d138f17dcbc8924a0cdd6f7b60fb7f3bb630014a0f1497/faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b785a5e0e24dd9ef4178e363e6fa1fc5a82bd71c965f5c8bbc5b27e5ee4528f",
                "md5": "050ed4b3ae14380dd2f4901598042fe8",
                "sha256": "ba438330d8017016f0bb74d81d504bf9c5ab58211cbc35e71695cbf6858fca4b"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "050ed4b3ae14380dd2f4901598042fe8",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 139457,
            "upload_time": "2023-08-09T16:34:10",
            "upload_time_iso_8601": "2023-08-09T16:34:10.915869Z",
            "url": "https://files.pythonhosted.org/packages/7b/78/5a5e0e24dd9ef4178e363e6fa1fc5a82bd71c965f5c8bbc5b27e5ee4528f/faust_cchardet-2.1.19-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d4a7bcee285574bb4a09291831249252271ead634a4a41411b3abaa721d2cbb",
                "md5": "36ff99d179e4cf8c93ebb90a228e9438",
                "sha256": "f81c2f643b2e09a09119554a5f9d60f40a70320b6519e9a6634ae93d05c01c0f"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "36ff99d179e4cf8c93ebb90a228e9438",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 115138,
            "upload_time": "2023-08-09T16:34:12",
            "upload_time_iso_8601": "2023-08-09T16:34:12.650223Z",
            "url": "https://files.pythonhosted.org/packages/9d/4a/7bcee285574bb4a09291831249252271ead634a4a41411b3abaa721d2cbb/faust_cchardet-2.1.19-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02fedaa1efe7bf2e3995974acd6b046b26fba1b71663cb692da3584321e626bc",
                "md5": "b25112ed90660716fed1509ae645b4b2",
                "sha256": "17d8aa6575d0b81fffc4b05a97f5ffe79a2dac585689517c9410b6ce4678981a"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b25112ed90660716fed1509ae645b4b2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 121887,
            "upload_time": "2023-08-09T16:34:14",
            "upload_time_iso_8601": "2023-08-09T16:34:14.366812Z",
            "url": "https://files.pythonhosted.org/packages/02/fe/daa1efe7bf2e3995974acd6b046b26fba1b71663cb692da3584321e626bc/faust_cchardet-2.1.19-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a789edce979bad71df3b6c224910149c7692d9e40e18a42e6879161eab8142b8",
                "md5": "5337e8d68550768ada904065e29f75c0",
                "sha256": "5447f1c9b133abbcc97b87c5d29825567b76384088783b6171eefbca120e44ca"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5337e8d68550768ada904065e29f75c0",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 139569,
            "upload_time": "2023-08-09T16:34:15",
            "upload_time_iso_8601": "2023-08-09T16:34:15.493047Z",
            "url": "https://files.pythonhosted.org/packages/a7/89/edce979bad71df3b6c224910149c7692d9e40e18a42e6879161eab8142b8/faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6bf0b294702bb635e1a9d091569fdd651a32724cf69a87a3d5774fbacd634a6",
                "md5": "8d6dc2793b041c10da0ad59829abec5a",
                "sha256": "b0b3b8897ed14f338310a998a86d7671004bbe27dcd99451f2f9d73e0f04d110"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d6dc2793b041c10da0ad59829abec5a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 139279,
            "upload_time": "2023-08-09T16:34:16",
            "upload_time_iso_8601": "2023-08-09T16:34:16.689424Z",
            "url": "https://files.pythonhosted.org/packages/e6/bf/0b294702bb635e1a9d091569fdd651a32724cf69a87a3d5774fbacd634a6/faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0964337732f8c5164ff0b372321895de55d843d66eef161a1d33746412f3e33",
                "md5": "51139175af797d91248595ba597679b3",
                "sha256": "396094d4875fcb30a573c71b6e8f44260ed89cf4e957769c50e84f453827d96d"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "51139175af797d91248595ba597679b3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 139083,
            "upload_time": "2023-08-09T16:34:17",
            "upload_time_iso_8601": "2023-08-09T16:34:17.895569Z",
            "url": "https://files.pythonhosted.org/packages/e0/96/4337732f8c5164ff0b372321895de55d843d66eef161a1d33746412f3e33/faust_cchardet-2.1.19-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcad38b8e81a26bc4f4d479d086d554cbaa8c540e6963e7714c45bfd37685e37",
                "md5": "e3563860c8273fd92b81699c699b849a",
                "sha256": "9df42a1bc3f244ed219529c668d4b42e24243114bcb120229ebb7c44a829c648"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e3563860c8273fd92b81699c699b849a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 115139,
            "upload_time": "2023-08-09T16:34:19",
            "upload_time_iso_8601": "2023-08-09T16:34:19.157679Z",
            "url": "https://files.pythonhosted.org/packages/bc/ad/38b8e81a26bc4f4d479d086d554cbaa8c540e6963e7714c45bfd37685e37/faust_cchardet-2.1.19-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10ad484c2495921acc2c2bf57bb3048353f916d3be19a8533e0d22f0bf7c780b",
                "md5": "85a0f5772e88af1e0eb75ff7b44b9d6e",
                "sha256": "a36f56c921536abcfdb560cbc02dca9fc637c48e58585699105e5ea8c6f558bc"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85a0f5772e88af1e0eb75ff7b44b9d6e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 122333,
            "upload_time": "2023-08-09T16:34:20",
            "upload_time_iso_8601": "2023-08-09T16:34:20.308758Z",
            "url": "https://files.pythonhosted.org/packages/10/ad/484c2495921acc2c2bf57bb3048353f916d3be19a8533e0d22f0bf7c780b/faust_cchardet-2.1.19-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db1dbe823d8f9f294cf20704e963ad2829e202f04598aec5c2d7f1fea3680423",
                "md5": "221af6385caeb681665ea19bfef63aa3",
                "sha256": "ce81f69a3dee0bf73470bac31c8bcc29d05b981874b84c46e5599374b9f20d4f"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "221af6385caeb681665ea19bfef63aa3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 140335,
            "upload_time": "2023-08-09T16:34:21",
            "upload_time_iso_8601": "2023-08-09T16:34:21.420371Z",
            "url": "https://files.pythonhosted.org/packages/db/1d/be823d8f9f294cf20704e963ad2829e202f04598aec5c2d7f1fea3680423/faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4331477378e23053ec4a108ba51d14c8ecf1190e811aeaa1236facfecda44d73",
                "md5": "464c1ad6d65846d6989c2dcd3c8bfb65",
                "sha256": "cd130c3feca879ef80c5090aefcd0cd4f22da80040c82206de666ca5eb2ee5e3"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "464c1ad6d65846d6989c2dcd3c8bfb65",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 140095,
            "upload_time": "2023-08-09T16:34:23",
            "upload_time_iso_8601": "2023-08-09T16:34:23.268241Z",
            "url": "https://files.pythonhosted.org/packages/43/31/477378e23053ec4a108ba51d14c8ecf1190e811aeaa1236facfecda44d73/faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3bceb3d6660246cc366fc859a32d30dad5665badfe88e791d68937ace1a9dc8",
                "md5": "5041d0e735afc0d27923a380f028e500",
                "sha256": "18e6fa0a2ca80d6d3ce7dae158eb85ae3d784583aed22b064ffebca592be5e46"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5041d0e735afc0d27923a380f028e500",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 139898,
            "upload_time": "2023-08-09T16:34:24",
            "upload_time_iso_8601": "2023-08-09T16:34:24.975461Z",
            "url": "https://files.pythonhosted.org/packages/a3/bc/eb3d6660246cc366fc859a32d30dad5665badfe88e791d68937ace1a9dc8/faust_cchardet-2.1.19-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2384021be57aac3c3b6bcc082be44c7eb88b1b4b18dc69723c606ad450ace9c4",
                "md5": "5dcd1cafd3886ddb7d7af73410809017",
                "sha256": "dfe3d4360711cdc4ed5b913ab56b99fa03daa945e05bd7755eaaf7e1d8a3fa94"
            },
            "downloads": -1,
            "filename": "faust_cchardet-2.1.19-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5dcd1cafd3886ddb7d7af73410809017",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 115926,
            "upload_time": "2023-08-09T16:34:26",
            "upload_time_iso_8601": "2023-08-09T16:34:26.841187Z",
            "url": "https://files.pythonhosted.org/packages/23/84/021be57aac3c3b6bcc082be44c7eb88b1b4b18dc69723c606ad450ace9c4/faust_cchardet-2.1.19-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9532125d17d7c2a14b76303bf5c3c5db35ea8e4b8a14817bb191c601d67e288",
                "md5": "f67b9cb0198284535b062992cb47be40",
                "sha256": "f89386297cde0c8e0f5e21464bc2d6d0e4a4fc1b1d77cdb238ca24d740d872e0"
            },
            "downloads": -1,
            "filename": "faust-cchardet-2.1.19.tar.gz",
            "has_sig": false,
            "md5_digest": "f67b9cb0198284535b062992cb47be40",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 678871,
            "upload_time": "2023-08-09T16:34:28",
            "upload_time_iso_8601": "2023-08-09T16:34:28.643474Z",
            "url": "https://files.pythonhosted.org/packages/e9/53/2125d17d7c2a14b76303bf5c3c5db35ea8e4b8a14817bb191c601d67e288/faust-cchardet-2.1.19.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-09 16:34:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "faust-streaming",
    "github_project": "cChardet",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "faust-cchardet"
}
        
Elapsed time: 0.31222s