cytoolz


Namecytoolz JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/pytoolz/cytoolz
SummaryCython implementation of Toolz: High performance functional utilities
upload_time2024-10-04 17:13:23
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/e2/4c/ca9b05bdfa28ddbb4a5365c27021a1d4be61db7d8f6b4e5d4e76aa4ba3b7/cytoolz-1.0.0.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.0",
    "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": "4b772afed35b93fdc38c4565ae79aca6b6149d0ea2fc4eeeca9b0adf9da04b9e",
                "md5": "e7c434d4527706b44d38251459f128ca",
                "sha256": "ecf5a887acb8f079ab1b81612b1c889bcbe6611aa7804fd2df46ed310aa5a345"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e7c434d4527706b44d38251459f128ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 403505,
            "upload_time": "2024-10-04T17:10:59",
            "upload_time_iso_8601": "2024-10-04T17:10:59.085818Z",
            "url": "https://files.pythonhosted.org/packages/4b/77/2afed35b93fdc38c4565ae79aca6b6149d0ea2fc4eeeca9b0adf9da04b9e/cytoolz-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8dc6b5af6932b656213883557dcc6b1f843ec302dc02fec4b75bf1356b938f9",
                "md5": "572067ad3ef2f6399b33925ef78f6cdb",
                "sha256": "ef0ef30c1e091d4d59d14d8108a16d50bd227be5d52a47da891da5019ac2f8e4"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "572067ad3ef2f6399b33925ef78f6cdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 383918,
            "upload_time": "2024-10-04T17:11:00",
            "upload_time_iso_8601": "2024-10-04T17:11:00.720292Z",
            "url": "https://files.pythonhosted.org/packages/a8/dc/6b5af6932b656213883557dcc6b1f843ec302dc02fec4b75bf1356b938f9/cytoolz-1.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e8cd42dc240cda418b8241541c240c4696cf99475141c4d58fbe89b8c39bac1",
                "md5": "dddd6517aa352fb39f39f91f7cf3951c",
                "sha256": "7df2dfd679f0517a96ced1cdd22f5c6c6aeeed28d928a82a02bf4c3fd6fd7ac4"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dddd6517aa352fb39f39f91f7cf3951c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1934558,
            "upload_time": "2024-10-04T17:11:01",
            "upload_time_iso_8601": "2024-10-04T17:11:01.984179Z",
            "url": "https://files.pythonhosted.org/packages/2e/8c/d42dc240cda418b8241541c240c4696cf99475141c4d58fbe89b8c39bac1/cytoolz-1.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff74af7863cc407ebf535aec9adf0cb72bbac2f036ec2550726d4d8ab00eb41c",
                "md5": "a978a6d472e21586df1d182c75022ba2",
                "sha256": "8c51452c938e610f57551aa96e34924169c9100c0448bac88c2fb395cbd3538c"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a978a6d472e21586df1d182c75022ba2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2015123,
            "upload_time": "2024-10-04T17:11:04",
            "upload_time_iso_8601": "2024-10-04T17:11:04.104612Z",
            "url": "https://files.pythonhosted.org/packages/ff/74/af7863cc407ebf535aec9adf0cb72bbac2f036ec2550726d4d8ab00eb41c/cytoolz-1.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "019883a0d9051e56e0b26a290439bd15b696c431c91d1dca384370cf9b23f04a",
                "md5": "d8fe992c255fd93c79a427271cc80b5d",
                "sha256": "6433f03910c5e5345d82d6299457c26bf33821224ebb837c6b09d9cdbc414a6c"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d8fe992c255fd93c79a427271cc80b5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2000496,
            "upload_time": "2024-10-04T17:11:05",
            "upload_time_iso_8601": "2024-10-04T17:11:05.804732Z",
            "url": "https://files.pythonhosted.org/packages/01/98/83a0d9051e56e0b26a290439bd15b696c431c91d1dca384370cf9b23f04a/cytoolz-1.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d12dea68ba5d9c07f5d6cdb8ef85ec92f1a573deaad998807d035d2ef71aeb00",
                "md5": "e5605c1211310e2938f9b6be875f64fb",
                "sha256": "389ec328bb535f09e71dfe658bf0041f17194ca4cedaacd39bafe7893497a819"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5605c1211310e2938f9b6be875f64fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1957529,
            "upload_time": "2024-10-04T17:11:07",
            "upload_time_iso_8601": "2024-10-04T17:11:07.658946Z",
            "url": "https://files.pythonhosted.org/packages/d1/2d/ea68ba5d9c07f5d6cdb8ef85ec92f1a573deaad998807d035d2ef71aeb00/cytoolz-1.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7df3e5b6b7128412bcb8d58c5cbd5a785befdc2c633502653937be41a54b2037",
                "md5": "f981042d9374a1b3e19c3cf3a03f4609",
                "sha256": "c64658e1209517ce4b54c1c9269a508b289d8d55fc742760e4b8579eacf09a33"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f981042d9374a1b3e19c3cf3a03f4609",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1863322,
            "upload_time": "2024-10-04T17:11:09",
            "upload_time_iso_8601": "2024-10-04T17:11:09.183557Z",
            "url": "https://files.pythonhosted.org/packages/7d/f3/e5b6b7128412bcb8d58c5cbd5a785befdc2c633502653937be41a54b2037/cytoolz-1.0.0-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": "eeff534c227de78e9c45c6e764b46830640f73390b7fe5dd39556cd4de4fd3b8",
                "md5": "a4b698a2d13856c2b64ce2a4670f0528",
                "sha256": "f6039a9bd5bb988762458b9ca82b39e60ca5e5baae2ba93913990dcc5d19fa88"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a4b698a2d13856c2b64ce2a4670f0528",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1849933,
            "upload_time": "2024-10-04T17:11:10",
            "upload_time_iso_8601": "2024-10-04T17:11:10.832392Z",
            "url": "https://files.pythonhosted.org/packages/ee/ff/534c227de78e9c45c6e764b46830640f73390b7fe5dd39556cd4de4fd3b8/cytoolz-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "efa97a51c084ceba8809f18aacb0bae86caf02aa5d5ebe5d5465819228a690d0",
                "md5": "51efbd61c2f76c6e892874085feb58fe",
                "sha256": "85c9c8c4465ed1b2c8d67003809aec9627b129cb531d2f6cf0bbfe39952e7e4d"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "51efbd61c2f76c6e892874085feb58fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1852341,
            "upload_time": "2024-10-04T17:11:12",
            "upload_time_iso_8601": "2024-10-04T17:11:12.387168Z",
            "url": "https://files.pythonhosted.org/packages/ef/a9/7a51c084ceba8809f18aacb0bae86caf02aa5d5ebe5d5465819228a690d0/cytoolz-1.0.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae019b00fa8956c6b76ffd72fc896b2ba4e06165d7f90e03cf4ff253a4282d01",
                "md5": "1825abb4c9385b7397f8f64187dd4d71",
                "sha256": "49375aad431d76650f94877afb92f09f58b6ff9055079ef4f2cd55313f5a1b39"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1825abb4c9385b7397f8f64187dd4d71",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1989871,
            "upload_time": "2024-10-04T17:11:13",
            "upload_time_iso_8601": "2024-10-04T17:11:13.998430Z",
            "url": "https://files.pythonhosted.org/packages/ae/01/9b00fa8956c6b76ffd72fc896b2ba4e06165d7f90e03cf4ff253a4282d01/cytoolz-1.0.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "305a3857a60ce3083d083fffcac13938ae045d22ee0a55f88b83a22443132e5d",
                "md5": "f0fa3af21bfea524056cac0ba6fb49b6",
                "sha256": "4c45106171c824a61e755355520b646cb35a1987b34bbf5789443823ee137f63"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "f0fa3af21bfea524056cac0ba6fb49b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1994484,
            "upload_time": "2024-10-04T17:11:16",
            "upload_time_iso_8601": "2024-10-04T17:11:16.291831Z",
            "url": "https://files.pythonhosted.org/packages/30/5a/3857a60ce3083d083fffcac13938ae045d22ee0a55f88b83a22443132e5d/cytoolz-1.0.0-cp310-cp310-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c3d8585a635ebeba67f234f7779926519fda732399dd875b7cdff2cb2a3bff7",
                "md5": "b536bb1706fb98ce1dfcb9988184829d",
                "sha256": "3b319a7f0fed5db07d189db4046162ebc183c108df3562a65ba6ebe862d1f634"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b536bb1706fb98ce1dfcb9988184829d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1896072,
            "upload_time": "2024-10-04T17:11:17",
            "upload_time_iso_8601": "2024-10-04T17:11:17.774984Z",
            "url": "https://files.pythonhosted.org/packages/6c/3d/8585a635ebeba67f234f7779926519fda732399dd875b7cdff2cb2a3bff7/cytoolz-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c3f9f208381c12d2c8437ea09eef56f12c6f44af74ef5bc7546ca4fb099979e",
                "md5": "8175b4128480fd9e97f48bf34b061317",
                "sha256": "9770e1b09748ad0d751853d994991e2592a9f8c464a87014365f80dac2e83faa"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "8175b4128480fd9e97f48bf34b061317",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 322319,
            "upload_time": "2024-10-04T17:11:19",
            "upload_time_iso_8601": "2024-10-04T17:11:19.527544Z",
            "url": "https://files.pythonhosted.org/packages/4c/3f/9f208381c12d2c8437ea09eef56f12c6f44af74ef5bc7546ca4fb099979e/cytoolz-1.0.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d795cbc120ba4f70f874481f6ec650d26c265db1645fb5285a81e589d5831073",
                "md5": "fce4e32a157ee3508b192d33d96a9341",
                "sha256": "20194dd02954c00c1f0755e636be75a20781f91a4ac9270c7f747e82d3c7f5a5"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fce4e32a157ee3508b192d33d96a9341",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 363803,
            "upload_time": "2024-10-04T17:11:20",
            "upload_time_iso_8601": "2024-10-04T17:11:20.951365Z",
            "url": "https://files.pythonhosted.org/packages/d7/95/cbc120ba4f70f874481f6ec650d26c265db1645fb5285a81e589d5831073/cytoolz-1.0.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc99b489081777ad02c9bba294c757583416d0bdbd9403017145aba68145c16f",
                "md5": "fbfff32cdfedac7173be8fb60842fba4",
                "sha256": "dffc22fd2c91be64dbdbc462d0786f8e8ac9a275cfa1869a1084d1867d4f67e0"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbfff32cdfedac7173be8fb60842fba4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 406148,
            "upload_time": "2024-10-04T17:11:22",
            "upload_time_iso_8601": "2024-10-04T17:11:22.417582Z",
            "url": "https://files.pythonhosted.org/packages/bc/99/b489081777ad02c9bba294c757583416d0bdbd9403017145aba68145c16f/cytoolz-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2d3a4d58bf89924dbca34e8dbb643b26935e08c16b4a2ee255d43a8b7489939",
                "md5": "a92ffba33e989110875d095887d8ef4b",
                "sha256": "a99e7e29274e293f4ffe20e07f76c2ac753a78f1b40c1828dfc54b2981b2f6c4"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a92ffba33e989110875d095887d8ef4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 384956,
            "upload_time": "2024-10-04T17:11:23",
            "upload_time_iso_8601": "2024-10-04T17:11:23.756968Z",
            "url": "https://files.pythonhosted.org/packages/b2/d3/a4d58bf89924dbca34e8dbb643b26935e08c16b4a2ee255d43a8b7489939/cytoolz-1.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81d44d09e6571ef3b143f668c590a7a00c97ff24e6df6901f457ea7c782cd2ba",
                "md5": "122ec8fce8d4768907c907c97232754d",
                "sha256": "c507a3e0a45c41d66b43f96797290d75d1e7a8549aa03a4a6b8854fdf3f7b8d8"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "122ec8fce8d4768907c907c97232754d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2091688,
            "upload_time": "2024-10-04T17:11:25",
            "upload_time_iso_8601": "2024-10-04T17:11:25.100389Z",
            "url": "https://files.pythonhosted.org/packages/81/d4/4d09e6571ef3b143f668c590a7a00c97ff24e6df6901f457ea7c782cd2ba/cytoolz-1.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d7b68c89bed2e0490e9b946574c3bc79711179f35b1dc5eb31046c535f1bed2",
                "md5": "58972fae5d56106e3af2d16a7e41257e",
                "sha256": "643a593ec272ef7429099e1182a22f64ec2696c00d295d2a5be390db1b7ff176"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "58972fae5d56106e3af2d16a7e41257e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2188448,
            "upload_time": "2024-10-04T17:11:26",
            "upload_time_iso_8601": "2024-10-04T17:11:26.618255Z",
            "url": "https://files.pythonhosted.org/packages/8d/7b/68c89bed2e0490e9b946574c3bc79711179f35b1dc5eb31046c535f1bed2/cytoolz-1.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56a34e536fc7b72fd7495e19180463e8160a4fe1d50ab59a5854fc596621d5c3",
                "md5": "259b999165430adbd65fd187639f1378",
                "sha256": "6ce38e2e42cbae30446190c59b92a8a9029e1806fd79eaf88f48b0fe33003893"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "259b999165430adbd65fd187639f1378",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2174196,
            "upload_time": "2024-10-04T17:11:28",
            "upload_time_iso_8601": "2024-10-04T17:11:28.255511Z",
            "url": "https://files.pythonhosted.org/packages/56/a3/4e536fc7b72fd7495e19180463e8160a4fe1d50ab59a5854fc596621d5c3/cytoolz-1.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a7f0451778af9e22755a95ef4400ee7fc6e41387521ab0f17699593cb07169a",
                "md5": "599f759c25cbd623f09a19446fcd2a9d",
                "sha256": "810a6a168b8c5ecb412fbae3dd6f7ed6c6253a63caf4174ee9794ebd29b2224f"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "599f759c25cbd623f09a19446fcd2a9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2099823,
            "upload_time": "2024-10-04T17:11:29",
            "upload_time_iso_8601": "2024-10-04T17:11:29.995323Z",
            "url": "https://files.pythonhosted.org/packages/5a/7f/0451778af9e22755a95ef4400ee7fc6e41387521ab0f17699593cb07169a/cytoolz-1.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58b78ffdef1ac8f74b0cc650b9d4a74d93d911a7e20fcf7cc0abac0f4bce225f",
                "md5": "d590f3e3d75dabe8d1cc81dc09a0fa4c",
                "sha256": "0ce8a2a85c0741c1b19b16e6782c4a5abc54c3caecda66793447112ab2fa9884"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d590f3e3d75dabe8d1cc81dc09a0fa4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1996733,
            "upload_time": "2024-10-04T17:11:31",
            "upload_time_iso_8601": "2024-10-04T17:11:31.544721Z",
            "url": "https://files.pythonhosted.org/packages/58/b7/8ffdef1ac8f74b0cc650b9d4a74d93d911a7e20fcf7cc0abac0f4bce225f/cytoolz-1.0.0-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": "1cab9c694c883f3038d167b797cc55c64c2bdb64146428000cea15f235f30a0f",
                "md5": "886abbb725bf7101f76147e84eba9ffd",
                "sha256": "ea4ac72e6b830861035c4c7999af8e55813f57c6d1913a3d93cc4a6babc27bf7"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "886abbb725bf7101f76147e84eba9ffd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2013725,
            "upload_time": "2024-10-04T17:11:33",
            "upload_time_iso_8601": "2024-10-04T17:11:33.246866Z",
            "url": "https://files.pythonhosted.org/packages/1c/ab/9c694c883f3038d167b797cc55c64c2bdb64146428000cea15f235f30a0f/cytoolz-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6cdf859faaee91c795dc969c79cd38159031f373828d44b0b18999feb7d9a44d",
                "md5": "e170fe0a42d22621d20e391cf9027f1d",
                "sha256": "a09cdfb21dfb38aa04df43e7546a41f673377eb5485da88ceb784e327ec7603b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "e170fe0a42d22621d20e391cf9027f1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1994851,
            "upload_time": "2024-10-04T17:11:34",
            "upload_time_iso_8601": "2024-10-04T17:11:34.637616Z",
            "url": "https://files.pythonhosted.org/packages/6c/df/859faaee91c795dc969c79cd38159031f373828d44b0b18999feb7d9a44d/cytoolz-1.0.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "342a26ac5a34e859c5ba32351f5a74492f4ed12e7a7e75b6afccf11c4100aa70",
                "md5": "0bed872f9f08534a8f9adc2e8e1d9256",
                "sha256": "658dd85deb375ff7af990a674e5c9058cef1c9d1f5dc89bc87b77be499348144"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0bed872f9f08534a8f9adc2e8e1d9256",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2155343,
            "upload_time": "2024-10-04T17:11:36",
            "upload_time_iso_8601": "2024-10-04T17:11:36.316035Z",
            "url": "https://files.pythonhosted.org/packages/34/2a/26ac5a34e859c5ba32351f5a74492f4ed12e7a7e75b6afccf11c4100aa70/cytoolz-1.0.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d41f687d2e40407b29bfcce36a7d456dad368283ea543aa39da53bcc119974e",
                "md5": "c9a88b9f90b9b62e02715cccf60a8cde",
                "sha256": "9715d1ff5576919d10b68f17241375f6a1eec8961c25b78a83e6ef1487053f39"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "c9a88b9f90b9b62e02715cccf60a8cde",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2163507,
            "upload_time": "2024-10-04T17:11:39",
            "upload_time_iso_8601": "2024-10-04T17:11:39.565569Z",
            "url": "https://files.pythonhosted.org/packages/3d/41/f687d2e40407b29bfcce36a7d456dad368283ea543aa39da53bcc119974e/cytoolz-1.0.0-cp311-cp311-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "397c70d529f909d97ea214d59923c19e3d05a3768fe8e2066542b72550a31ca4",
                "md5": "1fdbbc45c107944941ed19ae68086f7b",
                "sha256": "f370a1f1f1afc5c1c8cc5edc1cfe0ba444263a0772af7ce094be8e734f41769d"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1fdbbc45c107944941ed19ae68086f7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2054428,
            "upload_time": "2024-10-04T17:11:41",
            "upload_time_iso_8601": "2024-10-04T17:11:41.790871Z",
            "url": "https://files.pythonhosted.org/packages/39/7c/70d529f909d97ea214d59923c19e3d05a3768fe8e2066542b72550a31ca4/cytoolz-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a4a7bb2eafe4077f6d9867547ca74ca4b75bc8a081e32a47e186e5c067f6cab",
                "md5": "9ed7184f3503ba201ebffc30839c6822",
                "sha256": "dbb2ec1177dca700f3db2127e572da20de280c214fc587b2a11c717fc421af56"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "9ed7184f3503ba201ebffc30839c6822",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 322300,
            "upload_time": "2024-10-04T17:11:43",
            "upload_time_iso_8601": "2024-10-04T17:11:43.276698Z",
            "url": "https://files.pythonhosted.org/packages/5a/4a/7bb2eafe4077f6d9867547ca74ca4b75bc8a081e32a47e186e5c067f6cab/cytoolz-1.0.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5aeda1c955444343224ab1317a41f6575bc640055eb2495e8f9175f8f28bd776",
                "md5": "a44a45885fa87a72b67c6fd3841d88c6",
                "sha256": "0983eee73df86e54bb4a79fcc4996aa8b8368fdbf43897f02f9c3bf39c4dc4fb"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a44a45885fa87a72b67c6fd3841d88c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 365539,
            "upload_time": "2024-10-04T17:11:44",
            "upload_time_iso_8601": "2024-10-04T17:11:44.605522Z",
            "url": "https://files.pythonhosted.org/packages/5a/ed/a1c955444343224ab1317a41f6575bc640055eb2495e8f9175f8f28bd776/cytoolz-1.0.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "282ea8b71f74ee75f33164bfbc6324ddd1e8d0f425255b1c930141516f51d539",
                "md5": "ba77eedc199f052eaf6396f0508c87f8",
                "sha256": "10e3986066dc379e30e225b230754d9f5996aa8d84c2accc69c473c21d261e46"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba77eedc199f052eaf6396f0508c87f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 414110,
            "upload_time": "2024-10-04T17:11:45",
            "upload_time_iso_8601": "2024-10-04T17:11:45.891057Z",
            "url": "https://files.pythonhosted.org/packages/28/2e/a8b71f74ee75f33164bfbc6324ddd1e8d0f425255b1c930141516f51d539/cytoolz-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c60a999af6bb896375b0c687e292a3dcd4edb338a2764bbac40c0ce11eb21c64",
                "md5": "6dca1613013134b00d9185b1d719ae46",
                "sha256": "16576f1bb143ee2cb9f719fcc4b845879fb121f9075c7c5e8a5ff4854bd02fc6"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6dca1613013134b00d9185b1d719ae46",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 390900,
            "upload_time": "2024-10-04T17:11:47",
            "upload_time_iso_8601": "2024-10-04T17:11:47.265325Z",
            "url": "https://files.pythonhosted.org/packages/c6/0a/999af6bb896375b0c687e292a3dcd4edb338a2764bbac40c0ce11eb21c64/cytoolz-1.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "300402f0ee5339f8c6ef785f06caee85e17e8e0b406e7e553c8fd99a55ff8390",
                "md5": "7e738b89eab2aed3463f3034a12410d8",
                "sha256": "3faa25a1840b984315e8b3ae517312375f4273ffc9a2f035f548b7f916884f37"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7e738b89eab2aed3463f3034a12410d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2090729,
            "upload_time": "2024-10-04T17:11:48",
            "upload_time_iso_8601": "2024-10-04T17:11:48.755994Z",
            "url": "https://files.pythonhosted.org/packages/30/04/02f0ee5339f8c6ef785f06caee85e17e8e0b406e7e553c8fd99a55ff8390/cytoolz-1.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04de296ded5f81ada90ae4db8c06cc34b142cf6c51fabb4c3c78583abba91c36",
                "md5": "0b71bf99f98026586241ae8269277e8c",
                "sha256": "781fce70a277b20fd95dc66811d1a97bb07b611ceea9bda8b7dd3c6a4b05d59a"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0b71bf99f98026586241ae8269277e8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2155926,
            "upload_time": "2024-10-04T17:11:50",
            "upload_time_iso_8601": "2024-10-04T17:11:50.309770Z",
            "url": "https://files.pythonhosted.org/packages/04/de/296ded5f81ada90ae4db8c06cc34b142cf6c51fabb4c3c78583abba91c36/cytoolz-1.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccced5782bdd3d2fd16d87e83e70e14fcfa65ba67ba21cf7e1007505baef7d79",
                "md5": "b6adf20b5b994a21590523b68d36088b",
                "sha256": "7a562c25338eb24d419d1e80a7ae12133844ce6fdeb4ab54459daf250088a1b2"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b6adf20b5b994a21590523b68d36088b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2171893,
            "upload_time": "2024-10-04T17:11:51",
            "upload_time_iso_8601": "2024-10-04T17:11:51.755144Z",
            "url": "https://files.pythonhosted.org/packages/cc/ce/d5782bdd3d2fd16d87e83e70e14fcfa65ba67ba21cf7e1007505baef7d79/cytoolz-1.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d00222a8c74ff13f8a08e8cacd0a0aa34da3a6e3637cf477e376efc61f7567e5",
                "md5": "77a51078a0bbeb44878d2b25004fc71a",
                "sha256": "f29d8330aaf070304f7cd5cb7e73e198753624eb0aec278557cccd460c699b5b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "77a51078a0bbeb44878d2b25004fc71a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2125265,
            "upload_time": "2024-10-04T17:11:53",
            "upload_time_iso_8601": "2024-10-04T17:11:53.418132Z",
            "url": "https://files.pythonhosted.org/packages/d0/02/22a8c74ff13f8a08e8cacd0a0aa34da3a6e3637cf477e376efc61f7567e5/cytoolz-1.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50d1a3f2e2ced1fa7e2b5607d05ed4de9951491004a4804e96f78778d11bebd4",
                "md5": "a771c3f469624917bd4fdf67d094da93",
                "sha256": "98a96c54aa55ed9c7cdb23c2f0df39a7b4ee518ac54888480b5bdb5ef69c7ef0"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a771c3f469624917bd4fdf67d094da93",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1973962,
            "upload_time": "2024-10-04T17:11:54",
            "upload_time_iso_8601": "2024-10-04T17:11:54.996513Z",
            "url": "https://files.pythonhosted.org/packages/50/d1/a3f2e2ced1fa7e2b5607d05ed4de9951491004a4804e96f78778d11bebd4/cytoolz-1.0.0-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": "3e10174d9585e1011824e2e6e79380f8b1c6e49070c35a278d823d996d1c11e6",
                "md5": "c76a878eacc5bc02d32f17be3976854b",
                "sha256": "287d6d7f475882c2ddcbedf8da9a9b37d85b77690779a2d1cdceb5ae3998d52e"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c76a878eacc5bc02d32f17be3976854b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2021691,
            "upload_time": "2024-10-04T17:11:57",
            "upload_time_iso_8601": "2024-10-04T17:11:57.295615Z",
            "url": "https://files.pythonhosted.org/packages/3e/10/174d9585e1011824e2e6e79380f8b1c6e49070c35a278d823d996d1c11e6/cytoolz-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84aabebdca3ae140698d3d4fe75ffd4c87a15ee999cee6b994e0831e5a24cdd7",
                "md5": "97cbde29ca3f369d2b6b137f085e4a1c",
                "sha256": "05a871688df749b982839239fcd3f8ec3b3b4853775d575ff9cd335fa7c75035"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "97cbde29ca3f369d2b6b137f085e4a1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2010169,
            "upload_time": "2024-10-04T17:11:58",
            "upload_time_iso_8601": "2024-10-04T17:11:58.751899Z",
            "url": "https://files.pythonhosted.org/packages/84/aa/bebdca3ae140698d3d4fe75ffd4c87a15ee999cee6b994e0831e5a24cdd7/cytoolz-1.0.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e9f8d5940c953534a4d2ae4419bb4fdc1eb5559345fed1f4838708073d7e6b4",
                "md5": "b294853c06f1d666ae6c97dfff960d0b",
                "sha256": "28bb88e1e2f7d6d4b8e0890b06d292c568984d717de3e8381f2ca1dd12af6470"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b294853c06f1d666ae6c97dfff960d0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2154314,
            "upload_time": "2024-10-04T17:12:00",
            "upload_time_iso_8601": "2024-10-04T17:12:00.283615Z",
            "url": "https://files.pythonhosted.org/packages/2e/9f/8d5940c953534a4d2ae4419bb4fdc1eb5559345fed1f4838708073d7e6b4/cytoolz-1.0.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84bfa5414601c95afde30a0c038c5d6273c188f1da8ff25a057bd0c683679e5c",
                "md5": "3e841d77f629dff7677f3044bd2651b2",
                "sha256": "576a4f1fc73d8836b10458b583f915849da6e4f7914f4ecb623ad95c2508cad5"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "3e841d77f629dff7677f3044bd2651b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2188368,
            "upload_time": "2024-10-04T17:12:01",
            "upload_time_iso_8601": "2024-10-04T17:12:01.870166Z",
            "url": "https://files.pythonhosted.org/packages/84/bf/a5414601c95afde30a0c038c5d6273c188f1da8ff25a057bd0c683679e5c/cytoolz-1.0.0-cp312-cp312-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67fe990ea30d56b9b6602f3bf4af77a1bfd9233e6ffb761b11b8864619fed508",
                "md5": "656d24d99eebf4e16a9c7d7a04b028da",
                "sha256": "509ed3799c47e4ada14f63e41e8f540ac6e2dab97d5d7298934e6abb9d3830ec"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "656d24d99eebf4e16a9c7d7a04b028da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2077906,
            "upload_time": "2024-10-04T17:12:03",
            "upload_time_iso_8601": "2024-10-04T17:12:03.553592Z",
            "url": "https://files.pythonhosted.org/packages/67/fe/990ea30d56b9b6602f3bf4af77a1bfd9233e6ffb761b11b8864619fed508/cytoolz-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab9594b936501e1e23460732631e5d7c6efc4f6c09df21a594dfca9bf30b9411",
                "md5": "4528264da66c112107bdca2fd9ecac94",
                "sha256": "9ce25f02b910630f6dc2540dd1e26c9326027ddde6c59f8cab07c56acc70714c"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "4528264da66c112107bdca2fd9ecac94",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 322445,
            "upload_time": "2024-10-04T17:12:05",
            "upload_time_iso_8601": "2024-10-04T17:12:05.047969Z",
            "url": "https://files.pythonhosted.org/packages/ab/95/94b936501e1e23460732631e5d7c6efc4f6c09df21a594dfca9bf30b9411/cytoolz-1.0.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be04a49b73591b132be5a28c0670229629a3c002cfac59582a1d38b16bdc6fed",
                "md5": "d840c87a4fa520f3bac46f53f295a7f6",
                "sha256": "7e53cfcce87e05b7f0ae2fb2b3e5820048cd0bb7b701e92bd8f75c9fbb7c9ae9"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d840c87a4fa520f3bac46f53f295a7f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 364595,
            "upload_time": "2024-10-04T17:12:06",
            "upload_time_iso_8601": "2024-10-04T17:12:06.304536Z",
            "url": "https://files.pythonhosted.org/packages/be/04/a49b73591b132be5a28c0670229629a3c002cfac59582a1d38b16bdc6fed/cytoolz-1.0.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be985687eb167f90a382f76d108dc54ca629a9bb7d654e48e2b97db547c4e012",
                "md5": "88756b663c31ac7412b51c220ba163d1",
                "sha256": "7d56569dfe67a39ce74ffff0dc12cf0a3d1aae709667a303fe8f2dd5fd004fdf"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88756b663c31ac7412b51c220ba163d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 404389,
            "upload_time": "2024-10-04T17:12:07",
            "upload_time_iso_8601": "2024-10-04T17:12:07.594167Z",
            "url": "https://files.pythonhosted.org/packages/be/98/5687eb167f90a382f76d108dc54ca629a9bb7d654e48e2b97db547c4e012/cytoolz-1.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "330cee71b2af92461ba35d81f32263a0e53ce1a92659ff050e611f5a0238e531",
                "md5": "1c2d68b2f61ca075e29f76fa72def927",
                "sha256": "035c8bb4706dcf93a89fb35feadff67e9301935bf6bb864cd2366923b69d9a29"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1c2d68b2f61ca075e29f76fa72def927",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 385273,
            "upload_time": "2024-10-04T17:12:09",
            "upload_time_iso_8601": "2024-10-04T17:12:09.550559Z",
            "url": "https://files.pythonhosted.org/packages/33/0c/ee71b2af92461ba35d81f32263a0e53ce1a92659ff050e611f5a0238e531/cytoolz-1.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "420690fe8ba5548b6e27fa947adb6569c845aa2c7131c003b47e951b05dddbb3",
                "md5": "7fbca0ffbe08fccf0246ae8bb810cbf2",
                "sha256": "27c684799708bdc7ee7acfaf464836e1b4dec0996815c1d5efd6a92a4356a562"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7fbca0ffbe08fccf0246ae8bb810cbf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1999952,
            "upload_time": "2024-10-04T17:12:11",
            "upload_time_iso_8601": "2024-10-04T17:12:11.364294Z",
            "url": "https://files.pythonhosted.org/packages/42/06/90fe8ba5548b6e27fa947adb6569c845aa2c7131c003b47e951b05dddbb3/cytoolz-1.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aacad6e67be442382578255c531d2b5245ae6c95eede118040f892116b920a7f",
                "md5": "aced156856adbbc8a4c00b63539505ac",
                "sha256": "44ab57cfc922b15d94899f980d76759ef9e0256912dfab70bf2561bea9cd5b19"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "aced156856adbbc8a4c00b63539505ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2107490,
            "upload_time": "2024-10-04T17:12:13",
            "upload_time_iso_8601": "2024-10-04T17:12:13.384116Z",
            "url": "https://files.pythonhosted.org/packages/aa/ca/d6e67be442382578255c531d2b5245ae6c95eede118040f892116b920a7f/cytoolz-1.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d6b539178e27002770c210e0d9e88e50227d42ce656e3ae17f09afcc6e1e0f2",
                "md5": "75bd4445ccc79efa404635f5ff3067e3",
                "sha256": "478af5ecc066da093d7660b23d0b465a7f44179739937afbded8af00af412eb6"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "75bd4445ccc79efa404635f5ff3067e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2090615,
            "upload_time": "2024-10-04T17:12:14",
            "upload_time_iso_8601": "2024-10-04T17:12:14.956547Z",
            "url": "https://files.pythonhosted.org/packages/0d/6b/539178e27002770c210e0d9e88e50227d42ce656e3ae17f09afcc6e1e0f2/cytoolz-1.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfedd819b878c66b1c04e81780ad55c8104825010f86161f30d58685b080382b",
                "md5": "72431640dd789ec973d0037e58b23ddb",
                "sha256": "da1f82a7828a42468ea2820a25b6e56461361390c29dcd4d68beccfa1b71066b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72431640dd789ec973d0037e58b23ddb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2018646,
            "upload_time": "2024-10-04T17:12:16",
            "upload_time_iso_8601": "2024-10-04T17:12:16.624287Z",
            "url": "https://files.pythonhosted.org/packages/df/ed/d819b878c66b1c04e81780ad55c8104825010f86161f30d58685b080382b/cytoolz-1.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e44bb6806124ee2b55e15a7fcce0d3f2d87aa7f31737c56af292375ada750cf5",
                "md5": "c44471433ea7e935ac5e26477c137278",
                "sha256": "6c371b3114d38ee717780b239179e88d5d358fe759a00dcf07691b8922bbc762"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c44471433ea7e935ac5e26477c137278",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1921552,
            "upload_time": "2024-10-04T17:12:18",
            "upload_time_iso_8601": "2024-10-04T17:12:18.238012Z",
            "url": "https://files.pythonhosted.org/packages/e4/4b/b6806124ee2b55e15a7fcce0d3f2d87aa7f31737c56af292375ada750cf5/cytoolz-1.0.0-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": "62967aee4bf16a7738e96ee0100fad5ec6eb4fabf7855550d1c3f133a2b5d95e",
                "md5": "ed27c655b412b5f3ec16521d0ca2b8ea",
                "sha256": "90b343b2f3b3e77c3832ba19b0b17e95412a5b2e715b05c23a55ba525d1fca49"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ed27c655b412b5f3ec16521d0ca2b8ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1917777,
            "upload_time": "2024-10-04T17:12:19",
            "upload_time_iso_8601": "2024-10-04T17:12:19.977616Z",
            "url": "https://files.pythonhosted.org/packages/62/96/7aee4bf16a7738e96ee0100fad5ec6eb4fabf7855550d1c3f133a2b5d95e/cytoolz-1.0.0-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dec19b4e7771e989ff28eafaa139a154480ed9194c37bff0a4774606644e4c2b",
                "md5": "f008f2bdee3eb104746b73cd416d8fbd",
                "sha256": "89a554a9ba112403232a54e15e46ff218b33020f3f45c4baf6520ab198b7ad93"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f008f2bdee3eb104746b73cd416d8fbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1919661,
            "upload_time": "2024-10-04T17:12:21",
            "upload_time_iso_8601": "2024-10-04T17:12:21.499000Z",
            "url": "https://files.pythonhosted.org/packages/de/c1/9b4e7771e989ff28eafaa139a154480ed9194c37bff0a4774606644e4c2b/cytoolz-1.0.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c663a43d003a9a2cf2057b59b87a2cec4143e47070557de97ba34868ff16929",
                "md5": "43fe13357d872e4c3f78e3469c3318ca",
                "sha256": "0d603f5e2b1072166745ecdd81384a75757a96a704a5642231eb51969f919d5f"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "43fe13357d872e4c3f78e3469c3318ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2058231,
            "upload_time": "2024-10-04T17:12:23",
            "upload_time_iso_8601": "2024-10-04T17:12:23.155985Z",
            "url": "https://files.pythonhosted.org/packages/9c/66/3a43d003a9a2cf2057b59b87a2cec4143e47070557de97ba34868ff16929/cytoolz-1.0.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "09243fb65dec415d9f0999db4b49c3b2ead67924c35033c30e464ac9a2f3b09d",
                "md5": "53a95f3cfde8177cadb1757e38a7a6b9",
                "sha256": "122ef2425bd3c0419e6e5260d0b18cd25cf74de589cd0184e4a63b24a4641e2e"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "53a95f3cfde8177cadb1757e38a7a6b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2062231,
            "upload_time": "2024-10-04T17:12:25",
            "upload_time_iso_8601": "2024-10-04T17:12:25.199996Z",
            "url": "https://files.pythonhosted.org/packages/09/24/3fb65dec415d9f0999db4b49c3b2ead67924c35033c30e464ac9a2f3b09d/cytoolz-1.0.0-cp38-cp38-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "424257a8f38bc230ec269be1a853f8750694f17f4ec1d97a0056b1513f5d6efb",
                "md5": "c87c56f65f62b6ae65b09ad7c47a291a",
                "sha256": "8819f1f97ebe36efcaf4b550e21677c46ac8a41bed482cf66845f377dd20700d"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c87c56f65f62b6ae65b09ad7c47a291a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1972396,
            "upload_time": "2024-10-04T17:12:27",
            "upload_time_iso_8601": "2024-10-04T17:12:27.402392Z",
            "url": "https://files.pythonhosted.org/packages/42/42/57a8f38bc230ec269be1a853f8750694f17f4ec1d97a0056b1513f5d6efb/cytoolz-1.0.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c460fb5ab69c269afad2fb1c3a7a51649a9a0210315f7ecf176001b2e2d5e7c2",
                "md5": "948c7f43a39ca85ca85bb873c50c66df",
                "sha256": "fcddbb853770dd6e270d89ea8742f0aa42c255a274b9e1620eb04e019b79785e"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "948c7f43a39ca85ca85bb873c50c66df",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 326187,
            "upload_time": "2024-10-04T17:12:28",
            "upload_time_iso_8601": "2024-10-04T17:12:28.906714Z",
            "url": "https://files.pythonhosted.org/packages/c4/60/fb5ab69c269afad2fb1c3a7a51649a9a0210315f7ecf176001b2e2d5e7c2/cytoolz-1.0.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62cf1973b9cd45375eecdc92022f52225b0ce94564c920837febfa818b4e04aa",
                "md5": "ca2da9e8435888dfdfd5ac9c7bb64055",
                "sha256": "ca526905a014a38cc23ae78635dc51d0462c5c24425b22c08beed9ff2ee03845"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ca2da9e8435888dfdfd5ac9c7bb64055",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 368493,
            "upload_time": "2024-10-04T17:12:30",
            "upload_time_iso_8601": "2024-10-04T17:12:30.777371Z",
            "url": "https://files.pythonhosted.org/packages/62/cf/1973b9cd45375eecdc92022f52225b0ce94564c920837febfa818b4e04aa/cytoolz-1.0.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a2325205266c75212bdb417c44d9d353b751b74b22d205915c62566c820f1a9",
                "md5": "910f4dbbe059e9c579b86ef7d723df14",
                "sha256": "05df5ff1cdd198fb57e7368623662578c950be0b14883cadfb9ee4098415e1e5"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "910f4dbbe059e9c579b86ef7d723df14",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 405813,
            "upload_time": "2024-10-04T17:12:32",
            "upload_time_iso_8601": "2024-10-04T17:12:32.826935Z",
            "url": "https://files.pythonhosted.org/packages/9a/23/25205266c75212bdb417c44d9d353b751b74b22d205915c62566c820f1a9/cytoolz-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71a17de79ae7f87c24a5c6aeedba78a465b3a095945a568200326501c53ae06d",
                "md5": "fc23e33e194eab5bc3a77da7c7a7c3ab",
                "sha256": "04a84778f48ebddb26948971dc60948907c876ba33b13f9cbb014fe65b341fc2"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fc23e33e194eab5bc3a77da7c7a7c3ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 386288,
            "upload_time": "2024-10-04T17:12:34",
            "upload_time_iso_8601": "2024-10-04T17:12:34.468104Z",
            "url": "https://files.pythonhosted.org/packages/71/a1/7de79ae7f87c24a5c6aeedba78a465b3a095945a568200326501c53ae06d/cytoolz-1.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34680ca87a17e3c7925eb100d797c8bbf3f9c1849decc6bee86ef06d8337073f",
                "md5": "18fa7cf6f99e3e4fc916a7a7282d3c92",
                "sha256": "f65283b618b4c4df759f57bcf8483865a73f7f268e6d76886c743407c8d26c1c"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "18fa7cf6f99e3e4fc916a7a7282d3c92",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1946289,
            "upload_time": "2024-10-04T17:12:36",
            "upload_time_iso_8601": "2024-10-04T17:12:36.460644Z",
            "url": "https://files.pythonhosted.org/packages/34/68/0ca87a17e3c7925eb100d797c8bbf3f9c1849decc6bee86ef06d8337073f/cytoolz-1.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b774f09a38a764a195ded241043e0f6bc4edc1843276cc002b9cd5af634cb6c0",
                "md5": "46d6c84f4a235ce2a829410bc57bc490",
                "sha256": "388cd07ee9a9e504c735a0a933e53c98586a1c301a64af81f7aa7ff40c747520"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "46d6c84f4a235ce2a829410bc57bc490",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2028077,
            "upload_time": "2024-10-04T17:12:38",
            "upload_time_iso_8601": "2024-10-04T17:12:38.995185Z",
            "url": "https://files.pythonhosted.org/packages/b7/74/f09a38a764a195ded241043e0f6bc4edc1843276cc002b9cd5af634cb6c0/cytoolz-1.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c66fa084845345800d7bcfe730214b731bc46e1406863edb0073b24227cfd7a5",
                "md5": "fb909cf509047644bfb9b607e4654235",
                "sha256": "06d09e9569cfdfc5c082806d4b4582db8023a3ce034097008622bcbac7236f38"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fb909cf509047644bfb9b607e4654235",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2012917,
            "upload_time": "2024-10-04T17:12:41",
            "upload_time_iso_8601": "2024-10-04T17:12:41.051931Z",
            "url": "https://files.pythonhosted.org/packages/c6/6f/a084845345800d7bcfe730214b731bc46e1406863edb0073b24227cfd7a5/cytoolz-1.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "596c41910c59245dafaf34f0ac015943a49167b5fad0de8b456791bbaa37fdae",
                "md5": "bc8f7aac38573859da78d1b60b95ec6f",
                "sha256": "9502bd9e37779cc9893cbab515a474c2ab6af61ed22ac2f7e16033db18fcaa85"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc8f7aac38573859da78d1b60b95ec6f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1969407,
            "upload_time": "2024-10-04T17:12:42",
            "upload_time_iso_8601": "2024-10-04T17:12:42.817620Z",
            "url": "https://files.pythonhosted.org/packages/59/6c/41910c59245dafaf34f0ac015943a49167b5fad0de8b456791bbaa37fdae/cytoolz-1.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba89823f4c389200c0a82ed016ed2ac3f42747667945d86927aed308b31ba8c0",
                "md5": "e0952ac6716fc01f3ed771b1a56f1a25",
                "sha256": "364c2fda148def38003b2c86e8adde1d2aab12411dd50872c244a815262e2fda"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e0952ac6716fc01f3ed771b1a56f1a25",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1873873,
            "upload_time": "2024-10-04T17:12:44",
            "upload_time_iso_8601": "2024-10-04T17:12:44.416655Z",
            "url": "https://files.pythonhosted.org/packages/ba/89/823f4c389200c0a82ed016ed2ac3f42747667945d86927aed308b31ba8c0/cytoolz-1.0.0-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": "8c6cd5c35602079659fa043c92f54d2fa78ade7a6012d522510dc24a5081cd3b",
                "md5": "1037a57e061845aa6dce92fa8460c1c0",
                "sha256": "9b2e945617325242687189966335e785dc0fae316f4c1825baacf56e5a97e65f"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1037a57e061845aa6dce92fa8460c1c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1861034,
            "upload_time": "2024-10-04T17:12:45",
            "upload_time_iso_8601": "2024-10-04T17:12:45.862161Z",
            "url": "https://files.pythonhosted.org/packages/8c/6c/d5c35602079659fa043c92f54d2fa78ade7a6012d522510dc24a5081cd3b/cytoolz-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe5ce7fe8389a34e646fe89dad7c172652e30ced6e34d448f2e1d62f527d19e0",
                "md5": "69795d08b55c8d47629d3a2776df1727",
                "sha256": "0f16907fdc724c55b16776bdb7e629deae81d500fe48cfc3861231753b271355"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "69795d08b55c8d47629d3a2776df1727",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1864073,
            "upload_time": "2024-10-04T17:12:48",
            "upload_time_iso_8601": "2024-10-04T17:12:48.123940Z",
            "url": "https://files.pythonhosted.org/packages/fe/5c/e7fe8389a34e646fe89dad7c172652e30ced6e34d448f2e1d62f527d19e0/cytoolz-1.0.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ac533b2bd9e54b92ec60a9aacd89e000be20e718812109328d0f837bdfbbca4",
                "md5": "128b55b2afaee45d11bc4739b5c91e78",
                "sha256": "d3206c81ca3ba2d7b8fe78f2e116e3028e721148be753308e88dcbbc370bca52"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "128b55b2afaee45d11bc4739b5c91e78",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2002945,
            "upload_time": "2024-10-04T17:12:50",
            "upload_time_iso_8601": "2024-10-04T17:12:50.491168Z",
            "url": "https://files.pythonhosted.org/packages/5a/c5/33b2bd9e54b92ec60a9aacd89e000be20e718812109328d0f837bdfbbca4/cytoolz-1.0.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de666162abc03d4ea964112f8e3c1adc4c2b7f2c4696fccc327b8be6ee22303a",
                "md5": "92d8f130cfb59494d05331307ffdbd0f",
                "sha256": "becce4b13e110b5ac6b23753dcd0c977f4fdccffa31898296e13fd1109e517e3"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl",
            "has_sig": false,
            "md5_digest": "92d8f130cfb59494d05331307ffdbd0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2008118,
            "upload_time": "2024-10-04T17:12:52",
            "upload_time_iso_8601": "2024-10-04T17:12:52.805524Z",
            "url": "https://files.pythonhosted.org/packages/de/66/6162abc03d4ea964112f8e3c1adc4c2b7f2c4696fccc327b8be6ee22303a/cytoolz-1.0.0-cp39-cp39-musllinux_1_2_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef3508121353553de31d144ce3b9cfbf5b8a331a10fc9c8fbb2b74163b2a0c32",
                "md5": "bc952ba3e5252c46176a601ceaa2f379",
                "sha256": "69a7e5e98fd446079b8b8ec5987aec9a31ec3570a6f494baefa6800b783eaf22"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc952ba3e5252c46176a601ceaa2f379",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1908761,
            "upload_time": "2024-10-04T17:12:54",
            "upload_time_iso_8601": "2024-10-04T17:12:54.278049Z",
            "url": "https://files.pythonhosted.org/packages/ef/35/08121353553de31d144ce3b9cfbf5b8a331a10fc9c8fbb2b74163b2a0c32/cytoolz-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84ac80a772201ba560b0eb4a2c5d030fed7a9bcb8fcc68d0bfc7762a17f2b08b",
                "md5": "b4cb2b0fa97bcc0d3803b4406330bf1e",
                "sha256": "b1707b6c3a91676ac83a28a231a14b337dbb4436b937e6b3e4fd44209852a48b"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "b4cb2b0fa97bcc0d3803b4406330bf1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 324443,
            "upload_time": "2024-10-04T17:12:56",
            "upload_time_iso_8601": "2024-10-04T17:12:56.052945Z",
            "url": "https://files.pythonhosted.org/packages/84/ac/80a772201ba560b0eb4a2c5d030fed7a9bcb8fcc68d0bfc7762a17f2b08b/cytoolz-1.0.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45721d512505cb4096d983f34bf5e20d473277fa03987a9af5748b76babe0a3f",
                "md5": "340a162f4dd00dc65ac12ba7371f0df8",
                "sha256": "11d48b8521ef5fe92e099f4fc00717b5d0789c3c90d5d84031b6d3b17dee1700"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "340a162f4dd00dc65ac12ba7371f0df8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 366010,
            "upload_time": "2024-10-04T17:12:57",
            "upload_time_iso_8601": "2024-10-04T17:12:57.449040Z",
            "url": "https://files.pythonhosted.org/packages/45/72/1d512505cb4096d983f34bf5e20d473277fa03987a9af5748b76babe0a3f/cytoolz-1.0.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "167c8b9fc006925b08579ae35293ad7d14fea4ee94edf1efaaa17e1bdde85b9a",
                "md5": "426db0c3e9cc99799536619c5b7fd92a",
                "sha256": "e672712d5dc3094afc6fb346dd4e9c18c1f3c69608ddb8cf3b9f8428f9c26a5c"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "426db0c3e9cc99799536619c5b7fd92a",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 345694,
            "upload_time": "2024-10-04T17:12:58",
            "upload_time_iso_8601": "2024-10-04T17:12:58.843165Z",
            "url": "https://files.pythonhosted.org/packages/16/7c/8b9fc006925b08579ae35293ad7d14fea4ee94edf1efaaa17e1bdde85b9a/cytoolz-1.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76d1159cc7c0c86d6fb8177be437dd6112d90c7f40ef0ceda2102472242b0ccf",
                "md5": "9145750195549d437b42bc08c53b20df",
                "sha256": "86fb208bfb7420e1d0d20065d661310e4a8a6884851d4044f47d37ed4cd7410e"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9145750195549d437b42bc08c53b20df",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 385691,
            "upload_time": "2024-10-04T17:13:00",
            "upload_time_iso_8601": "2024-10-04T17:13:00.362690Z",
            "url": "https://files.pythonhosted.org/packages/76/d1/159cc7c0c86d6fb8177be437dd6112d90c7f40ef0ceda2102472242b0ccf/cytoolz-1.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "439921361970f2d7cce241f116d84e8f5c21f1440414be96d0c8cad7832d35cb",
                "md5": "6b74922975b5f694b609fefcacc9de9d",
                "sha256": "6dbe5fe3b835859fc559eb59bf2775b5a108f7f2cfab0966f3202859d787d8fd"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6b74922975b5f694b609fefcacc9de9d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 406251,
            "upload_time": "2024-10-04T17:13:02",
            "upload_time_iso_8601": "2024-10-04T17:13:02.126419Z",
            "url": "https://files.pythonhosted.org/packages/43/99/21361970f2d7cce241f116d84e8f5c21f1440414be96d0c8cad7832d35cb/cytoolz-1.0.0-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": "d898bc3d6eadb495de0d48c4d738e5ee6f011d8adbf6a3fcc1f7c17d05bc49d3",
                "md5": "2fdbfc20c49365c27a0c78183b938146",
                "sha256": "0cace092dfda174eed09ed871793beb5b65633963bcda5b1632c73a5aceea1ce"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-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": "2fdbfc20c49365c27a0c78183b938146",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 397203,
            "upload_time": "2024-10-04T17:13:04",
            "upload_time_iso_8601": "2024-10-04T17:13:04.191864Z",
            "url": "https://files.pythonhosted.org/packages/d8/98/bc3d6eadb495de0d48c4d738e5ee6f011d8adbf6a3fcc1f7c17d05bc49d3/cytoolz-1.0.0-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": "91b1df1ed78f08abe8781376bd197532e6e4b38bb3595dd82f6a2b8751407a52",
                "md5": "d7f3c20b350ab05c50cbf7c832743738",
                "sha256": "f7a9d816af3be9725c70efe0a6e4352a45d3877751b395014b8eb2f79d7d8d9d"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d7f3c20b350ab05c50cbf7c832743738",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 343504,
            "upload_time": "2024-10-04T17:13:06",
            "upload_time_iso_8601": "2024-10-04T17:13:06.045759Z",
            "url": "https://files.pythonhosted.org/packages/91/b1/df1ed78f08abe8781376bd197532e6e4b38bb3595dd82f6a2b8751407a52/cytoolz-1.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5d3a4bd4d637cda7098335ca24fb34b0e663804ec305b11245c4b6f907c48eda",
                "md5": "8e4625edabdb5371df108437f2b4b038",
                "sha256": "caa7ef840847a23b379e6146760e3a22f15f445656af97e55a435c592125cfa5"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e4625edabdb5371df108437f2b4b038",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 343289,
            "upload_time": "2024-10-04T17:13:07",
            "upload_time_iso_8601": "2024-10-04T17:13:07.561756Z",
            "url": "https://files.pythonhosted.org/packages/5d/3a/4bd4d637cda7098335ca24fb34b0e663804ec305b11245c4b6f907c48eda/cytoolz-1.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f45313cfcd11a0edc77983e539d8999a6c436104fc3ed59c3ce8ea5f5f155c4",
                "md5": "a11db6118a7862a5fbd9afba5258ed57",
                "sha256": "921082fff09ff6e40c12c87b49be044492b2d6bb01d47783995813b76680c7b2"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a11db6118a7862a5fbd9afba5258ed57",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 385806,
            "upload_time": "2024-10-04T17:13:08",
            "upload_time_iso_8601": "2024-10-04T17:13:08.983351Z",
            "url": "https://files.pythonhosted.org/packages/9f/45/313cfcd11a0edc77983e539d8999a6c436104fc3ed59c3ce8ea5f5f155c4/cytoolz-1.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffeb6a8c5e5be4a39be02ab50dcd87790a42c9f1708424abb9399ea46da3838d",
                "md5": "0f8806bef4a72cf1405c4737c602473e",
                "sha256": "a32f1356f3b64dda883583383966948604ac69ca0b7fbcf5f28856e5f9133b4e"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0f8806bef4a72cf1405c4737c602473e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 406707,
            "upload_time": "2024-10-04T17:13:10",
            "upload_time_iso_8601": "2024-10-04T17:13:10.346423Z",
            "url": "https://files.pythonhosted.org/packages/ff/eb/6a8c5e5be4a39be02ab50dcd87790a42c9f1708424abb9399ea46da3838d/cytoolz-1.0.0-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": "7334b1cb772690a37cd6351254ba82b9cef30ec75b731a24655bb39c61b2082e",
                "md5": "f50a6b2d66cb3ce3d528dd09293f7f93",
                "sha256": "9af793b1738e4191d15a92e1793f1ffea9f6461022c7b2442f3cb1ea0a4f758a"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-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": "f50a6b2d66cb3ce3d528dd09293f7f93",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 397348,
            "upload_time": "2024-10-04T17:13:12",
            "upload_time_iso_8601": "2024-10-04T17:13:12.454624Z",
            "url": "https://files.pythonhosted.org/packages/73/34/b1cb772690a37cd6351254ba82b9cef30ec75b731a24655bb39c61b2082e/cytoolz-1.0.0-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": "c40e11360e5feb52b9bbb6f3d6ebfcb9617b588381d23f920185616dd89ce4ac",
                "md5": "1eb800549b1fa9b9a08a0d2d8b0f4b66",
                "sha256": "51dfda3983fcc59075c534ce54ca041bb3c80e827ada5d4f25ff7b4049777f94"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1eb800549b1fa9b9a08a0d2d8b0f4b66",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 342098,
            "upload_time": "2024-10-04T17:13:13",
            "upload_time_iso_8601": "2024-10-04T17:13:13.927639Z",
            "url": "https://files.pythonhosted.org/packages/c4/0e/11360e5feb52b9bbb6f3d6ebfcb9617b588381d23f920185616dd89ce4ac/cytoolz-1.0.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cf0c7a6abe212a7840cf137d89c39ce0b8a866f0d492f9889c38f27d12de5c6",
                "md5": "65d41655245b0865e11124944327beb1",
                "sha256": "acfb8780c04d29423d14aaab74cd1b7b4beaba32f676e7ace02c9acfbf532aba"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65d41655245b0865e11124944327beb1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 344864,
            "upload_time": "2024-10-04T17:13:15",
            "upload_time_iso_8601": "2024-10-04T17:13:15.330498Z",
            "url": "https://files.pythonhosted.org/packages/2c/f0/c7a6abe212a7840cf137d89c39ce0b8a866f0d492f9889c38f27d12de5c6/cytoolz-1.0.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7b5445f60b7d7dfd338c7145743bd1acc1cc6683abda86f7a95dcd901b7ed9c",
                "md5": "818990d40d83c16407dd41ef521af6be",
                "sha256": "99f39dcc46416dca3eb23664b73187b77fb52cd8ba2ddd8020a292d8f449db67"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "818990d40d83c16407dd41ef521af6be",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 384759,
            "upload_time": "2024-10-04T17:13:16",
            "upload_time_iso_8601": "2024-10-04T17:13:16.660048Z",
            "url": "https://files.pythonhosted.org/packages/c7/b5/445f60b7d7dfd338c7145743bd1acc1cc6683abda86f7a95dcd901b7ed9c/cytoolz-1.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "160974d7912c24b579af050629075601fe84cb2dbd29d3060387519b81b8e893",
                "md5": "5f1e7a29bdeb918d4046646b5e3e66d1",
                "sha256": "c0d56b3721977806dcf1a68b0ecd56feb382fdb0f632af1a9fc5ab9b662b32c6"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5f1e7a29bdeb918d4046646b5e3e66d1",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 404911,
            "upload_time": "2024-10-04T17:13:18",
            "upload_time_iso_8601": "2024-10-04T17:13:18.183712Z",
            "url": "https://files.pythonhosted.org/packages/16/09/74d7912c24b579af050629075601fe84cb2dbd29d3060387519b81b8e893/cytoolz-1.0.0-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": "279b327ff0bb2a5fb5997754119c48dc2ed6de3ace2818bd0311e64329ddc09b",
                "md5": "ad23baaae3a8e4727e62b0adc367fbfc",
                "sha256": "45d346620abc8c83ae634136e700432ad6202faffcc24c5ab70b87392dcda8a1"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-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": "ad23baaae3a8e4727e62b0adc367fbfc",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 396277,
            "upload_time": "2024-10-04T17:13:20",
            "upload_time_iso_8601": "2024-10-04T17:13:20.202387Z",
            "url": "https://files.pythonhosted.org/packages/27/9b/327ff0bb2a5fb5997754119c48dc2ed6de3ace2818bd0311e64329ddc09b/cytoolz-1.0.0-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": "a69dd63c319b717a0b79c636a91d34dc2e366a6843a3e1ca31c640aec9457660",
                "md5": "d6a34f345b5cb938f0227e2f93a586d6",
                "sha256": "df0c81197fc130de94c09fc6f024a6a19c98ba8fe55c17f1e45ebba2e9229079"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d6a34f345b5cb938f0227e2f93a586d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 342954,
            "upload_time": "2024-10-04T17:13:21",
            "upload_time_iso_8601": "2024-10-04T17:13:21.719481Z",
            "url": "https://files.pythonhosted.org/packages/a6/9d/d63c319b717a0b79c636a91d34dc2e366a6843a3e1ca31c640aec9457660/cytoolz-1.0.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e24cca9b05bdfa28ddbb4a5365c27021a1d4be61db7d8f6b4e5d4e76aa4ba3b7",
                "md5": "2f12f28ba76feb4685ebf92ae36e3397",
                "sha256": "eb453b30182152f9917a5189b7d99046b6ce90cdf8aeb0feff4b2683e600defd"
            },
            "downloads": -1,
            "filename": "cytoolz-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2f12f28ba76feb4685ebf92ae36e3397",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 626708,
            "upload_time": "2024-10-04T17:13:23",
            "upload_time_iso_8601": "2024-10-04T17:13:23.169622Z",
            "url": "https://files.pythonhosted.org/packages/e2/4c/ca9b05bdfa28ddbb4a5365c27021a1d4be61db7d8f6b4e5d4e76aa4ba3b7/cytoolz-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-04 17:13:23",
    "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.67172s