cytoolz


Namecytoolz JSON
Version 1.0.1 PyPI version JSON
download
home_pagehttps://github.com/pytoolz/cytoolz
SummaryCython implementation of Toolz: High performance functional utilities
upload_time2024-12-13 05:47:36
maintainerErik Welch
docs_urlNone
authorhttps://raw.github.com/pytoolz/cytoolz/master/AUTHORS.md
requires_python>=3.8
licenseBSD
keywords functional utility itertools functools iterator generator curry memoize lazy streaming bigdata cython toolz cytoolz
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            CyToolz
=======

|Build Status| |Version Status|

Cython implementation of the
|literal toolz|_ `package, <https://pypi.python.org/pypi/toolz/>`__ which
provides high performance utility functions for iterables, functions,
and dictionaries.

.. |literal toolz| replace:: ``toolz``
.. _literal toolz: https://github.com/pytoolz/toolz

``toolz`` is a pure Python package that borrows heavily from contemporary
functional languanges.  It is designed to interoperate seamlessly with other
libraries including ``itertools``, ``functools``, and third party libraries.
High performance functional data analysis is possible with builtin types
like ``list`` and ``dict``, and user-defined data structures; and low memory
usage is achieved by using the iterator protocol and returning iterators
whenever possible.

``cytoolz`` implements the same API as ``toolz``.  The main differences are
that ``cytoolz`` is faster (typically 2-5x faster with a few spectacular
exceptions) and ``cytoolz`` offers a C API that is accessible to other
projects developed in Cython.  Since ``toolz`` is able to process very
large (potentially infinite) data sets, the performance increase gained by
using ``cytoolz`` can be significant.

See the PyToolz documentation at https://toolz.readthedocs.io and the full
`API Documentation <https://toolz.readthedocs.io/en/latest/api.html>`__
for more details.

LICENSE
-------

New BSD. See `License File <https://github.com/pytoolz/cytoolz/blob/master/LICENSE.txt>`__.


Install
-------

``cytoolz`` is on the Python Package Index (PyPI):

::

    pip install cytoolz

Dependencies
------------

``cytoolz`` supports Python 3.8+ with a common codebase.
It is developed in Cython, but requires no dependecies other than CPython
and a C compiler.  Like ``toolz``, it is a light weight dependency.

Contributions Welcome
---------------------

``toolz`` (and ``cytoolz``) aims to be a repository for utility functions,
particularly those that come from the functional programming and list
processing traditions. We welcome contributions that fall within this scope
and encourage users to scrape their ``util.py`` files for functions that are
broadly useful.

Please take a look at our issue pages for
`toolz <https://github.com/pytoolz/toolz/issues>`__ and
`cytoolz <https://github.com/pytoolz/cytoolz/issues>`__
for contribution ideas.

Community
---------

See our `mailing list <https://groups.google.com/forum/#!forum/pytoolz>`__.
We're friendly.

.. |Build Status| image:: https://github.com/pytoolz/cytoolz/actions/workflows/test.yml/badge.svg?branch=master
   :target: https://github.com/pytoolz/cytoolz/actions
.. |Version Status| image:: https://badge.fury.io/py/cytoolz.svg
   :target: http://badge.fury.io/py/cytoolz

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/pytoolz/cytoolz",
    "name": "cytoolz",
    "maintainer": "Erik Welch",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "erik.n.welch@gmail.com",
    "keywords": "functional utility itertools functools iterator generator curry memoize lazy streaming bigdata cython toolz cytoolz",
    "author": "https://raw.github.com/pytoolz/cytoolz/master/AUTHORS.md",
    "author_email": "erik.n.welch@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a7/f9/3243eed3a6545c2a33a21f74f655e3fcb5d2192613cd3db81a93369eb339/cytoolz-1.0.1.tar.gz",
    "platform": null,
    "description": "CyToolz\n=======\n\n|Build Status| |Version Status|\n\nCython implementation of the\n|literal toolz|_ `package, <https://pypi.python.org/pypi/toolz/>`__ which\nprovides high performance utility functions for iterables, functions,\nand dictionaries.\n\n.. |literal toolz| replace:: ``toolz``\n.. _literal toolz: https://github.com/pytoolz/toolz\n\n``toolz`` is a pure Python package that borrows heavily from contemporary\nfunctional languanges.  It is designed to interoperate seamlessly with other\nlibraries including ``itertools``, ``functools``, and third party libraries.\nHigh performance functional data analysis is possible with builtin types\nlike ``list`` and ``dict``, and user-defined data structures; and low memory\nusage is achieved by using the iterator protocol and returning iterators\nwhenever possible.\n\n``cytoolz`` implements the same API as ``toolz``.  The main differences are\nthat ``cytoolz`` is faster (typically 2-5x faster with a few spectacular\nexceptions) and ``cytoolz`` offers a C API that is accessible to other\nprojects developed in Cython.  Since ``toolz`` is able to process very\nlarge (potentially infinite) data sets, the performance increase gained by\nusing ``cytoolz`` can be significant.\n\nSee the PyToolz documentation at https://toolz.readthedocs.io and the full\n`API Documentation <https://toolz.readthedocs.io/en/latest/api.html>`__\nfor more details.\n\nLICENSE\n-------\n\nNew BSD. See `License File <https://github.com/pytoolz/cytoolz/blob/master/LICENSE.txt>`__.\n\n\nInstall\n-------\n\n``cytoolz`` is on the Python Package Index (PyPI):\n\n::\n\n    pip install cytoolz\n\nDependencies\n------------\n\n``cytoolz`` supports Python 3.8+ with a common codebase.\nIt is developed in Cython, but requires no dependecies other than CPython\nand a C compiler.  Like ``toolz``, it is a light weight dependency.\n\nContributions Welcome\n---------------------\n\n``toolz`` (and ``cytoolz``) aims to be a repository for utility functions,\nparticularly those that come from the functional programming and list\nprocessing traditions. We welcome contributions that fall within this scope\nand encourage users to scrape their ``util.py`` files for functions that are\nbroadly useful.\n\nPlease take a look at our issue pages for\n`toolz <https://github.com/pytoolz/toolz/issues>`__ and\n`cytoolz <https://github.com/pytoolz/cytoolz/issues>`__\nfor contribution ideas.\n\nCommunity\n---------\n\nSee our `mailing list <https://groups.google.com/forum/#!forum/pytoolz>`__.\nWe're friendly.\n\n.. |Build Status| image:: https://github.com/pytoolz/cytoolz/actions/workflows/test.yml/badge.svg?branch=master\n   :target: https://github.com/pytoolz/cytoolz/actions\n.. |Version Status| image:: https://badge.fury.io/py/cytoolz.svg\n   :target: http://badge.fury.io/py/cytoolz\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Cython implementation of Toolz: High performance functional utilities",
    "version": "1.0.1",
    "project_urls": {
        "Homepage": "https://github.com/pytoolz/cytoolz"
    },
    "split_keywords": [
        "functional",
        "utility",
        "itertools",
        "functools",
        "iterator",
        "generator",
        "curry",
        "memoize",
        "lazy",
        "streaming",
        "bigdata",
        "cython",
        "toolz",
        "cytoolz"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ed9f13d66c16cff1fa1cb6c234698029877c456f35f577ef274aba3b86e7c51",
                "md5": "6c4b0dc6caaf2e6bc814f92861989803",
                "sha256": "cec9af61f71fc3853eb5dca3d42eb07d1f48a4599fa502cbe92adde85f74b042"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6c4b0dc6caaf2e6bc814f92861989803",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 403515,
            "upload_time": "2024-12-13T05:44:27",
            "upload_time_iso_8601": "2024-12-13T05:44:27.845771Z",
            "url": "https://files.pythonhosted.org/packages/1e/d9/f13d66c16cff1fa1cb6c234698029877c456f35f577ef274aba3b86e7c51/cytoolz-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4b2d4cdf848a69300c7d44984f2ebbebb3b8576e5449c8dea157298f3bdc4da3",
                "md5": "5a381e5a6504427f952c68855bce8e79",
                "sha256": "140bbd649dbda01e91add7642149a5987a7c3ccc251f2263de894b89f50b6608"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5a381e5a6504427f952c68855bce8e79",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 383936,
            "upload_time": "2024-12-13T05:44:29",
            "upload_time_iso_8601": "2024-12-13T05:44:29.500636Z",
            "url": "https://files.pythonhosted.org/packages/4b/2d/4cdf848a69300c7d44984f2ebbebb3b8576e5449c8dea157298f3bdc4da3/cytoolz-1.0.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72a4ccfdd3f0ed9cc818f734b424261f6018fc61e3ec833bf85225a9aca0d994",
                "md5": "68831d148e572e06d5423e99547ab2ee",
                "sha256": "e90124bdc42ff58b88cdea1d24a6bc5f776414a314cc4d94f25c88badb3a16d1"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "68831d148e572e06d5423e99547ab2ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1934569,
            "upload_time": "2024-12-13T05:44:30",
            "upload_time_iso_8601": "2024-12-13T05:44:30.799736Z",
            "url": "https://files.pythonhosted.org/packages/72/a4/ccfdd3f0ed9cc818f734b424261f6018fc61e3ec833bf85225a9aca0d994/cytoolz-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50fc38d5344fa595683ad10dc819cfc1d8b9d2b3391ccf3e8cb7bab4899a01f5",
                "md5": "69121bfd609d9006918e42f0950e6043",
                "sha256": "e74801b751e28f7c5cc3ad264c123954a051f546f2fdfe089f5aa7a12ccfa6da"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "69121bfd609d9006918e42f0950e6043",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2015129,
            "upload_time": "2024-12-13T05:44:32",
            "upload_time_iso_8601": "2024-12-13T05:44:32.297614Z",
            "url": "https://files.pythonhosted.org/packages/50/fc/38d5344fa595683ad10dc819cfc1d8b9d2b3391ccf3e8cb7bab4899a01f5/cytoolz-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "282975261748dc54a20a927f33641f4e9aac674cfc6d3fbd4f332e10d0b37639",
                "md5": "a88e0729d9d4665e478dee0a0bac5fa2",
                "sha256": "582dad4545ddfb5127494ef23f3fa4855f1673a35d50c66f7638e9fb49805089"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a88e0729d9d4665e478dee0a0bac5fa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2000506,
            "upload_time": "2024-12-13T05:44:34",
            "upload_time_iso_8601": "2024-12-13T05:44:34.403380Z",
            "url": "https://files.pythonhosted.org/packages/28/29/75261748dc54a20a927f33641f4e9aac674cfc6d3fbd4f332e10d0b37639/cytoolz-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00aee4ead004cc2698281d153c4a5388638d67cdb5544d6d6cc1e5b3db2bd2a3",
                "md5": "5ed5d0997f5921e5f792e4d03eee647d",
                "sha256": "dd7bd0618e16efe03bd12f19c2a26a27e6e6b75d7105adb7be1cd2a53fa755d8"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5ed5d0997f5921e5f792e4d03eee647d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1957537,
            "upload_time": "2024-12-13T05:44:39",
            "upload_time_iso_8601": "2024-12-13T05:44:39.499996Z",
            "url": "https://files.pythonhosted.org/packages/00/ae/e4ead004cc2698281d153c4a5388638d67cdb5544d6d6cc1e5b3db2bd2a3/cytoolz-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4aff4f3aa07f4f47701f7f63df60ce0a5669fa09c256c3d4a33503a9414ea5cc",
                "md5": "4a78fa13b5c7bee3c373888d7ed76fa9",
                "sha256": "d74cca6acf1c4af58b2e4a89cc565ed61c5e201de2e434748c93e5a0f5c541a5"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4a78fa13b5c7bee3c373888d7ed76fa9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1863331,
            "upload_time": "2024-12-13T05:44:42",
            "upload_time_iso_8601": "2024-12-13T05:44:42.610387Z",
            "url": "https://files.pythonhosted.org/packages/4a/ff/4f3aa07f4f47701f7f63df60ce0a5669fa09c256c3d4a33503a9414ea5cc/cytoolz-1.0.1-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": "a229654f57f2a9b8e9765a4ab876765f64f94530b61fc6471a07feea42ece6d4",
                "md5": "a1db1d43174190ac6c5164fa38f05232",
                "sha256": "823a3763828d8d457f542b2a45d75d6b4ced5e470b5c7cf2ed66a02f508ed442"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a1db1d43174190ac6c5164fa38f05232",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1849938,
            "upload_time": "2024-12-13T05:44:45",
            "upload_time_iso_8601": "2024-12-13T05:44:45.324636Z",
            "url": "https://files.pythonhosted.org/packages/a2/29/654f57f2a9b8e9765a4ab876765f64f94530b61fc6471a07feea42ece6d4/cytoolz-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc7b11f457db6b291060a98315ab2c7198077d8bddeeebe5f7126d9dad98cc54",
                "md5": "7eb66ba91437db03d36f2effd51d8ee5",
                "sha256": "51633a14e6844c61db1d68c1ffd077cf949f5c99c60ed5f1e265b9e2966f1b52"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7eb66ba91437db03d36f2effd51d8ee5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1852345,
            "upload_time": "2024-12-13T05:44:47",
            "upload_time_iso_8601": "2024-12-13T05:44:47.994384Z",
            "url": "https://files.pythonhosted.org/packages/bc/7b/11f457db6b291060a98315ab2c7198077d8bddeeebe5f7126d9dad98cc54/cytoolz-1.0.1-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b920dccc96ce0323be236d404f5084479b79b747fa0e74e43a270e95868b5f9",
                "md5": "f581bcd23e648f5c2bd564683692699f",
                "sha256": "f3ec9b01c45348f1d0d712507d54c2bfd69c62fbd7c9ef555c9d8298693c2432"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f581bcd23e648f5c2bd564683692699f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1989877,
            "upload_time": "2024-12-13T05:44:51",
            "upload_time_iso_8601": "2024-12-13T05:44:51.514241Z",
            "url": "https://files.pythonhosted.org/packages/6b/92/0dccc96ce0323be236d404f5084479b79b747fa0e74e43a270e95868b5f9/cytoolz-1.0.1-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3c81c5203a81200bae51aa8f7b5fad613f695bf1afa03f16251ca23ecb2ef9f",
                "md5": "2cc33f4726e75c9ec2a85c5e79f080d3",
                "sha256": "1855022b712a9c7a5bce354517ab4727a38095f81e2d23d3eabaf1daeb6a3b3c"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "2cc33f4726e75c9ec2a85c5e79f080d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1994492,
            "upload_time": "2024-12-13T05:44:52",
            "upload_time_iso_8601": "2024-12-13T05:44:52.922591Z",
            "url": "https://files.pythonhosted.org/packages/a3/c8/1c5203a81200bae51aa8f7b5fad613f695bf1afa03f16251ca23ecb2ef9f/cytoolz-1.0.1-cp310-cp310-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e28a04bc193c4d7ced8ef6bb62cdcd0bf40b5e5eb26586ed2cfb4433ec7dfd0a",
                "md5": "18741a33db101dab9d985194e4aa0646",
                "sha256": "9930f7288c4866a1dc1cc87174f0c6ff4cad1671eb1f6306808aa6c445857d78"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "18741a33db101dab9d985194e4aa0646",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1896077,
            "upload_time": "2024-12-13T05:44:56",
            "upload_time_iso_8601": "2024-12-13T05:44:56.118466Z",
            "url": "https://files.pythonhosted.org/packages/e2/8a/04bc193c4d7ced8ef6bb62cdcd0bf40b5e5eb26586ed2cfb4433ec7dfd0a/cytoolz-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21a5bee63a58f51d2c74856db66e6119a014464ff8cb1c9387fa4bd2d94e49b0",
                "md5": "ca0b0163816b48a663aeb3c95795f311",
                "sha256": "a9baad795d72fadc3445ccd0f122abfdbdf94269157e6d6d4835636dad318804"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ca0b0163816b48a663aeb3c95795f311",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 322135,
            "upload_time": "2024-12-13T05:44:57",
            "upload_time_iso_8601": "2024-12-13T05:44:57.695443Z",
            "url": "https://files.pythonhosted.org/packages/21/a5/bee63a58f51d2c74856db66e6119a014464ff8cb1c9387fa4bd2d94e49b0/cytoolz-1.0.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e8167abfb1685e8b7f2838264551ee33651748994813f566ac4c3d737dfe90e5",
                "md5": "81c6763cc5162679040eb0f839fcb68e",
                "sha256": "ad95b386a84e18e1f6136f6d343d2509d4c3aae9f5a536f3dc96808fcc56a8cf"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "81c6763cc5162679040eb0f839fcb68e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 363599,
            "upload_time": "2024-12-13T05:44:58",
            "upload_time_iso_8601": "2024-12-13T05:44:58.875271Z",
            "url": "https://files.pythonhosted.org/packages/e8/16/7abfb1685e8b7f2838264551ee33651748994813f566ac4c3d737dfe90e5/cytoolz-1.0.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcea8131ae39119820b8867cddc23716fa9f681f2b3bbce6f693e68dfb36b55b",
                "md5": "f5c4a4910162b66ee5e178b378d55834",
                "sha256": "2d958d4f04d9d7018e5c1850790d9d8e68b31c9a2deebca74b903706fdddd2b6"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5c4a4910162b66ee5e178b378d55834",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 406162,
            "upload_time": "2024-12-13T05:45:01",
            "upload_time_iso_8601": "2024-12-13T05:45:01.196548Z",
            "url": "https://files.pythonhosted.org/packages/dc/ea/8131ae39119820b8867cddc23716fa9f681f2b3bbce6f693e68dfb36b55b/cytoolz-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26183d9bd4c146f6ea6e51300c242b20cb416966b21d481dac230e1304f1e54b",
                "md5": "aeb6d6956a777afea805287f6fce2207",
                "sha256": "0f445b8b731fc0ecb1865b8e68a070084eb95d735d04f5b6c851db2daf3048ab"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aeb6d6956a777afea805287f6fce2207",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 384961,
            "upload_time": "2024-12-13T05:45:02",
            "upload_time_iso_8601": "2024-12-13T05:45:02.387046Z",
            "url": "https://files.pythonhosted.org/packages/26/18/3d9bd4c146f6ea6e51300c242b20cb416966b21d481dac230e1304f1e54b/cytoolz-1.0.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4739034827907c7f85c7c484c9494e905d022fb8174526004e9ef332570349e",
                "md5": "231cd8abf84f6dc7691eb248abdebad8",
                "sha256": "1f546a96460a7e28eb2ec439f4664fa646c9b3e51c6ebad9a59d3922bbe65e30"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "231cd8abf84f6dc7691eb248abdebad8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2091698,
            "upload_time": "2024-12-13T05:45:04",
            "upload_time_iso_8601": "2024-12-13T05:45:04.353704Z",
            "url": "https://files.pythonhosted.org/packages/e4/73/9034827907c7f85c7c484c9494e905d022fb8174526004e9ef332570349e/cytoolz-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74afd5c2733b0fde1a08254ff1a8a8d567874040c9eb1606363cfebc0713c73f",
                "md5": "74c0ef784e6738888fad83bad8868ce4",
                "sha256": "0317681dd065532d21836f860b0563b199ee716f55d0c1f10de3ce7100c78a3b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "74c0ef784e6738888fad83bad8868ce4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2188452,
            "upload_time": "2024-12-13T05:45:05",
            "upload_time_iso_8601": "2024-12-13T05:45:05.748207Z",
            "url": "https://files.pythonhosted.org/packages/74/af/d5c2733b0fde1a08254ff1a8a8d567874040c9eb1606363cfebc0713c73f/cytoolz-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6abb77c71fa9c217260b4056a732d754748903423c2cdd82a673d6064741e375",
                "md5": "8d6b78a46fbd4dad5ba6894c382aa55f",
                "sha256": "0c0ef52febd5a7821a3fd8d10f21d460d1a3d2992f724ba9c91fbd7a96745d41"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8d6b78a46fbd4dad5ba6894c382aa55f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2174203,
            "upload_time": "2024-12-13T05:45:07",
            "upload_time_iso_8601": "2024-12-13T05:45:07.777653Z",
            "url": "https://files.pythonhosted.org/packages/6a/bb/77c71fa9c217260b4056a732d754748903423c2cdd82a673d6064741e375/cytoolz-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fca9a5b4a3ff5d22faa1b60293bfe97362e2caf4a830c26d37ab5557f60d04b2",
                "md5": "c3b245c344178a66d941902197ca7436",
                "sha256": "f5ebaf419acf2de73b643cf96108702b8aef8e825cf4f63209ceb078d5fbbbfd"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3b245c344178a66d941902197ca7436",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2099831,
            "upload_time": "2024-12-13T05:45:11",
            "upload_time_iso_8601": "2024-12-13T05:45:11.477458Z",
            "url": "https://files.pythonhosted.org/packages/fc/a9/a5b4a3ff5d22faa1b60293bfe97362e2caf4a830c26d37ab5557f60d04b2/cytoolz-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35087f6869ea1ff31ce5289a7d58d0e7090acfe7058baa2764473048ff61ea3c",
                "md5": "edf232e957e81c856929bc566531c1d0",
                "sha256": "5f7f04eeb4088947585c92d6185a618b25ad4a0f8f66ea30c8db83cf94a425e3"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "edf232e957e81c856929bc566531c1d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1996744,
            "upload_time": "2024-12-13T05:45:14",
            "upload_time_iso_8601": "2024-12-13T05:45:14.172508Z",
            "url": "https://files.pythonhosted.org/packages/35/08/7f6869ea1ff31ce5289a7d58d0e7090acfe7058baa2764473048ff61ea3c/cytoolz-1.0.1-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": "46b49ac424c994b51763fd1bbed62d95f8fba8fa0e45c8c3c583904fdaf8f51d",
                "md5": "5c50bd471395d201fc96c3ac41666699",
                "sha256": "f61928803bb501c17914b82d457c6f50fe838b173fb40d39c38d5961185bd6c7"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5c50bd471395d201fc96c3ac41666699",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2013733,
            "upload_time": "2024-12-13T05:45:16",
            "upload_time_iso_8601": "2024-12-13T05:45:16.912324Z",
            "url": "https://files.pythonhosted.org/packages/46/b4/9ac424c994b51763fd1bbed62d95f8fba8fa0e45c8c3c583904fdaf8f51d/cytoolz-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e9903009765c4b87d742d5b5a8670abb56a8c7ede033c2cdaa4be8662d3b001",
                "md5": "b47dd17e1a8628912472772905b11d3e",
                "sha256": "d2960cb4fa01ccb985ad1280db41f90dc97a80b397af970a15d5a5de403c8c61"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b47dd17e1a8628912472772905b11d3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1994850,
            "upload_time": "2024-12-13T05:45:18",
            "upload_time_iso_8601": "2024-12-13T05:45:18.414554Z",
            "url": "https://files.pythonhosted.org/packages/3e/99/03009765c4b87d742d5b5a8670abb56a8c7ede033c2cdaa4be8662d3b001/cytoolz-1.0.1-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "409a8458af9a5557e177ea42f8cf7e477bede518b0bbef564e28c4151feaa52c",
                "md5": "9e9e5d24fbdb950dc2b5fe736d1e4867",
                "sha256": "b2b407cc3e9defa8df5eb46644f6f136586f70ba49eba96f43de67b9a0984fd3"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9e9e5d24fbdb950dc2b5fe736d1e4867",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2155352,
            "upload_time": "2024-12-13T05:45:19",
            "upload_time_iso_8601": "2024-12-13T05:45:19.763070Z",
            "url": "https://files.pythonhosted.org/packages/40/9a/8458af9a5557e177ea42f8cf7e477bede518b0bbef564e28c4151feaa52c/cytoolz-1.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e5c2a701423e001fcbec288b4f3fc2bf67557d114c2388237fc1ae67e1e2686",
                "md5": "5b1fdd2654a947c72be89b98143a72ba",
                "sha256": "8245f929144d4d3bd7b972c9593300195c6cea246b81b4c46053c48b3f044580"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "5b1fdd2654a947c72be89b98143a72ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2163515,
            "upload_time": "2024-12-13T05:45:21",
            "upload_time_iso_8601": "2024-12-13T05:45:21.080731Z",
            "url": "https://files.pythonhosted.org/packages/5e/5c/2a701423e001fcbec288b4f3fc2bf67557d114c2388237fc1ae67e1e2686/cytoolz-1.0.1-cp311-cp311-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3616ee2e06e65d9d533bc05cd52a0b355ba9072fc8f60d77289e529c6d2e3750",
                "md5": "e1b0ec04b7a62419272a1ac29be7de04",
                "sha256": "e37385db03af65763933befe89fa70faf25301effc3b0485fec1c15d4ce4f052"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e1b0ec04b7a62419272a1ac29be7de04",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2054431,
            "upload_time": "2024-12-13T05:45:22",
            "upload_time_iso_8601": "2024-12-13T05:45:22.521875Z",
            "url": "https://files.pythonhosted.org/packages/36/16/ee2e06e65d9d533bc05cd52a0b355ba9072fc8f60d77289e529c6d2e3750/cytoolz-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8d52fac8315f210fa1bc7106e27c19e1211580aa25bb7fa17dfd79505e5baf2",
                "md5": "cea0f411af76321d0403b40f24fe69ec",
                "sha256": "50f9c530f83e3e574fc95c264c3350adde8145f4f8fc8099f65f00cc595e5ead"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "cea0f411af76321d0403b40f24fe69ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 322004,
            "upload_time": "2024-12-13T05:45:24",
            "upload_time_iso_8601": "2024-12-13T05:45:24.048932Z",
            "url": "https://files.pythonhosted.org/packages/d8/d5/2fac8315f210fa1bc7106e27c19e1211580aa25bb7fa17dfd79505e5baf2/cytoolz-1.0.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a99e0b70b641850a95f9ff90adde9d094a4b1d81ec54dadfd97fec0a2aaf440e",
                "md5": "f5b304a32f3cd3455260a917758d1ba9",
                "sha256": "b7f6b617454b4326af7bd3c7c49b0fc80767f134eb9fd6449917a058d17a0e3c"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f5b304a32f3cd3455260a917758d1ba9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 365358,
            "upload_time": "2024-12-13T05:45:25",
            "upload_time_iso_8601": "2024-12-13T05:45:25.383532Z",
            "url": "https://files.pythonhosted.org/packages/a9/9e/0b70b641850a95f9ff90adde9d094a4b1d81ec54dadfd97fec0a2aaf440e/cytoolz-1.0.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d8e8218098344ed2cb5f8441fade9b2428e435e7073962374a9c71e59ac141a7",
                "md5": "a1d1adbc69e3a7dc8625fe848d8aa1ac",
                "sha256": "fcb8f7d0d65db1269022e7e0428471edee8c937bc288ebdcb72f13eaa67c2fe4"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a1d1adbc69e3a7dc8625fe848d8aa1ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 414121,
            "upload_time": "2024-12-13T05:45:26",
            "upload_time_iso_8601": "2024-12-13T05:45:26.588980Z",
            "url": "https://files.pythonhosted.org/packages/d8/e8/218098344ed2cb5f8441fade9b2428e435e7073962374a9c71e59ac141a7/cytoolz-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de274d729a5653718109262b758fec1a959aa9facb74c15460d9074dc76d6635",
                "md5": "9bcd304f18328d5b02ec3262e7160b90",
                "sha256": "207d4e4b445e087e65556196ff472ff134370d9a275d591724142e255f384662"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9bcd304f18328d5b02ec3262e7160b90",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 390904,
            "upload_time": "2024-12-13T05:45:27",
            "upload_time_iso_8601": "2024-12-13T05:45:27.718479Z",
            "url": "https://files.pythonhosted.org/packages/de/27/4d729a5653718109262b758fec1a959aa9facb74c15460d9074dc76d6635/cytoolz-1.0.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72c0cbabfa788bab9c6038953bf9478adaec06e88903a726946ea7c88092f5c4",
                "md5": "456821e1c7f45f9f8d582064c4e5a18e",
                "sha256": "21cdf6bac6fd843f3b20280a66fd8df20dea4c58eb7214a2cd8957ec176f0bb3"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "456821e1c7f45f9f8d582064c4e5a18e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2090734,
            "upload_time": "2024-12-13T05:45:30",
            "upload_time_iso_8601": "2024-12-13T05:45:30.515090Z",
            "url": "https://files.pythonhosted.org/packages/72/c0/cbabfa788bab9c6038953bf9478adaec06e88903a726946ea7c88092f5c4/cytoolz-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c366369262c60f9423c2da82a60864a259c852f1aa122aced4acd2c679af58c0",
                "md5": "9bbdfbceef68522775b83fa5a1e9804a",
                "sha256": "4a55ec098036c0dea9f3bdc021f8acd9d105a945227d0811589f0573f21c9ce1"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9bbdfbceef68522775b83fa5a1e9804a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2155933,
            "upload_time": "2024-12-13T05:45:32",
            "upload_time_iso_8601": "2024-12-13T05:45:32.721797Z",
            "url": "https://files.pythonhosted.org/packages/c3/66/369262c60f9423c2da82a60864a259c852f1aa122aced4acd2c679af58c0/cytoolz-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa4eee55186802f8d24b5fbf9a11405ccd1203b30eded07cc17750618219b94e",
                "md5": "05b16a6b7d890c758f78abbe71bef3ca",
                "sha256": "a13ab79ff4ce202e03ab646a2134696988b554b6dc4b71451e948403db1331d8"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "05b16a6b7d890c758f78abbe71bef3ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2171903,
            "upload_time": "2024-12-13T05:45:34",
            "upload_time_iso_8601": "2024-12-13T05:45:34.205210Z",
            "url": "https://files.pythonhosted.org/packages/aa/4e/ee55186802f8d24b5fbf9a11405ccd1203b30eded07cc17750618219b94e/cytoolz-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a196bd1a9f3396e9b7f618db8cd08d15630769ce3c8b7d0534f92cd639c977ae",
                "md5": "1f7a8155373f7e899931dc4272eba33b",
                "sha256": "4e2d944799026e1ff08a83241f1027a2d9276c41f7a74224cd98b7df6e03957d"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1f7a8155373f7e899931dc4272eba33b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2125270,
            "upload_time": "2024-12-13T05:45:36",
            "upload_time_iso_8601": "2024-12-13T05:45:36.982555Z",
            "url": "https://files.pythonhosted.org/packages/a1/96/bd1a9f3396e9b7f618db8cd08d15630769ce3c8b7d0534f92cd639c977ae/cytoolz-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28482a3762873091c88a69e161111cfbc6c222ff145d57ff011a642b169f04f1",
                "md5": "83017f6955f474575ec871580526a096",
                "sha256": "88ba85834cd523b91fdf10325e1e6d71c798de36ea9bdc187ca7bd146420de6f"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "83017f6955f474575ec871580526a096",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1973967,
            "upload_time": "2024-12-13T05:45:39",
            "upload_time_iso_8601": "2024-12-13T05:45:39.505785Z",
            "url": "https://files.pythonhosted.org/packages/28/48/2a3762873091c88a69e161111cfbc6c222ff145d57ff011a642b169f04f1/cytoolz-1.0.1-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": "e450500bd69774bdc49a4d78ec8779eb6ac7c1a9d706bfd91cf2a1dba604373a",
                "md5": "1c687bc4498993549c4d97647339163c",
                "sha256": "5a750b1af7e8bf6727f588940b690d69e25dc47cce5ce467925a76561317eaf7"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1c687bc4498993549c4d97647339163c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2021695,
            "upload_time": "2024-12-13T05:45:40",
            "upload_time_iso_8601": "2024-12-13T05:45:40.911823Z",
            "url": "https://files.pythonhosted.org/packages/e4/50/500bd69774bdc49a4d78ec8779eb6ac7c1a9d706bfd91cf2a1dba604373a/cytoolz-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e44eba5a0ce34869495eb50653de8d676847490cf13a2cac1760fc4d313e78de",
                "md5": "a6adb4c3fc5facceee344666ffbf2343",
                "sha256": "44a71870f7eae31d263d08b87da7c2bf1176f78892ed8bdade2c2850478cb126"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a6adb4c3fc5facceee344666ffbf2343",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2010177,
            "upload_time": "2024-12-13T05:45:42",
            "upload_time_iso_8601": "2024-12-13T05:45:42.480192Z",
            "url": "https://files.pythonhosted.org/packages/e4/4e/ba5a0ce34869495eb50653de8d676847490cf13a2cac1760fc4d313e78de/cytoolz-1.0.1-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8757615c630b3089a13adb15351d958d227430cf624f03b1dd39eb52c34c1f59",
                "md5": "973a18586b757ac447658f0fae61dbd1",
                "sha256": "c8231b9abbd8e368e036f4cc2e16902c9482d4cf9e02a6147ed0e9a3cd4a9ab0"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "973a18586b757ac447658f0fae61dbd1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2154321,
            "upload_time": "2024-12-13T05:45:43",
            "upload_time_iso_8601": "2024-12-13T05:45:43.979557Z",
            "url": "https://files.pythonhosted.org/packages/87/57/615c630b3089a13adb15351d958d227430cf624f03b1dd39eb52c34c1f59/cytoolz-1.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f0ffe1aa2d931e3b35ecc05215bd75da945ea7346095b3b6f6027164e602d5a",
                "md5": "240fc68bf40e8820aaef566b0259415e",
                "sha256": "aa87599ccc755de5a096a4d6c34984de6cd9dc928a0c5eaa7607457317aeaf9b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "240fc68bf40e8820aaef566b0259415e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2188374,
            "upload_time": "2024-12-13T05:45:46",
            "upload_time_iso_8601": "2024-12-13T05:45:46.783006Z",
            "url": "https://files.pythonhosted.org/packages/7f/0f/fe1aa2d931e3b35ecc05215bd75da945ea7346095b3b6f6027164e602d5a/cytoolz-1.0.1-cp312-cp312-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "defafd363d97a641b6d0e2fd1d5c35b8fd41d9ccaeb4df56302f53bf23a58e3a",
                "md5": "4233f848b064500bca93b86e95eb73e9",
                "sha256": "67cd16537df51baabde3baa770ab7b8d16839c4d21219d5b96ac59fb012ebd2d"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4233f848b064500bca93b86e95eb73e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2077911,
            "upload_time": "2024-12-13T05:45:48",
            "upload_time_iso_8601": "2024-12-13T05:45:48.219468Z",
            "url": "https://files.pythonhosted.org/packages/de/fa/fd363d97a641b6d0e2fd1d5c35b8fd41d9ccaeb4df56302f53bf23a58e3a/cytoolz-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9680a22946b98ae5201b54ccb4e651295285c0fb79406022b6ee8b2f791940c",
                "md5": "d3c8cc408a249bb782d5ef99f0d03863",
                "sha256": "fb988c333f05ee30ad4693fe4da55d95ec0bb05775d2b60191236493ea2e01f9"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d3c8cc408a249bb782d5ef99f0d03863",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 321903,
            "upload_time": "2024-12-13T05:45:50",
            "upload_time_iso_8601": "2024-12-13T05:45:50.300843Z",
            "url": "https://files.pythonhosted.org/packages/d9/68/0a22946b98ae5201b54ccb4e651295285c0fb79406022b6ee8b2f791940c/cytoolz-1.0.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "621af3903197956055032f8cb297342e2dff07e50f83991aebfe5b4c4fcb55e4",
                "md5": "39d0d6c3654677a8c2d4c081652929ca",
                "sha256": "8f89c48d8e5aec55ffd566a8ec858706d70ed0c6a50228eca30986bfa5b4da8b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "39d0d6c3654677a8c2d4c081652929ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 364490,
            "upload_time": "2024-12-13T05:45:51",
            "upload_time_iso_8601": "2024-12-13T05:45:51.494483Z",
            "url": "https://files.pythonhosted.org/packages/62/1a/f3903197956055032f8cb297342e2dff07e50f83991aebfe5b4c4fcb55e4/cytoolz-1.0.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa2ea9f069db0107749e9e72baf6c21abe3f006841a3bcfdc9b8420e22ef31eb",
                "md5": "804552342a3838773111fc1f023b9e24",
                "sha256": "6944bb93b287032a4c5ca6879b69bcd07df46f3079cf8393958cf0b0454f50c0"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "804552342a3838773111fc1f023b9e24",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 407365,
            "upload_time": "2024-12-13T05:45:52",
            "upload_time_iso_8601": "2024-12-13T05:45:52.803818Z",
            "url": "https://files.pythonhosted.org/packages/aa/2e/a9f069db0107749e9e72baf6c21abe3f006841a3bcfdc9b8420e22ef31eb/cytoolz-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a99b5e87dd0e31f54c778b4f9f34cc14c1162d3096c8d746b0f8be97d70dd73c",
                "md5": "f8256b1a138617bcfabef7c84c9deada",
                "sha256": "e027260fd2fc5cb041277158ac294fc13dca640714527219f702fb459a59823a"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f8256b1a138617bcfabef7c84c9deada",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 385233,
            "upload_time": "2024-12-13T05:45:53",
            "upload_time_iso_8601": "2024-12-13T05:45:53.994835Z",
            "url": "https://files.pythonhosted.org/packages/a9/9b/5e87dd0e31f54c778b4f9f34cc14c1162d3096c8d746b0f8be97d70dd73c/cytoolz-1.0.1-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63002fd32b16284cdb97cfe092822179bc0c3bcdd5e927dd39f986169a517642",
                "md5": "19ee552a16025301e7377fd3e107e02c",
                "sha256": "88662c0e07250d26f5af9bc95911e6137e124a5c1ec2ce4a5d74de96718ab242"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "19ee552a16025301e7377fd3e107e02c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2062903,
            "upload_time": "2024-12-13T05:45:55",
            "upload_time_iso_8601": "2024-12-13T05:45:55.202445Z",
            "url": "https://files.pythonhosted.org/packages/63/00/2fd32b16284cdb97cfe092822179bc0c3bcdd5e927dd39f986169a517642/cytoolz-1.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8539b3cbb5a9847ba59584a263772ad4f8ca2dbfd2a0e11efd09211d1219804c",
                "md5": "71466701bb748ad2075f9bc074a0e082",
                "sha256": "309dffa78b0961b4c0cf55674b828fbbc793cf2d816277a5c8293c0c16155296"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "71466701bb748ad2075f9bc074a0e082",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2139517,
            "upload_time": "2024-12-13T05:45:56",
            "upload_time_iso_8601": "2024-12-13T05:45:56.804384Z",
            "url": "https://files.pythonhosted.org/packages/85/39/b3cbb5a9847ba59584a263772ad4f8ca2dbfd2a0e11efd09211d1219804c/cytoolz-1.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea39bfcab4a46d50c467e36fe704f19d8904efead417787806ee210327f68390",
                "md5": "70e0a04247db3a6a3aa0bbd0eace9226",
                "sha256": "edb34246e6eb40343c5860fc51b24937698e4fa1ee415917a73ad772a9a1746b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "70e0a04247db3a6a3aa0bbd0eace9226",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2154849,
            "upload_time": "2024-12-13T05:45:58",
            "upload_time_iso_8601": "2024-12-13T05:45:58.814532Z",
            "url": "https://files.pythonhosted.org/packages/ea/39/bfcab4a46d50c467e36fe704f19d8904efead417787806ee210327f68390/cytoolz-1.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd423bc6ee61b0aa47e1cb40819adc1a456d7efa809f0dea9faddacb43fdde8f",
                "md5": "8a922a8201a11f1e5c7bd75ab4a4bbc8",
                "sha256": "0a54da7a8e4348a18d45d4d5bc84af6c716d7f131113a4f1cc45569d37edff1b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a922a8201a11f1e5c7bd75ab4a4bbc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2102302,
            "upload_time": "2024-12-13T05:46:00",
            "upload_time_iso_8601": "2024-12-13T05:46:00.181353Z",
            "url": "https://files.pythonhosted.org/packages/fd/42/3bc6ee61b0aa47e1cb40819adc1a456d7efa809f0dea9faddacb43fdde8f/cytoolz-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "00663f636c6ddea7b18026b90a8c238af472e423b86e427b11df02213689b012",
                "md5": "c5b14d191dd9f0480c1e88739468a7ff",
                "sha256": "241c679c3b1913c0f7259cf1d9639bed5084c86d0051641d537a0980548aa266"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c5b14d191dd9f0480c1e88739468a7ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 1960872,
            "upload_time": "2024-12-13T05:46:01",
            "upload_time_iso_8601": "2024-12-13T05:46:01.612086Z",
            "url": "https://files.pythonhosted.org/packages/00/66/3f636c6ddea7b18026b90a8c238af472e423b86e427b11df02213689b012/cytoolz-1.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4036cb3b7cdd651007b69f9c48e9d104cec7cb8dc53afa1d6a720e5ad08022fa",
                "md5": "ef8d566738e3a63add46c494de4f558b",
                "sha256": "5bfc860251a8f280ac79696fc3343cfc3a7c30b94199e0240b6c9e5b6b01a2a5"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ef8d566738e3a63add46c494de4f558b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2014430,
            "upload_time": "2024-12-13T05:46:03",
            "upload_time_iso_8601": "2024-12-13T05:46:03.022363Z",
            "url": "https://files.pythonhosted.org/packages/40/36/cb3b7cdd651007b69f9c48e9d104cec7cb8dc53afa1d6a720e5ad08022fa/cytoolz-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "883f2e9bd2a16cfd269808922147551dcb2d8b68ba54a2c4deca2fa6a6cd0d5f",
                "md5": "7659c7bef8d59307756674b995237a29",
                "sha256": "c8edd1547014050c1bdad3ff85d25c82bd1c2a3c96830c6181521eb78b9a42b3"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7659c7bef8d59307756674b995237a29",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2003127,
            "upload_time": "2024-12-13T05:46:04",
            "upload_time_iso_8601": "2024-12-13T05:46:04.401142Z",
            "url": "https://files.pythonhosted.org/packages/88/3f/2e9bd2a16cfd269808922147551dcb2d8b68ba54a2c4deca2fa6a6cd0d5f/cytoolz-1.0.1-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c47d08604ff940aa784df8343c387fdf2489b948b714a6afb587775ae94da912",
                "md5": "6933f1057ad4a3cf0b4132c93c2bb956",
                "sha256": "b349bf6162e8de215403d7f35f8a9b4b1853dc2a48e6e1a609a5b1a16868b296"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6933f1057ad4a3cf0b4132c93c2bb956",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2142369,
            "upload_time": "2024-12-13T05:46:06",
            "upload_time_iso_8601": "2024-12-13T05:46:06.004252Z",
            "url": "https://files.pythonhosted.org/packages/c4/7d/08604ff940aa784df8343c387fdf2489b948b714a6afb587775ae94da912/cytoolz-1.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2c639919a0645bdbdf720e97cae107f959ea9d1267fbc3b0d94fc6e1d12ac8f",
                "md5": "c165dbbc35d8a8525011feb993c4305f",
                "sha256": "1b18b35256219b6c3dd0fa037741b85d0bea39c552eab0775816e85a52834140"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "c165dbbc35d8a8525011feb993c4305f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2180427,
            "upload_time": "2024-12-13T05:46:07",
            "upload_time_iso_8601": "2024-12-13T05:46:07.526929Z",
            "url": "https://files.pythonhosted.org/packages/d2/c6/39919a0645bdbdf720e97cae107f959ea9d1267fbc3b0d94fc6e1d12ac8f/cytoolz-1.0.1-cp313-cp313-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d803dbb9d47556ee54337e7e0ac209d17ceff2d2a197c34de08005abc7a7449b",
                "md5": "ec6077ba959fa92b712485800f2b232b",
                "sha256": "738b2350f340ff8af883eb301054eb724997f795d20d90daec7911c389d61581"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ec6077ba959fa92b712485800f2b232b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2069785,
            "upload_time": "2024-12-13T05:46:10",
            "upload_time_iso_8601": "2024-12-13T05:46:10.122785Z",
            "url": "https://files.pythonhosted.org/packages/d8/03/dbb9d47556ee54337e7e0ac209d17ceff2d2a197c34de08005abc7a7449b/cytoolz-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaf811bb7b8947002231faae3ec2342df5896afbc19eb783a332cce6d219ff79",
                "md5": "a9146d919e976f52873f8f51c3e68765",
                "sha256": "9cbd9c103df54fcca42be55ef40e7baea624ac30ee0b8bf1149f21146d1078d9"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "a9146d919e976f52873f8f51c3e68765",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 320685,
            "upload_time": "2024-12-13T05:46:11",
            "upload_time_iso_8601": "2024-12-13T05:46:11.553684Z",
            "url": "https://files.pythonhosted.org/packages/ea/f8/11bb7b8947002231faae3ec2342df5896afbc19eb783a332cce6d219ff79/cytoolz-1.0.1-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40ebdde173cf2357084ca9423950be1f2f11ab11d65d8bd30165bfb8fd4213e9",
                "md5": "6347eea19ecefa79dd27591b63e6d60a",
                "sha256": "90e577e08d3a4308186d9e1ec06876d4756b1e8164b92971c69739ea17e15297"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6347eea19ecefa79dd27591b63e6d60a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 362898,
            "upload_time": "2024-12-13T05:46:12",
            "upload_time_iso_8601": "2024-12-13T05:46:12.771571Z",
            "url": "https://files.pythonhosted.org/packages/40/eb/dde173cf2357084ca9423950be1f2f11ab11d65d8bd30165bfb8fd4213e9/cytoolz-1.0.1-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60500d4bf1ab5859d32f238ae1b7c368ce577490cce156ca050d3581685ed701",
                "md5": "80129978fa016a21868a7ddf7aaa0d81",
                "sha256": "f3a509e4ac8e711703c368476b9bbce921fcef6ebb87fa3501525f7000e44185"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "80129978fa016a21868a7ddf7aaa0d81",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 404405,
            "upload_time": "2024-12-13T05:46:15",
            "upload_time_iso_8601": "2024-12-13T05:46:15.409247Z",
            "url": "https://files.pythonhosted.org/packages/60/50/0d4bf1ab5859d32f238ae1b7c368ce577490cce156ca050d3581685ed701/cytoolz-1.0.1-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b34c0982d37fb1e99a47ce92bcc6439bb268b841e3b1366a956f32e4d1cab9db",
                "md5": "253d5e67df8a408ba7975b5e2c56ebf5",
                "sha256": "a7eecab6373e933dfbf4fdc0601d8fd7614f8de76793912a103b5fccf98170cd"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "253d5e67df8a408ba7975b5e2c56ebf5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 385287,
            "upload_time": "2024-12-13T05:46:16",
            "upload_time_iso_8601": "2024-12-13T05:46:16.699913Z",
            "url": "https://files.pythonhosted.org/packages/b3/4c/0982d37fb1e99a47ce92bcc6439bb268b841e3b1366a956f32e4d1cab9db/cytoolz-1.0.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3a7f7bd0362782051f9255ae17b2139f041081bfec6a08e6345b841c55fb9a5",
                "md5": "a3263765868e3ddb1410249ed0dc1b79",
                "sha256": "e55ed62087f6e3e30917b5f55350c3b6be6470b849c6566018419cd159d2cebc"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a3263765868e3ddb1410249ed0dc1b79",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1999956,
            "upload_time": "2024-12-13T05:46:18",
            "upload_time_iso_8601": "2024-12-13T05:46:18.013175Z",
            "url": "https://files.pythonhosted.org/packages/b3/a7/f7bd0362782051f9255ae17b2139f041081bfec6a08e6345b841c55fb9a5/cytoolz-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d6473c883ec8097c513963b6b76c34aa7f01a809e02b52983e985b4f1b55e78",
                "md5": "27efd519e1e63b3deb041fa379f8f88e",
                "sha256": "43de33d99a4ccc07234cecd81f385456b55b0ea9c39c9eebf42f024c313728a5"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "27efd519e1e63b3deb041fa379f8f88e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2107500,
            "upload_time": "2024-12-13T05:46:20",
            "upload_time_iso_8601": "2024-12-13T05:46:20.182146Z",
            "url": "https://files.pythonhosted.org/packages/0d/64/73c883ec8097c513963b6b76c34aa7f01a809e02b52983e985b4f1b55e78/cytoolz-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c932a706c812a914ade2bb7e4cdadaef9882aaa16ab8f5224692d308e652a145",
                "md5": "3339b8d2cfbddbad527eaa7d4b596af0",
                "sha256": "139bed875828e1727018aa0982aa140e055cbafccb7fd89faf45cbb4f2a21514"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3339b8d2cfbddbad527eaa7d4b596af0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2090621,
            "upload_time": "2024-12-13T05:46:21",
            "upload_time_iso_8601": "2024-12-13T05:46:21.705101Z",
            "url": "https://files.pythonhosted.org/packages/c9/32/a706c812a914ade2bb7e4cdadaef9882aaa16ab8f5224692d308e652a145/cytoolz-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f4b7b6b8565586678c5dc5d230fc806892cc0da140055dbba359ee3defb7caa",
                "md5": "331c44dfb829a49c382e4a7f349c305b",
                "sha256": "22c12671194b518aa8ce2f4422bd5064f25ab57f410ba0b78705d0a219f4a97a"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "331c44dfb829a49c382e4a7f349c305b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2018656,
            "upload_time": "2024-12-13T05:46:23",
            "upload_time_iso_8601": "2024-12-13T05:46:23.149874Z",
            "url": "https://files.pythonhosted.org/packages/8f/4b/7b6b8565586678c5dc5d230fc806892cc0da140055dbba359ee3defb7caa/cytoolz-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "705f5b8c4b2bf09364b3ddf6b97da9381de5caee105eb13c762d788cac5a4694",
                "md5": "d2b2f88adb25227c0300f3abda5578e1",
                "sha256": "79888f2f7dc25709cd5d37b032a8833741e6a3692c8823be181d542b5999128e"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d2b2f88adb25227c0300f3abda5578e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1921562,
            "upload_time": "2024-12-13T05:46:24",
            "upload_time_iso_8601": "2024-12-13T05:46:24.578127Z",
            "url": "https://files.pythonhosted.org/packages/70/5f/5b8c4b2bf09364b3ddf6b97da9381de5caee105eb13c762d788cac5a4694/cytoolz-1.0.1-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": "781c4f54a94877c741777f42442be8ed61c99b8a6fe2341165a836211539858f",
                "md5": "cc0133495c16de5fbfa1a51ad3ac1cb9",
                "sha256": "51628b4eb41fa25bd428f8f7b5b74fbb05f3ae65fbd265019a0dd1ded4fdf12a"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cc0133495c16de5fbfa1a51ad3ac1cb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1917777,
            "upload_time": "2024-12-13T05:46:26",
            "upload_time_iso_8601": "2024-12-13T05:46:26.045150Z",
            "url": "https://files.pythonhosted.org/packages/78/1c/4f54a94877c741777f42442be8ed61c99b8a6fe2341165a836211539858f/cytoolz-1.0.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b80d5a1b2fa5fc16a60abe7997693a28cd61d7b57525c994a42add625a475df",
                "md5": "889265c58f44f7beae298aeef3b9a5da",
                "sha256": "1db9eb7179285403d2fb56ba1ff6ec35a44921b5e2fa5ca19d69f3f9f0285ea5"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "889265c58f44f7beae298aeef3b9a5da",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1919666,
            "upload_time": "2024-12-13T05:46:27",
            "upload_time_iso_8601": "2024-12-13T05:46:27.380104Z",
            "url": "https://files.pythonhosted.org/packages/5b/80/d5a1b2fa5fc16a60abe7997693a28cd61d7b57525c994a42add625a475df/cytoolz-1.0.1-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04f909cba24298ca161fe8662c9d525cb94b500f7803e46061722a9826a645f7",
                "md5": "036992aa19c9ce219d430ef80a8b2afe",
                "sha256": "08ab7efae08e55812340bfd1b3f09f63848fe291675e2105eab1aa5327d3a16e"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "036992aa19c9ce219d430ef80a8b2afe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2058239,
            "upload_time": "2024-12-13T05:46:30",
            "upload_time_iso_8601": "2024-12-13T05:46:30.924180Z",
            "url": "https://files.pythonhosted.org/packages/04/f9/09cba24298ca161fe8662c9d525cb94b500f7803e46061722a9826a645f7/cytoolz-1.0.1-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae2996a67a21efe83f45cf26f3c0bbeefb2663488365d704a4a85394740176f0",
                "md5": "0d91e460afb231b99d230b732f7489a2",
                "sha256": "e5fdc5264f884e7c0a1711a81dff112708a64b9c8561654ee578bfdccec6be09"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "0d91e460afb231b99d230b732f7489a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2062239,
            "upload_time": "2024-12-13T05:46:32",
            "upload_time_iso_8601": "2024-12-13T05:46:32.432510Z",
            "url": "https://files.pythonhosted.org/packages/ae/29/96a67a21efe83f45cf26f3c0bbeefb2663488365d704a4a85394740176f0/cytoolz-1.0.1-cp38-cp38-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9b0a038045a4ed33e3ee98b4605f7367749da01eccf5d8d55b3ace0350d85c0",
                "md5": "2192109d8f94d6e495d4499816b92d13",
                "sha256": "90d6a2e6ab891043ee655ec99d5e77455a9bee9e1131bdfcfb745edde81200dd"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2192109d8f94d6e495d4499816b92d13",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1972408,
            "upload_time": "2024-12-13T05:46:35",
            "upload_time_iso_8601": "2024-12-13T05:46:35.506042Z",
            "url": "https://files.pythonhosted.org/packages/d9/b0/a038045a4ed33e3ee98b4605f7367749da01eccf5d8d55b3ace0350d85c0/cytoolz-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2992579765ba89aaaf4ddf41be526b2cc89598a389a310ae7f57414c83cd1a9f",
                "md5": "8b6bca924663b408df4c94a46884c881",
                "sha256": "08946e083faa5147751b34fbf78ab931f149ef758af5c1092932b459e18dcf5c"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "8b6bca924663b408df4c94a46884c881",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 325949,
            "upload_time": "2024-12-13T05:46:36",
            "upload_time_iso_8601": "2024-12-13T05:46:36.938993Z",
            "url": "https://files.pythonhosted.org/packages/29/92/579765ba89aaaf4ddf41be526b2cc89598a389a310ae7f57414c83cd1a9f/cytoolz-1.0.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f08621133091a51a991261bb2da95882420616360390d8875b21b5c8212889f",
                "md5": "b8cd3a43f8e04f8bb0d7352a70e00851",
                "sha256": "a91b4e10a9c03796c0dc93e47ebe25bb41ecc6fafc3cf5197c603cf767a3d44d"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b8cd3a43f8e04f8bb0d7352a70e00851",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 368331,
            "upload_time": "2024-12-13T05:46:38",
            "upload_time_iso_8601": "2024-12-13T05:46:38.807453Z",
            "url": "https://files.pythonhosted.org/packages/2f/08/621133091a51a991261bb2da95882420616360390d8875b21b5c8212889f/cytoolz-1.0.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79bc16442ead0b86f64c75602d47c158ef22d5c82a004fcff3b3954b9102d255",
                "md5": "b49d9873f4df06447a4793b799b2c028",
                "sha256": "980c323e626ba298b77ae62871b2de7c50b9d7219e2ddf706f52dd34b8be7349"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b49d9873f4df06447a4793b799b2c028",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 405818,
            "upload_time": "2024-12-13T05:46:41",
            "upload_time_iso_8601": "2024-12-13T05:46:41.324293Z",
            "url": "https://files.pythonhosted.org/packages/79/bc/16442ead0b86f64c75602d47c158ef22d5c82a004fcff3b3954b9102d255/cytoolz-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7733e660a734fcda5f83336cab7ce20d6011dfdc67f6e0e6d833badedf2a3b21",
                "md5": "f615f8d181434966687552ef4276eaca",
                "sha256": "45f6fa1b512bc2a0f2de5123db932df06c7f69d12874fe06d67772b2828e2c8b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f615f8d181434966687552ef4276eaca",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 386289,
            "upload_time": "2024-12-13T05:46:42",
            "upload_time_iso_8601": "2024-12-13T05:46:42.690514Z",
            "url": "https://files.pythonhosted.org/packages/77/33/e660a734fcda5f83336cab7ce20d6011dfdc67f6e0e6d833badedf2a3b21/cytoolz-1.0.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa06d776935b9f5753ee84630857b95e6f77656266e3ad456c97ae78829fc983",
                "md5": "5f5ecf6c5119389a4aed13654af197a1",
                "sha256": "f93f42d9100c415155ad1f71b0de362541afd4ac95e3153467c4c79972521b6b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5f5ecf6c5119389a4aed13654af197a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1946297,
            "upload_time": "2024-12-13T05:46:44",
            "upload_time_iso_8601": "2024-12-13T05:46:44.118821Z",
            "url": "https://files.pythonhosted.org/packages/fa/06/d776935b9f5753ee84630857b95e6f77656266e3ad456c97ae78829fc983/cytoolz-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc4ed0babe9f3b81b248c92be2c6eb1b3d8bf4f663817a518910348a5fac1f12",
                "md5": "7425aa4ea4b09c7a39d93a93da74bbd2",
                "sha256": "a76d20dec9c090cdf4746255bbf06a762e8cc29b5c9c1d138c380bbdb3122ade"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7425aa4ea4b09c7a39d93a93da74bbd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2028082,
            "upload_time": "2024-12-13T05:46:47",
            "upload_time_iso_8601": "2024-12-13T05:46:47.021282Z",
            "url": "https://files.pythonhosted.org/packages/bc/4e/d0babe9f3b81b248c92be2c6eb1b3d8bf4f663817a518910348a5fac1f12/cytoolz-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7079280c26569953e61e490f8ebc0928f8dc5ec8e455144e425887aece6278e5",
                "md5": "05f427beacb3cfacb602479fc0621dd6",
                "sha256": "239039585487c69aa50c5b78f6a422016297e9dea39755761202fb9f0530fe87"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "05f427beacb3cfacb602479fc0621dd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2012925,
            "upload_time": "2024-12-13T05:46:49",
            "upload_time_iso_8601": "2024-12-13T05:46:49.452506Z",
            "url": "https://files.pythonhosted.org/packages/70/79/280c26569953e61e490f8ebc0928f8dc5ec8e455144e425887aece6278e5/cytoolz-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ab18efbd06ba3dcfe0c5e44e68d098781e73535abcc7a49dd6ea88d5be4c98f",
                "md5": "a6088d7ec9282f89eb2ba631663d4767",
                "sha256": "c28307640ca2ab57b9fbf0a834b9bf563958cd9e038378c3a559f45f13c3c541"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6088d7ec9282f89eb2ba631663d4767",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1969409,
            "upload_time": "2024-12-13T05:46:52",
            "upload_time_iso_8601": "2024-12-13T05:46:52.244826Z",
            "url": "https://files.pythonhosted.org/packages/9a/b1/8efbd06ba3dcfe0c5e44e68d098781e73535abcc7a49dd6ea88d5be4c98f/cytoolz-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cee8064953c28a6eccb97267285da816b691f524e2d2265b559d95dbe741340",
                "md5": "88e8783ecd94fb0356b91ab6c3923872",
                "sha256": "454880477bb901cee3a60f6324ec48c95d45acc7fecbaa9d49a5af737ded0595"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "88e8783ecd94fb0356b91ab6c3923872",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1873884,
            "upload_time": "2024-12-13T05:46:53",
            "upload_time_iso_8601": "2024-12-13T05:46:53.775847Z",
            "url": "https://files.pythonhosted.org/packages/6c/ee/8064953c28a6eccb97267285da816b691f524e2d2265b559d95dbe741340/cytoolz-1.0.1-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": "0581761acff24d29dd2abf867ae2b2ec4c3bed5863492c997d9936d29117e52b",
                "md5": "23f22db85e232f42229726266d6ad687",
                "sha256": "902115d1b1f360fd81e44def30ac309b8641661150fcbdde18ead446982ada6a"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "23f22db85e232f42229726266d6ad687",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1861041,
            "upload_time": "2024-12-13T05:46:55",
            "upload_time_iso_8601": "2024-12-13T05:46:55.743943Z",
            "url": "https://files.pythonhosted.org/packages/05/81/761acff24d29dd2abf867ae2b2ec4c3bed5863492c997d9936d29117e52b/cytoolz-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "087348fc7de900664bdc1a59fb1da9bfa22afc5178bb2590fe5a4c6ddaec8f95",
                "md5": "7108c3965a1978eceef723465d0bbff9",
                "sha256": "e68e6b38473a3a79cee431baa22be31cac39f7df1bf23eaa737eaff42e213883"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7108c3965a1978eceef723465d0bbff9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1864089,
            "upload_time": "2024-12-13T05:46:59",
            "upload_time_iso_8601": "2024-12-13T05:46:59.168484Z",
            "url": "https://files.pythonhosted.org/packages/08/73/48fc7de900664bdc1a59fb1da9bfa22afc5178bb2590fe5a4c6ddaec8f95/cytoolz-1.0.1-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a28ef53bf881bfd226f1ea75446360c9feeb97045bdfa0b75338c0919a93a83f",
                "md5": "45b4036e8401c914e335c8b695cb6826",
                "sha256": "32fba3f63fcb76095b0a22f4bdcc22bc62a2bd2d28d58bf02fd21754c155a3ec"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "45b4036e8401c914e335c8b695cb6826",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2002961,
            "upload_time": "2024-12-13T05:47:00",
            "upload_time_iso_8601": "2024-12-13T05:47:00.679439Z",
            "url": "https://files.pythonhosted.org/packages/a2/8e/f53bf881bfd226f1ea75446360c9feeb97045bdfa0b75338c0919a93a83f/cytoolz-1.0.1-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fafd3583907d14c0828bed0758111a44dce38dea87186f19b96ba8bea58fce9f",
                "md5": "70a101064fc4ff4e7eac64ad8cd86fce",
                "sha256": "0724ba4cf41eb40b6cf75250820ab069e44bdf4183ff78857aaf4f0061551075"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "70a101064fc4ff4e7eac64ad8cd86fce",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2008125,
            "upload_time": "2024-12-13T05:47:02",
            "upload_time_iso_8601": "2024-12-13T05:47:02.149956Z",
            "url": "https://files.pythonhosted.org/packages/fa/fd/3583907d14c0828bed0758111a44dce38dea87186f19b96ba8bea58fce9f/cytoolz-1.0.1-cp39-cp39-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f318e27368ac982e813dae1ed737d52e9b896f2499c2150586f46b111119db99",
                "md5": "5e7ab2504a5a3f5dfc702f834b0c684d",
                "sha256": "c42420e0686f887040d5230420ed44f0e960ccbfa29a0d65a3acd9ca52459209"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e7ab2504a5a3f5dfc702f834b0c684d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1908772,
            "upload_time": "2024-12-13T05:47:04",
            "upload_time_iso_8601": "2024-12-13T05:47:04.750906Z",
            "url": "https://files.pythonhosted.org/packages/f3/18/e27368ac982e813dae1ed737d52e9b896f2499c2150586f46b111119db99/cytoolz-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ec56626c4df2a710cd772fb349d48de5435b8907c24838c8a605f286e794dd6",
                "md5": "f183590978a170bd43ad2d190d97a49f",
                "sha256": "4ba8b16358ea56b1fe8e637ec421e36580866f2e787910bac1cf0a6997424a34"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "f183590978a170bd43ad2d190d97a49f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 324277,
            "upload_time": "2024-12-13T05:47:06",
            "upload_time_iso_8601": "2024-12-13T05:47:06.109090Z",
            "url": "https://files.pythonhosted.org/packages/2e/c5/6626c4df2a710cd772fb349d48de5435b8907c24838c8a605f286e794dd6/cytoolz-1.0.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e4f34a4cfe7344d33624780fe299f3c441a94d56bf4313033d24f9d45adc6f6",
                "md5": "6f6039aeea9e16c8a6abd42d5a62a282",
                "sha256": "92d27f84bf44586853d9562bfa3610ecec000149d030f793b4cb614fd9da1813"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6f6039aeea9e16c8a6abd42d5a62a282",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 365849,
            "upload_time": "2024-12-13T05:47:07",
            "upload_time_iso_8601": "2024-12-13T05:47:07.370454Z",
            "url": "https://files.pythonhosted.org/packages/8e/4f/34a4cfe7344d33624780fe299f3c441a94d56bf4313033d24f9d45adc6f6/cytoolz-1.0.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9f7ef2a10daaec5c0f7d781d50758c6187eee484256e356ae8ef178d6c48497",
                "md5": "7530d5fc4a084e2473746d22b0884bda",
                "sha256": "83d19d55738ad9c60763b94f3f6d3c6e4de979aeb8d76841c1401081e0e58d96"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7530d5fc4a084e2473746d22b0884bda",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 345702,
            "upload_time": "2024-12-13T05:47:09",
            "upload_time_iso_8601": "2024-12-13T05:47:09.266502Z",
            "url": "https://files.pythonhosted.org/packages/d9/f7/ef2a10daaec5c0f7d781d50758c6187eee484256e356ae8ef178d6c48497/cytoolz-1.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c81453c84adddedb67ff1546abb86fea04d26e24298c3ceab8436d20122ed0b9",
                "md5": "4961ccfddaf3366f1772cb90429ba0c2",
                "sha256": "f112a71fad6ea824578e6393765ce5c054603afe1471a5c753ff6c67fd872d10"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4961ccfddaf3366f1772cb90429ba0c2",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 385695,
            "upload_time": "2024-12-13T05:47:11",
            "upload_time_iso_8601": "2024-12-13T05:47:11.011710Z",
            "url": "https://files.pythonhosted.org/packages/c8/14/53c84adddedb67ff1546abb86fea04d26e24298c3ceab8436d20122ed0b9/cytoolz-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd803ae356c5e7b8d7dc7d1adb52f6932fee85cd748ed4e1217c269d2dfd610f",
                "md5": "276451d484b2a1d9904fa15e1430003f",
                "sha256": "5a515df8f8aa6e1eaaf397761a6e4aff2eef73b5f920aedf271416d5471ae5ee"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "276451d484b2a1d9904fa15e1430003f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 406261,
            "upload_time": "2024-12-13T05:47:12",
            "upload_time_iso_8601": "2024-12-13T05:47:12.240833Z",
            "url": "https://files.pythonhosted.org/packages/bd/80/3ae356c5e7b8d7dc7d1adb52f6932fee85cd748ed4e1217c269d2dfd610f/cytoolz-1.0.1-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": "0c318e43761ffc82d90bf9cab7e0959712eedcd1e33c211397e143dd42d7af57",
                "md5": "2fd1bbb4ddd3e54f0f9a3a82ac92713f",
                "sha256": "92c398e7b7023460bea2edffe5fcd0a76029580f06c3f6938ac3d198b47156f3"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2fd1bbb4ddd3e54f0f9a3a82ac92713f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 397207,
            "upload_time": "2024-12-13T05:47:13",
            "upload_time_iso_8601": "2024-12-13T05:47:13.561238Z",
            "url": "https://files.pythonhosted.org/packages/0c/31/8e43761ffc82d90bf9cab7e0959712eedcd1e33c211397e143dd42d7af57/cytoolz-1.0.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1b9fe9da37090b6444c65f848a83e390f87d8cb43d6a4df46de1556ad7e5ceb",
                "md5": "dee4f64d91a9cb3be9e2eecd30c3506e",
                "sha256": "3237e56211e03b13df47435b2369f5df281e02b04ad80a948ebd199b7bc10a47"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dee4f64d91a9cb3be9e2eecd30c3506e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 343358,
            "upload_time": "2024-12-13T05:47:16",
            "upload_time_iso_8601": "2024-12-13T05:47:16.291142Z",
            "url": "https://files.pythonhosted.org/packages/d1/b9/fe9da37090b6444c65f848a83e390f87d8cb43d6a4df46de1556ad7e5ceb/cytoolz-1.0.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43c389dcb5dc948c7cf84bf6e8ce819157a054189a85515d0236a663b3dbee5b",
                "md5": "09e41ec0d5af53b7f46f3d99e9d88fa4",
                "sha256": "ba0d1da50aab1909b165f615ba1125c8b01fcc30d606c42a61c42ea0269b5e2c"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "09e41ec0d5af53b7f46f3d99e9d88fa4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 343294,
            "upload_time": "2024-12-13T05:47:18",
            "upload_time_iso_8601": "2024-12-13T05:47:18.885566Z",
            "url": "https://files.pythonhosted.org/packages/43/c3/89dcb5dc948c7cf84bf6e8ce819157a054189a85515d0236a663b3dbee5b/cytoolz-1.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebbebb1ea66e58c11f56fc923a3eaf2cdaeb01469de540cd0eb433907918bf38",
                "md5": "91a7241ff3257c3519dbafc7d4c5d2f8",
                "sha256": "25b6e8dec29aa5a390092d193abd673e027d2c0b50774ae816a31454286c45c7"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "91a7241ff3257c3519dbafc7d4c5d2f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 385808,
            "upload_time": "2024-12-13T05:47:22",
            "upload_time_iso_8601": "2024-12-13T05:47:22.292337Z",
            "url": "https://files.pythonhosted.org/packages/eb/be/bb1ea66e58c11f56fc923a3eaf2cdaeb01469de540cd0eb433907918bf38/cytoolz-1.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e4c8d3f8064be5d324593133235455bc867d735ce1c33ba09cf35563d66b9b3",
                "md5": "077feb123eaeff8bef0cdaf2b17e9b71",
                "sha256": "36cd6989ebb2f18fe9af8f13e3c61064b9f741a40d83dc5afeb0322338ad25f2"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "077feb123eaeff8bef0cdaf2b17e9b71",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 406710,
            "upload_time": "2024-12-13T05:47:23",
            "upload_time_iso_8601": "2024-12-13T05:47:23.668540Z",
            "url": "https://files.pythonhosted.org/packages/9e/4c/8d3f8064be5d324593133235455bc867d735ce1c33ba09cf35563d66b9b3/cytoolz-1.0.1-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": "f7253deda616b5ea3f02a90ea82aa9ce35be39fa01b2c9afd40c851a0c81dc9e",
                "md5": "13bc6074ce05d295b77b5abce044c369",
                "sha256": "a47394f8ab7fca3201f40de61fdeea20a2baffb101485ae14901ea89c3f6c95d"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13bc6074ce05d295b77b5abce044c369",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 397364,
            "upload_time": "2024-12-13T05:47:24",
            "upload_time_iso_8601": "2024-12-13T05:47:24.935030Z",
            "url": "https://files.pythonhosted.org/packages/f7/25/3deda616b5ea3f02a90ea82aa9ce35be39fa01b2c9afd40c851a0c81dc9e/cytoolz-1.0.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2450942a241e11aeedb4602260ebaab2bc08ea94ae7f026f4d500da0cd93faf2",
                "md5": "2212a47fd00a70d4d1c608f5849687a1",
                "sha256": "d00ac423542af944302e034e618fb055a0c4e87ba704cd6a79eacfa6ac83a3c9"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2212a47fd00a70d4d1c608f5849687a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 341976,
            "upload_time": "2024-12-13T05:47:27",
            "upload_time_iso_8601": "2024-12-13T05:47:27.482551Z",
            "url": "https://files.pythonhosted.org/packages/24/50/942a241e11aeedb4602260ebaab2bc08ea94ae7f026f4d500da0cd93faf2/cytoolz-1.0.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99cffcea9849eeedc569d0d00bcab8d0ad07d0d0aa79664e6ff9e8745ccfd9a3",
                "md5": "724aba19cb5e5ffab02f42bcd793d013",
                "sha256": "a5ca923d1fa632f7a4fb33c0766c6fba7f87141a055c305c3e47e256fb99c413"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "724aba19cb5e5ffab02f42bcd793d013",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 344869,
            "upload_time": "2024-12-13T05:47:28",
            "upload_time_iso_8601": "2024-12-13T05:47:28.994427Z",
            "url": "https://files.pythonhosted.org/packages/99/cf/fcea9849eeedc569d0d00bcab8d0ad07d0d0aa79664e6ff9e8745ccfd9a3/cytoolz-1.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c38106e0bd8610ebe1a8717c686e0663227a61cc03ed869b1610e1d8455f746",
                "md5": "f803211dfb149421b12844ebd1942258",
                "sha256": "058bf996bcae9aad3acaeeb937d42e0c77c081081e67e24e9578a6a353cb7fb2"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f803211dfb149421b12844ebd1942258",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 384769,
            "upload_time": "2024-12-13T05:47:30",
            "upload_time_iso_8601": "2024-12-13T05:47:30.309458Z",
            "url": "https://files.pythonhosted.org/packages/9c/38/106e0bd8610ebe1a8717c686e0663227a61cc03ed869b1610e1d8455f746/cytoolz-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ca9ac8a43c3adb93e9ccc42aa01c3fc86a0142f8265e3b869794e6fc471b976",
                "md5": "c919a89581417fef9742779e604f1fd1",
                "sha256": "69e2a1f41a3dad94a17aef4a5cc003323359b9f0a9d63d4cc867cb5690a2551d"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c919a89581417fef9742779e604f1fd1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 404914,
            "upload_time": "2024-12-13T05:47:32",
            "upload_time_iso_8601": "2024-12-13T05:47:32.395811Z",
            "url": "https://files.pythonhosted.org/packages/1c/a9/ac8a43c3adb93e9ccc42aa01c3fc86a0142f8265e3b869794e6fc471b976/cytoolz-1.0.1-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": "e5ae516ffeba7d0b6fe75f99a2a9ab74a5344c4b5b236cd1719bd5e4721f9bbc",
                "md5": "46d0063a418c9b92518936a3471c418a",
                "sha256": "67daeeeadb012ec2b59d63cb29c4f2a2023b0c4957c3342d354b8bb44b209e9a"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "46d0063a418c9b92518936a3471c418a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 396288,
            "upload_time": "2024-12-13T05:47:33",
            "upload_time_iso_8601": "2024-12-13T05:47:33.708267Z",
            "url": "https://files.pythonhosted.org/packages/e5/ae/516ffeba7d0b6fe75f99a2a9ab74a5344c4b5b236cd1719bd5e4721f9bbc/cytoolz-1.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b49093e056d7554601619cf1f171c00f83b8a8f75beed680f35b413433f251c5",
                "md5": "1cabcfa0fe0188a5a33acafb6553c802",
                "sha256": "54d3d36bbf0d4344d1afa22c58725d1668e30ff9de3a8f56b03db1a6da0acb11"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1cabcfa0fe0188a5a33acafb6553c802",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 342845,
            "upload_time": "2024-12-13T05:47:35",
            "upload_time_iso_8601": "2024-12-13T05:47:35.080218Z",
            "url": "https://files.pythonhosted.org/packages/b4/90/93e056d7554601619cf1f171c00f83b8a8f75beed680f35b413433f251c5/cytoolz-1.0.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7f93243eed3a6545c2a33a21f74f655e3fcb5d2192613cd3db81a93369eb339",
                "md5": "0188d305a57a1d96fdc1169e123a2866",
                "sha256": "89cc3161b89e1bb3ed7636f74ed2e55984fd35516904fc878cae216e42b2c7d6"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "0188d305a57a1d96fdc1169e123a2866",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 626652,
            "upload_time": "2024-12-13T05:47:36",
            "upload_time_iso_8601": "2024-12-13T05:47:36.672809Z",
            "url": "https://files.pythonhosted.org/packages/a7/f9/3243eed3a6545c2a33a21f74f655e3fcb5d2192613cd3db81a93369eb339/cytoolz-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-13 05:47:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pytoolz",
    "github_project": "cytoolz",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "cytoolz"
}
        
Elapsed time: 0.41314s