cytoolz


Namecytoolz JSON
Version 0.12.3 PyPI version JSON
download
home_pagehttps://github.com/pytoolz/cytoolz
SummaryCython implementation of Toolz: High performance functional utilities
upload_time2024-01-25 01:39:13
maintainerErik Welch
docs_urlNone
authorhttps://raw.github.com/pytoolz/cytoolz/master/AUTHORS.md
requires_python>=3.7
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.7+ 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.7",
    "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/70/d8/8df71050b214686591241a1826d2e6934b5c295c5bc57f643e4ed697f1eb/cytoolz-0.12.3.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.7+ 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": "0.12.3",
    "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": "ec11ebc8b85c77cc2247c169af808901a80e5d29429b3c9b0d114d4048ad2a5a",
                "md5": "608807a0dbba67bd8eff94fa8189c460",
                "sha256": "bbe58e26c84b163beba0fbeacf6b065feabc8f75c6d3fe305550d33f24a2d346"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "608807a0dbba67bd8eff94fa8189c460",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 413462,
            "upload_time": "2024-01-25T01:36:06",
            "upload_time_iso_8601": "2024-01-25T01:36:06.700878Z",
            "url": "https://files.pythonhosted.org/packages/ec/11/ebc8b85c77cc2247c169af808901a80e5d29429b3c9b0d114d4048ad2a5a/cytoolz-0.12.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "192257f20a9f135a08a6fc9848744c324c4facca2b1370a1ae4e8333e274c707",
                "md5": "c47db0a7e0d2a39312600f2b0ccd5eef",
                "sha256": "c51b66ada9bfdb88cf711bf350fcc46f82b83a4683cf2413e633c31a64df6201"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c47db0a7e0d2a39312600f2b0ccd5eef",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 396040,
            "upload_time": "2024-01-25T01:36:08",
            "upload_time_iso_8601": "2024-01-25T01:36:08.623885Z",
            "url": "https://files.pythonhosted.org/packages/19/22/57f20a9f135a08a6fc9848744c324c4facca2b1370a1ae4e8333e274c707/cytoolz-0.12.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1230337a18b1182888bf5d59357095a83f537a88e2db32ee0381166a83deddda",
                "md5": "168f67ca0c74f4a330e5b5b07d5b09e8",
                "sha256": "e70d9c615e5c9dc10d279d1e32e846085fe1fd6f08d623ddd059a92861f4e3dd"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "168f67ca0c74f4a330e5b5b07d5b09e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1933264,
            "upload_time": "2024-01-25T01:36:10",
            "upload_time_iso_8601": "2024-01-25T01:36:10.093009Z",
            "url": "https://files.pythonhosted.org/packages/12/30/337a18b1182888bf5d59357095a83f537a88e2db32ee0381166a83deddda/cytoolz-0.12.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93a3c244bfacd046316cd0a4cffd2e245a8dd9b685168497c3b7c776bdb72c59",
                "md5": "6109bdb5599eeb79276656a1e0292f5d",
                "sha256": "a83f4532707963ae1a5108e51fdfe1278cc8724e3301fee48b9e73e1316de64f"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6109bdb5599eeb79276656a1e0292f5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2014114,
            "upload_time": "2024-01-25T01:36:12",
            "upload_time_iso_8601": "2024-01-25T01:36:12.083681Z",
            "url": "https://files.pythonhosted.org/packages/93/a3/c244bfacd046316cd0a4cffd2e245a8dd9b685168497c3b7c776bdb72c59/cytoolz-0.12.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a64051bdfe7fd1cad802eabebb7bb742e694227db25c4806eebf4358229e3220",
                "md5": "6e9b2269d654a488c97f5c63cd4f97d8",
                "sha256": "d028044524ee2e815f36210a793c414551b689d4f4eda28f8bbb0883ad78bf5f"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6e9b2269d654a488c97f5c63cd4f97d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1999458,
            "upload_time": "2024-01-25T01:36:14",
            "upload_time_iso_8601": "2024-01-25T01:36:14.135297Z",
            "url": "https://files.pythonhosted.org/packages/a6/40/51bdfe7fd1cad802eabebb7bb742e694227db25c4806eebf4358229e3220/cytoolz-0.12.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f70b5973e0ceab96349f9cabb3b20ecc3a717a19e355f68d354dfa538bebb226",
                "md5": "91ec86511600d2f769818fafbaa58c30",
                "sha256": "6c2875bcd1397d0627a09a4f9172fa513185ad302c63758efc15b8eb33cc2a98"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91ec86511600d2f769818fafbaa58c30",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1956106,
            "upload_time": "2024-01-25T01:36:15",
            "upload_time_iso_8601": "2024-01-25T01:36:15.485454Z",
            "url": "https://files.pythonhosted.org/packages/f7/0b/5973e0ceab96349f9cabb3b20ecc3a717a19e355f68d354dfa538bebb226/cytoolz-0.12.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d301bb850ad1467f0d1dc5a21a05e3df6ad308a19d095f07583c4e65a85e2ba8",
                "md5": "14e1db57295013fc54cf6b1c07db05d0",
                "sha256": "131ff4820e5d64a25d7ad3c3556f2d8aa65c66b3f021b03f8a8e98e4180dd808"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "14e1db57295013fc54cf6b1c07db05d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1861974,
            "upload_time": "2024-01-25T01:36:17",
            "upload_time_iso_8601": "2024-01-25T01:36:17.185203Z",
            "url": "https://files.pythonhosted.org/packages/d3/01/bb850ad1467f0d1dc5a21a05e3df6ad308a19d095f07583c4e65a85e2ba8/cytoolz-0.12.3-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": "c997207e544a2c9c3d8735102403982a319c252c337e9cf792c2753c22cff1b6",
                "md5": "1cb054eb6edb7761d342fed1c8e25133",
                "sha256": "04afa90d9d9d18394c40d9bed48c51433d08b57c042e0e50c8c0f9799735dcbd"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1cb054eb6edb7761d342fed1c8e25133",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1937926,
            "upload_time": "2024-01-25T01:36:18",
            "upload_time_iso_8601": "2024-01-25T01:36:18.968367Z",
            "url": "https://files.pythonhosted.org/packages/c9/97/207e544a2c9c3d8735102403982a319c252c337e9cf792c2753c22cff1b6/cytoolz-0.12.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "761e6cc756537caef16cd491de1550c1f25140528785e28263326bd3243a19ed",
                "md5": "01481f2b7b85809965b44f481d8dad0c",
                "sha256": "dc1ca9c610425f9854323669a671fc163300b873731584e258975adf50931164"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "01481f2b7b85809965b44f481d8dad0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1859141,
            "upload_time": "2024-01-25T01:36:20",
            "upload_time_iso_8601": "2024-01-25T01:36:20.620094Z",
            "url": "https://files.pythonhosted.org/packages/76/1e/6cc756537caef16cd491de1550c1f25140528785e28263326bd3243a19ed/cytoolz-0.12.3-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "204330819bbc4348cabb44d800ab0d0efb29a9d21db8f75060fd1199d5300953",
                "md5": "0ab1287cb2ec8f6b1bc2055984cc3ea4",
                "sha256": "bfa3f8e01bc423a933f2e1c510cbb0632c6787865b5242857cc955cae220d1bf"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0ab1287cb2ec8f6b1bc2055984cc3ea4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2013731,
            "upload_time": "2024-01-25T01:36:22",
            "upload_time_iso_8601": "2024-01-25T01:36:22.461118Z",
            "url": "https://files.pythonhosted.org/packages/20/43/30819bbc4348cabb44d800ab0d0efb29a9d21db8f75060fd1199d5300953/cytoolz-0.12.3-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bdabcacabf2d0dfea006575fea900131eb491370ee1664783f80cb131f577001",
                "md5": "c0b1493700ccaa87d4a3c07ba4a137ad",
                "sha256": "f702e295dddef5f8af4a456db93f114539b8dc2a7a9bc4de7c7e41d169aa6ec3"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "c0b1493700ccaa87d4a3c07ba4a137ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2015075,
            "upload_time": "2024-01-25T01:36:24",
            "upload_time_iso_8601": "2024-01-25T01:36:24.144592Z",
            "url": "https://files.pythonhosted.org/packages/bd/ab/cacabf2d0dfea006575fea900131eb491370ee1664783f80cb131f577001/cytoolz-0.12.3-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "796f98eeee4f735bff536654625e0c38e50c4b01c13fbd9c744d3284dbccc54d",
                "md5": "cfee00b7bded9b21a77ce2b96114b1e8",
                "sha256": "0fbad1fb9bb47e827d00e01992a099b0ba79facf5e5aa453be066033232ac4b5"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfee00b7bded9b21a77ce2b96114b1e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1953391,
            "upload_time": "2024-01-25T01:36:25",
            "upload_time_iso_8601": "2024-01-25T01:36:25.818136Z",
            "url": "https://files.pythonhosted.org/packages/79/6f/98eeee4f735bff536654625e0c38e50c4b01c13fbd9c744d3284dbccc54d/cytoolz-0.12.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a8180bcbc750e3c8f72d07f1e61c25597fdb23fec3c3d52542f220bff87372c",
                "md5": "170a112818174773220dd4f02aaaa93b",
                "sha256": "8587c3c3dbe78af90c5025288766ac10dc2240c1e76eb0a93a4e244c265ccefd"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "170a112818174773220dd4f02aaaa93b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 320881,
            "upload_time": "2024-01-25T01:36:27",
            "upload_time_iso_8601": "2024-01-25T01:36:27.405810Z",
            "url": "https://files.pythonhosted.org/packages/6a/81/80bcbc750e3c8f72d07f1e61c25597fdb23fec3c3d52542f220bff87372c/cytoolz-0.12.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "459ecce296c6da9404ce210c79700b85d9ba582a6e908ee88ec707efec09bcd9",
                "md5": "6e2583df20b8174b696ed64b99baa221",
                "sha256": "9e45803d9e75ef90a2f859ef8f7f77614730f4a8ce1b9244375734567299d239"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6e2583df20b8174b696ed64b99baa221",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 362216,
            "upload_time": "2024-01-25T01:36:28",
            "upload_time_iso_8601": "2024-01-25T01:36:28.625284Z",
            "url": "https://files.pythonhosted.org/packages/45/9e/cce296c6da9404ce210c79700b85d9ba582a6e908ee88ec707efec09bcd9/cytoolz-0.12.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "988a618a70326d4a52998a6bbb11ca019979891a51b85cbbfce8f9762eec5d2c",
                "md5": "fc1167977d04747fe1203a6512bcad7c",
                "sha256": "3ac4f2fb38bbc67ff1875b7d2f0f162a247f43bd28eb7c9d15e6175a982e558d"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fc1167977d04747fe1203a6512bcad7c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 416356,
            "upload_time": "2024-01-25T01:36:30",
            "upload_time_iso_8601": "2024-01-25T01:36:30.344350Z",
            "url": "https://files.pythonhosted.org/packages/98/8a/618a70326d4a52998a6bbb11ca019979891a51b85cbbfce8f9762eec5d2c/cytoolz-0.12.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb17542f708b9116aa8d8c9c5551500bfa6ab1bddd3edc11457070599a97c197",
                "md5": "8fad9677fed6cf3192d2e4365f5ef776",
                "sha256": "0cf1e1e96dd86829a0539baf514a9c8473a58fbb415f92401a68e8e52a34ecd5"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8fad9677fed6cf3192d2e4365f5ef776",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 398412,
            "upload_time": "2024-01-25T01:36:32",
            "upload_time_iso_8601": "2024-01-25T01:36:32.628691Z",
            "url": "https://files.pythonhosted.org/packages/bb/17/542f708b9116aa8d8c9c5551500bfa6ab1bddd3edc11457070599a97c197/cytoolz-0.12.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d69c52a0460f2b59009da63794cfe11ad002d55fc88fced6ccc85f7ae10a3259",
                "md5": "3a9d7df041251faa63d9251518277263",
                "sha256": "08a438701c6141dd34eaf92e9e9a1f66e23a22f7840ef8a371eba274477de85d"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3a9d7df041251faa63d9251518277263",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2090389,
            "upload_time": "2024-01-25T01:36:34",
            "upload_time_iso_8601": "2024-01-25T01:36:34.398842Z",
            "url": "https://files.pythonhosted.org/packages/d6/9c/52a0460f2b59009da63794cfe11ad002d55fc88fced6ccc85f7ae10a3259/cytoolz-0.12.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c76d284d4a1f88b1e63b8a1c80162244ca5d4e0b31647c4f56186f3385fd0d0e",
                "md5": "b78d41f3aaa2204ff5049e566d6e5c6e",
                "sha256": "c6b6f11b0d7ed91be53166aeef2a23a799e636625675bb30818f47f41ad31821"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b78d41f3aaa2204ff5049e566d6e5c6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2187333,
            "upload_time": "2024-01-25T01:36:36",
            "upload_time_iso_8601": "2024-01-25T01:36:36.099691Z",
            "url": "https://files.pythonhosted.org/packages/c7/6d/284d4a1f88b1e63b8a1c80162244ca5d4e0b31647c4f56186f3385fd0d0e/cytoolz-0.12.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3e4444efcf2acf824aefab5f3fdb97235d360c216c2425db391a8dee687f1774",
                "md5": "9380d1a30bcbacebd86de6031e376f9b",
                "sha256": "a7fde09384d23048a7b4ac889063761e44b89a0b64015393e2d1d21d5c1f534a"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9380d1a30bcbacebd86de6031e376f9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2173106,
            "upload_time": "2024-01-25T01:36:37",
            "upload_time_iso_8601": "2024-01-25T01:36:37.827074Z",
            "url": "https://files.pythonhosted.org/packages/3e/44/44efcf2acf824aefab5f3fdb97235d360c216c2425db391a8dee687f1774/cytoolz-0.12.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f747c2d5af25d51f481e9be771bda2cf5496631cd0fba876d2cc0086caa732d",
                "md5": "d4e22894c1bffb10fe95fbe3ef1083cc",
                "sha256": "6d3bfe45173cc8e6c76206be3a916d8bfd2214fb2965563e288088012f1dabfc"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4e22894c1bffb10fe95fbe3ef1083cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2098805,
            "upload_time": "2024-01-25T01:36:40",
            "upload_time_iso_8601": "2024-01-25T01:36:40.090700Z",
            "url": "https://files.pythonhosted.org/packages/6f/74/7c2d5af25d51f481e9be771bda2cf5496631cd0fba876d2cc0086caa732d/cytoolz-0.12.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e0e59995bf66caee139459ab70d8b5820c37718d5f7e7380481adb85ef522e4d",
                "md5": "cc741c1c71294bc881507a7769721b13",
                "sha256": "27513a5d5b6624372d63313574381d3217a66e7a2626b056c695179623a5cb1a"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cc741c1c71294bc881507a7769721b13",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1995956,
            "upload_time": "2024-01-25T01:36:41",
            "upload_time_iso_8601": "2024-01-25T01:36:41.741919Z",
            "url": "https://files.pythonhosted.org/packages/e0/e5/9995bf66caee139459ab70d8b5820c37718d5f7e7380481adb85ef522e4d/cytoolz-0.12.3-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": "9373eee7a7f455d4691f1915b35d1713ba69c6851f940c6f8fffdd2efcbe4411",
                "md5": "74ea4774fc01af3e5c593455d3b85949",
                "sha256": "d294e5e81ff094fe920fd545052ff30838ea49f9e91227a55ecd9f3ca19774a0"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "74ea4774fc01af3e5c593455d3b85949",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2074891,
            "upload_time": "2024-01-25T01:36:43",
            "upload_time_iso_8601": "2024-01-25T01:36:43.887274Z",
            "url": "https://files.pythonhosted.org/packages/93/73/eee7a7f455d4691f1915b35d1713ba69c6851f940c6f8fffdd2efcbe4411/cytoolz-0.12.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3c76f0c60bbb911ee3f33b243a695e2fc944285a1865bbb1dfefee1b7c35d62",
                "md5": "f2cf30345b77aef23654073477d0f1ce",
                "sha256": "727b01a2004ddb513496507a695e19b5c0cfebcdfcc68349d3efd92a1c297bf4"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f2cf30345b77aef23654073477d0f1ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1980228,
            "upload_time": "2024-01-25T01:36:45",
            "upload_time_iso_8601": "2024-01-25T01:36:45.420283Z",
            "url": "https://files.pythonhosted.org/packages/a3/c7/6f0c60bbb911ee3f33b243a695e2fc944285a1865bbb1dfefee1b7c35d62/cytoolz-0.12.3-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "587cd7524626b415d410208fd2774ff2824fab4dcbe4a496d53bdba85a1407df",
                "md5": "12d583d0b70c8067035aa3771f97c95c",
                "sha256": "fe1e1779a39dbe83f13886d2b4b02f8c4b10755e3c8d9a89b630395f49f4f406"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "12d583d0b70c8067035aa3771f97c95c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2147616,
            "upload_time": "2024-01-25T01:36:47",
            "upload_time_iso_8601": "2024-01-25T01:36:47.060511Z",
            "url": "https://files.pythonhosted.org/packages/58/7c/d7524626b415d410208fd2774ff2824fab4dcbe4a496d53bdba85a1407df/cytoolz-0.12.3-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a57b9bdf8615e61958386f5c7108d857312214837ae3eacf3589873499d2f0aa",
                "md5": "f8c02553bcf76bb7079b87fef63f1ab7",
                "sha256": "de74ef266e2679c3bf8b5fc20cee4fc0271ba13ae0d9097b1491c7a9bcadb389"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "f8c02553bcf76bb7079b87fef63f1ab7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2148775,
            "upload_time": "2024-01-25T01:36:48",
            "upload_time_iso_8601": "2024-01-25T01:36:48.813799Z",
            "url": "https://files.pythonhosted.org/packages/a5/7b/9bdf8615e61958386f5c7108d857312214837ae3eacf3589873499d2f0aa/cytoolz-0.12.3-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4591b92ab0e29bf7cfaacfedc85391a0d0365a6ac74363f2532ba307a760db14",
                "md5": "199efb556bf093df157cef12f656002e",
                "sha256": "9e04d22049233394e0b08193aca9737200b4a2afa28659d957327aa780ddddf2"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "199efb556bf093df157cef12f656002e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2079810,
            "upload_time": "2024-01-25T01:36:50",
            "upload_time_iso_8601": "2024-01-25T01:36:50.116616Z",
            "url": "https://files.pythonhosted.org/packages/45/91/b92ab0e29bf7cfaacfedc85391a0d0365a6ac74363f2532ba307a760db14/cytoolz-0.12.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f338204d65871fa639d1d3ae788e3afc187f610126f53f2324d4aa37caf0630",
                "md5": "09b1f23780806e9446ba2086074a4456",
                "sha256": "20d36430d8ac809186736fda735ee7d595b6242bdb35f69b598ef809ebfa5605"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "09b1f23780806e9446ba2086074a4456",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 320212,
            "upload_time": "2024-01-25T01:36:51",
            "upload_time_iso_8601": "2024-01-25T01:36:51.730476Z",
            "url": "https://files.pythonhosted.org/packages/2f/33/8204d65871fa639d1d3ae788e3afc187f610126f53f2324d4aa37caf0630/cytoolz-0.12.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abe37ce2efaf243c9ee75fc730cd018981788b56e7ad3767f24e7a9cd14831ac",
                "md5": "e6a386072928017635370ca99eb2ac76",
                "sha256": "780c06110f383344d537f48d9010d79fa4f75070d214fc47f389357dd4f010b6"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e6a386072928017635370ca99eb2ac76",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 363570,
            "upload_time": "2024-01-25T01:36:53",
            "upload_time_iso_8601": "2024-01-25T01:36:53.371687Z",
            "url": "https://files.pythonhosted.org/packages/ab/e3/7ce2efaf243c9ee75fc730cd018981788b56e7ad3767f24e7a9cd14831ac/cytoolz-0.12.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f57b0feabefdff4707d0b96bf75e2298ecb209ba22c2e3fd15e5230dd68441a",
                "md5": "fb66043cede4b27c649f603ebc927511",
                "sha256": "86923d823bd19ce35805953b018d436f6b862edd6a7c8b747a13d52b39ed5716"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb66043cede4b27c649f603ebc927511",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 419825,
            "upload_time": "2024-01-25T01:36:54",
            "upload_time_iso_8601": "2024-01-25T01:36:54.522135Z",
            "url": "https://files.pythonhosted.org/packages/7f/57/b0feabefdff4707d0b96bf75e2298ecb209ba22c2e3fd15e5230dd68441a/cytoolz-0.12.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5482795aa9f91ee81818732b435755559857a76e16b7e435e1de434b47ce72b9",
                "md5": "a786857d6a9d9184433b5315bbed190e",
                "sha256": "a3e61acfd029bfb81c2c596249b508dfd2b4f72e31b7b53b62e5fb0507dd7293"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a786857d6a9d9184433b5315bbed190e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 401673,
            "upload_time": "2024-01-25T01:36:56",
            "upload_time_iso_8601": "2024-01-25T01:36:56.435469Z",
            "url": "https://files.pythonhosted.org/packages/54/82/795aa9f91ee81818732b435755559857a76e16b7e435e1de434b47ce72b9/cytoolz-0.12.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23f3298f32b2e374f4f716ca74a9e46b64ee1df9f160de262391f7f9bc53ecca",
                "md5": "472032bd991345ea49c2b11123fa5a00",
                "sha256": "dd728f4e6051af6af234651df49319da1d813f47894d4c3c8ab7455e01703a37"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "472032bd991345ea49c2b11123fa5a00",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2096352,
            "upload_time": "2024-01-25T01:36:58",
            "upload_time_iso_8601": "2024-01-25T01:36:58.428654Z",
            "url": "https://files.pythonhosted.org/packages/23/f3/298f32b2e374f4f716ca74a9e46b64ee1df9f160de262391f7f9bc53ecca/cytoolz-0.12.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "394449929b33bd0cdccc98b281e4ca11f0836b2963c6fdec8ebb7891807ed908",
                "md5": "1b5be781b53f8adc133779abcb479c61",
                "sha256": "fe8c6267caa7ec67bcc37e360f0d8a26bc3bdce510b15b97f2f2e0143bdd3673"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1b5be781b53f8adc133779abcb479c61",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2161581,
            "upload_time": "2024-01-25T01:36:59",
            "upload_time_iso_8601": "2024-01-25T01:36:59.818570Z",
            "url": "https://files.pythonhosted.org/packages/39/44/49929b33bd0cdccc98b281e4ca11f0836b2963c6fdec8ebb7891807ed908/cytoolz-0.12.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e977980a8bc123490dd7112e1e068da989932b7612504355ddd25593880c3156",
                "md5": "4fb5145e72f876f9a0578bf2a5fd91f4",
                "sha256": "99462abd8323c52204a2a0ce62454ce8fa0f4e94b9af397945c12830de73f27e"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4fb5145e72f876f9a0578bf2a5fd91f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2178057,
            "upload_time": "2024-01-25T01:37:02",
            "upload_time_iso_8601": "2024-01-25T01:37:02.230953Z",
            "url": "https://files.pythonhosted.org/packages/e9/77/980a8bc123490dd7112e1e068da989932b7612504355ddd25593880c3156/cytoolz-0.12.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23d92f7a4db7f92eab4b567e56cc2fc147fed1ef35f7968e44cefcbbfb366980",
                "md5": "33e13bbf6c861b72f94ebd1e1c425743",
                "sha256": "da125221b1fa25c690fcd030a54344cecec80074df018d906fc6a99f46c1e3a6"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "33e13bbf6c861b72f94ebd1e1c425743",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2130881,
            "upload_time": "2024-01-25T01:37:03",
            "upload_time_iso_8601": "2024-01-25T01:37:03.703518Z",
            "url": "https://files.pythonhosted.org/packages/23/d9/2f7a4db7f92eab4b567e56cc2fc147fed1ef35f7968e44cefcbbfb366980/cytoolz-0.12.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85bf1147229198a8fc3f2090d01263234d47b5b7f8c52c20090b1cceda0929cd",
                "md5": "770bf3527d25c6469b1be7062b327208",
                "sha256": "1c18e351956f70db9e2d04ff02f28e9a41839250d3f936a4c8a1eabd1c3094d2"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "770bf3527d25c6469b1be7062b327208",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1979975,
            "upload_time": "2024-01-25T01:37:06",
            "upload_time_iso_8601": "2024-01-25T01:37:06.277338Z",
            "url": "https://files.pythonhosted.org/packages/85/bf/1147229198a8fc3f2090d01263234d47b5b7f8c52c20090b1cceda0929cd/cytoolz-0.12.3-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": "5b53b730e9f428e74971f934bf73f0868099d325ffbf0c080a201bb16b6ab508",
                "md5": "74a0ea4b3609d68697065d64a43ffa15",
                "sha256": "921e6d2440ac758c4945c587b1d1d9b781b72737ac0c0ca5d5e02ca1db8bded2"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "74a0ea4b3609d68697065d64a43ffa15",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2086861,
            "upload_time": "2024-01-25T01:37:07",
            "upload_time_iso_8601": "2024-01-25T01:37:07.869479Z",
            "url": "https://files.pythonhosted.org/packages/5b/53/b730e9f428e74971f934bf73f0868099d325ffbf0c080a201bb16b6ab508/cytoolz-0.12.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2424df510850c1c57ad69a23a2700083cfd285faf27d16e61f0e503eec122473",
                "md5": "3bb67bfa635cdc9e8f527ed7ff5e94be",
                "sha256": "1651a9bd591a8326329ce1d6336f3129161a36d7061a4d5ea9e5377e033364cf"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3bb67bfa635cdc9e8f527ed7ff5e94be",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1973211,
            "upload_time": "2024-01-25T01:37:10",
            "upload_time_iso_8601": "2024-01-25T01:37:10.036354Z",
            "url": "https://files.pythonhosted.org/packages/24/24/df510850c1c57ad69a23a2700083cfd285faf27d16e61f0e503eec122473/cytoolz-0.12.3-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6ada6e27924a6c8048b4f1ffbd8b9b0b871642bd94d3e457aa42a629c1f667b",
                "md5": "6b6b3f3cb168675d696404240828ac76",
                "sha256": "8893223b87c2782bd59f9c4bd5c7bf733edd8728b523c93efb91d7468b486528"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6b6b3f3cb168675d696404240828ac76",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2133017,
            "upload_time": "2024-01-25T01:37:11",
            "upload_time_iso_8601": "2024-01-25T01:37:11.684187Z",
            "url": "https://files.pythonhosted.org/packages/b6/ad/a6e27924a6c8048b4f1ffbd8b9b0b871642bd94d3e457aa42a629c1f667b/cytoolz-0.12.3-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26a3f9dfb406232d0a100994a86c123259cd2ab023aa8ae325b0d9926f80091f",
                "md5": "f96368efb6cc5b78e8db9827ef712b3b",
                "sha256": "e4d2961644153c5ae186db964aa9f6109da81b12df0f1d3494b4e5cf2c332ee2"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "f96368efb6cc5b78e8db9827ef712b3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2156771,
            "upload_time": "2024-01-25T01:37:13",
            "upload_time_iso_8601": "2024-01-25T01:37:13.620456Z",
            "url": "https://files.pythonhosted.org/packages/26/a3/f9dfb406232d0a100994a86c123259cd2ab023aa8ae325b0d9926f80091f/cytoolz-0.12.3-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbbfce2c6f6175a29c830904b23faee557de8c167255dbb2bb84e04d7cf5605a",
                "md5": "37f9a716ccc45a596dec482052453327",
                "sha256": "71b6eb97f6695f7ba8ce69c49b707a351c5f46fd97f5aeb5f6f2fb0d6e72b887"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "37f9a716ccc45a596dec482052453327",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2121104,
            "upload_time": "2024-01-25T01:37:16",
            "upload_time_iso_8601": "2024-01-25T01:37:16.053957Z",
            "url": "https://files.pythonhosted.org/packages/fb/bf/ce2c6f6175a29c830904b23faee557de8c167255dbb2bb84e04d7cf5605a/cytoolz-0.12.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf9795a5fb2b5db9b1ea8856741a2a94741a71cb5640112403029beb7b3ef1df",
                "md5": "b8150bee24646ec326ab1fd9637d2e05",
                "sha256": "cee3de65584e915053412cd178729ff510ad5f8f585c21c5890e91028283518f"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "b8150bee24646ec326ab1fd9637d2e05",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 320537,
            "upload_time": "2024-01-25T01:37:18",
            "upload_time_iso_8601": "2024-01-25T01:37:18.026285Z",
            "url": "https://files.pythonhosted.org/packages/bf/97/95a5fb2b5db9b1ea8856741a2a94741a71cb5640112403029beb7b3ef1df/cytoolz-0.12.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a113e69585342ce4e6b7f2f6139c8aa235dab5a4fe5c76a051fe01696618bd0",
                "md5": "25cb38d63eeb766c7cb90acddf71f6ab",
                "sha256": "9eef0d23035fa4dcfa21e570961e86c375153a7ee605cdd11a8b088c24f707f6"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "25cb38d63eeb766c7cb90acddf71f6ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 363238,
            "upload_time": "2024-01-25T01:37:19",
            "upload_time_iso_8601": "2024-01-25T01:37:19.343788Z",
            "url": "https://files.pythonhosted.org/packages/0a/11/3e69585342ce4e6b7f2f6139c8aa235dab5a4fe5c76a051fe01696618bd0/cytoolz-0.12.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2fb213e15f88cc335d27f9257d1fd7adedeac98aed8148dc14764f2c431dce6",
                "md5": "27c8a19ac7136dbf009bb6d9ac10202a",
                "sha256": "d9a38332cfad2a91e89405b7c18b3f00e2edc951c225accbc217597d3e4e9fde"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "27c8a19ac7136dbf009bb6d9ac10202a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 412109,
            "upload_time": "2024-01-25T01:37:20",
            "upload_time_iso_8601": "2024-01-25T01:37:20.850247Z",
            "url": "https://files.pythonhosted.org/packages/c2/fb/213e15f88cc335d27f9257d1fd7adedeac98aed8148dc14764f2c431dce6/cytoolz-0.12.3-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57461269a55fe9da7f3026663607864fd6a6eb67b78b01d6ff60d29fafbbd8a3",
                "md5": "0d4eab5778f24e30377e4975b5309b5a",
                "sha256": "1f501ae1353071fa5d6677437bbeb1aeb5622067dce0977cedc2c5ec5843b202"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0d4eab5778f24e30377e4975b5309b5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1782024,
            "upload_time": "2024-01-25T01:37:22",
            "upload_time_iso_8601": "2024-01-25T01:37:22.943597Z",
            "url": "https://files.pythonhosted.org/packages/57/46/1269a55fe9da7f3026663607864fd6a6eb67b78b01d6ff60d29fafbbd8a3/cytoolz-0.12.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0903b2c3944d382c49bb82048abdfccf306a88a424d0e433a577ec353b81169b",
                "md5": "7a8db782bb7599443a2cd69f52d55f93",
                "sha256": "56f899758146a52e2f8cfb3fb6f4ca19c1e5814178c3d584de35f9e4d7166d91"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "7a8db782bb7599443a2cd69f52d55f93",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1879227,
            "upload_time": "2024-01-25T01:37:25",
            "upload_time_iso_8601": "2024-01-25T01:37:25.417267Z",
            "url": "https://files.pythonhosted.org/packages/09/03/b2c3944d382c49bb82048abdfccf306a88a424d0e433a577ec353b81169b/cytoolz-0.12.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3194f7b24b418ebfe69594d246fc7f1a0804fbf27b27f5b7edd33a6e45a16cd",
                "md5": "c0405ef1355e705a756c03fd91fcd7e3",
                "sha256": "800f0526adf9e53d3c6acda748f4def1f048adaa780752f154da5cf22aa488a2"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c0405ef1355e705a756c03fd91fcd7e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1864323,
            "upload_time": "2024-01-25T01:37:27",
            "upload_time_iso_8601": "2024-01-25T01:37:27.145560Z",
            "url": "https://files.pythonhosted.org/packages/a3/19/4f7b24b418ebfe69594d246fc7f1a0804fbf27b27f5b7edd33a6e45a16cd/cytoolz-0.12.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbfb46cd7a4ccc2f8fc5fef2fae1a8216e6fddbccfebe740cc41d89858bcfad3",
                "md5": "86e871d157862cde0471c97e3e252515",
                "sha256": "d0976a3fcb81d065473173e9005848218ce03ddb2ec7d40dd6a8d2dba7f1c3ae"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "86e871d157862cde0471c97e3e252515",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1800445,
            "upload_time": "2024-01-25T01:37:28",
            "upload_time_iso_8601": "2024-01-25T01:37:28.667371Z",
            "url": "https://files.pythonhosted.org/packages/db/fb/46cd7a4ccc2f8fc5fef2fae1a8216e6fddbccfebe740cc41d89858bcfad3/cytoolz-0.12.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c5158de0cb8c1b51103c1ed1841cd10a6aa6963b45fd6a302758bf8b36a35a1",
                "md5": "92b809f46b7f50a28cda9162351bcdec",
                "sha256": "c835eab01466cb67d0ce6290601ebef2d82d8d0d0a285ed0d6e46989e4a7a71a"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "92b809f46b7f50a28cda9162351bcdec",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1715100,
            "upload_time": "2024-01-25T01:37:30",
            "upload_time_iso_8601": "2024-01-25T01:37:30.714622Z",
            "url": "https://files.pythonhosted.org/packages/1c/51/58de0cb8c1b51103c1ed1841cd10a6aa6963b45fd6a302758bf8b36a35a1/cytoolz-0.12.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdf7225dfb0da8ea75026e20a34ddcbe64b10d4adc999dc29886c7f2280754cf",
                "md5": "720bc0818321af01223f7af087f12424",
                "sha256": "4fba0616fcd487e34b8beec1ad9911d192c62e758baa12fcb44448b9b6feae22"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "720bc0818321af01223f7af087f12424",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1804502,
            "upload_time": "2024-01-25T01:37:32",
            "upload_time_iso_8601": "2024-01-25T01:37:32.497569Z",
            "url": "https://files.pythonhosted.org/packages/cd/f7/225dfb0da8ea75026e20a34ddcbe64b10d4adc999dc29886c7f2280754cf/cytoolz-0.12.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59c34645b000b8c67af86c03181bb377c0131f9a1698553c1cf7d17e5b7ef6d8",
                "md5": "fbab1ae39d2cfc3b818351c5a26d93e5",
                "sha256": "6f6e8207d732651e0204779e1ba5a4925c93081834570411f959b80681f8d333"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "fbab1ae39d2cfc3b818351c5a26d93e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1723507,
            "upload_time": "2024-01-25T01:37:34",
            "upload_time_iso_8601": "2024-01-25T01:37:34.640324Z",
            "url": "https://files.pythonhosted.org/packages/59/c3/4645b000b8c67af86c03181bb377c0131f9a1698553c1cf7d17e5b7ef6d8/cytoolz-0.12.3-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c9885c9028de9c6cb1f604ecfaa7632a89a69a5e855ab7499680e8e1bf8ee29",
                "md5": "6a443bd04aeb347ecb0a1e97d246dd1c",
                "sha256": "8119bf5961091cfe644784d0bae214e273b3b3a479f93ee3baab97bbd995ccfe"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6a443bd04aeb347ecb0a1e97d246dd1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1869916,
            "upload_time": "2024-01-25T01:37:36",
            "upload_time_iso_8601": "2024-01-25T01:37:36.375262Z",
            "url": "https://files.pythonhosted.org/packages/2c/98/85c9028de9c6cb1f604ecfaa7632a89a69a5e855ab7499680e8e1bf8ee29/cytoolz-0.12.3-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "82c269f16fbe827f1eda72a33e010dabe4618340d279b2500ef8645b03c3db4d",
                "md5": "afe7877757bb87cc25cb6428f70fc7f2",
                "sha256": "7ad1331cb68afeec58469c31d944a2100cee14eac221553f0d5218ace1a0b25d"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "afe7877757bb87cc25cb6428f70fc7f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1876756,
            "upload_time": "2024-01-25T01:37:38",
            "upload_time_iso_8601": "2024-01-25T01:37:38.495884Z",
            "url": "https://files.pythonhosted.org/packages/82/c2/69f16fbe827f1eda72a33e010dabe4618340d279b2500ef8645b03c3db4d/cytoolz-0.12.3-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "303a003d0c07e20734ac61592e18c9ed3adc9d40c3744bfff0a12c63eecd134d",
                "md5": "edadbf9e1f3ca16a4bb576678c396180",
                "sha256": "92c53d508fb8a4463acc85b322fa24734efdc66933a5c8661bdc862103a3373d"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "edadbf9e1f3ca16a4bb576678c396180",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1812654,
            "upload_time": "2024-01-25T01:37:40",
            "upload_time_iso_8601": "2024-01-25T01:37:40.108717Z",
            "url": "https://files.pythonhosted.org/packages/30/3a/003d0c07e20734ac61592e18c9ed3adc9d40c3744bfff0a12c63eecd134d/cytoolz-0.12.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f5e19f4d71d92a4ba35ac58a25d3ece219c81d5de1ba9242ca59d3e5e5ada9e",
                "md5": "b4df075e72e8ef79f518949ce4f217c7",
                "sha256": "2c6dd75dae3d84fa8988861ab8b1189d2488cb8a9b8653828f9cd6126b5e7abd"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "b4df075e72e8ef79f518949ce4f217c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 319267,
            "upload_time": "2024-01-25T01:37:41",
            "upload_time_iso_8601": "2024-01-25T01:37:41.758707Z",
            "url": "https://files.pythonhosted.org/packages/6f/5e/19f4d71d92a4ba35ac58a25d3ece219c81d5de1ba9242ca59d3e5e5ada9e/cytoolz-0.12.3-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83980ed2f350b5f2cc315d7c2eb9590e8a36424672d79ffbf1f34f5a3a758f5c",
                "md5": "7a43cdb6cacc777e3fe41521dd9d7491",
                "sha256": "caf07a97b5220e6334dd32c8b6d8b2bd255ca694eca5dfe914bb5b880ee66cdb"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7a43cdb6cacc777e3fe41521dd9d7491",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 363215,
            "upload_time": "2024-01-25T01:37:43",
            "upload_time_iso_8601": "2024-01-25T01:37:43.434966Z",
            "url": "https://files.pythonhosted.org/packages/83/98/0ed2f350b5f2cc315d7c2eb9590e8a36424672d79ffbf1f34f5a3a758f5c/cytoolz-0.12.3-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c23214ee418aed4377fb369ebe16b779daacb4d6c322ac1108f9e36b45e58c46",
                "md5": "72a67ed5420360a0b097adaacecd40df",
                "sha256": "ed0cfb9326747759e2ad81cb6e45f20086a273b67ac3a4c00b19efcbab007c60"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "72a67ed5420360a0b097adaacecd40df",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 413627,
            "upload_time": "2024-01-25T01:37:44",
            "upload_time_iso_8601": "2024-01-25T01:37:44.685504Z",
            "url": "https://files.pythonhosted.org/packages/c2/32/14ee418aed4377fb369ebe16b779daacb4d6c322ac1108f9e36b45e58c46/cytoolz-0.12.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6ac3f83d67b514f01df602131545c81821364673a1b697bac24eee997ff7f0f",
                "md5": "f9472cfc10b77fb7de3e4772b05ac705",
                "sha256": "96a5a0292575c3697121f97cc605baf2fd125120c7dcdf39edd1a135798482ca"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f9472cfc10b77fb7de3e4772b05ac705",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 397130,
            "upload_time": "2024-01-25T01:37:46",
            "upload_time_iso_8601": "2024-01-25T01:37:46.420138Z",
            "url": "https://files.pythonhosted.org/packages/b6/ac/3f83d67b514f01df602131545c81821364673a1b697bac24eee997ff7f0f/cytoolz-0.12.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3eb3a5e943853c64cdaef1f9616364fcc2b633bd150de2f010de537ffe3ef08b",
                "md5": "099fb8ea41bfdef11aa898d955a25588",
                "sha256": "b76f2f50a789c44d6fd7f773ec43d2a8686781cd52236da03f7f7d7998989bee"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "099fb8ea41bfdef11aa898d955a25588",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1999041,
            "upload_time": "2024-01-25T01:37:48",
            "upload_time_iso_8601": "2024-01-25T01:37:48.037902Z",
            "url": "https://files.pythonhosted.org/packages/3e/b3/a5e943853c64cdaef1f9616364fcc2b633bd150de2f010de537ffe3ef08b/cytoolz-0.12.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a672b45fc9af11bcb7b959696aae06ac73962e14b29d389de631f72820ee367",
                "md5": "1bdd6cdd212f911cc044cf811bc3358a",
                "sha256": "2905fdccacc64b4beba37f95cab9d792289c80f4d70830b70de2fc66c007ec01"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1bdd6cdd212f911cc044cf811bc3358a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2106454,
            "upload_time": "2024-01-25T01:37:50",
            "upload_time_iso_8601": "2024-01-25T01:37:50.118896Z",
            "url": "https://files.pythonhosted.org/packages/5a/67/2b45fc9af11bcb7b959696aae06ac73962e14b29d389de631f72820ee367/cytoolz-0.12.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce7503afeac14787f495df4a2bc40df8c41e026049032ff1cd8e306f6aed6d2f",
                "md5": "785b4f42530914ecab6752befa38a652",
                "sha256": "f1ebe23028eac51251f22ba01dba6587d30aa9c320372ca0c14eeab67118ec3f"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "785b4f42530914ecab6752befa38a652",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2089845,
            "upload_time": "2024-01-25T01:37:52",
            "upload_time_iso_8601": "2024-01-25T01:37:52.038925Z",
            "url": "https://files.pythonhosted.org/packages/ce/75/03afeac14787f495df4a2bc40df8c41e026049032ff1cd8e306f6aed6d2f/cytoolz-0.12.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2ea4708196ffb2b6c711b4e21210a4fed0c10a34e24153e81092ab03ff56d91",
                "md5": "79c9e7f1bf1e17e5c52e299b25118034",
                "sha256": "96c715404a3825e37fe3966fe84c5f8a1f036e7640b2a02dbed96cac0c933451"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79c9e7f1bf1e17e5c52e299b25118034",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2017286,
            "upload_time": "2024-01-25T01:37:54",
            "upload_time_iso_8601": "2024-01-25T01:37:54.571354Z",
            "url": "https://files.pythonhosted.org/packages/c2/ea/4708196ffb2b6c711b4e21210a4fed0c10a34e24153e81092ab03ff56d91/cytoolz-0.12.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bbfa712385caff9c73d6be7c9423795d1f02e78c50f5acaec0e0cd2578521c4",
                "md5": "e2748a6a58740c6be2ba86857770f155",
                "sha256": "9bac0adffc1b6b6a4c5f1fd1dd2161afb720bcc771a91016dc6bdba59af0a5d3"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e2748a6a58740c6be2ba86857770f155",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1920249,
            "upload_time": "2024-01-25T01:37:55",
            "upload_time_iso_8601": "2024-01-25T01:37:55.997057Z",
            "url": "https://files.pythonhosted.org/packages/8b/bf/a712385caff9c73d6be7c9423795d1f02e78c50f5acaec0e0cd2578521c4/cytoolz-0.12.3-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": "b09d951fbde660da63170ff3a2b7f07e5cef49f84864fd3038eea07d641c3128",
                "md5": "d252d1601d9b077ec524aa033989bb29",
                "sha256": "37441bf4a2a4e2e0fe9c3b0ea5e72db352f5cca03903977ffc42f6f6c5467be9"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d252d1601d9b077ec524aa033989bb29",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2095470,
            "upload_time": "2024-01-25T01:37:57",
            "upload_time_iso_8601": "2024-01-25T01:37:57.980196Z",
            "url": "https://files.pythonhosted.org/packages/b0/9d/951fbde660da63170ff3a2b7f07e5cef49f84864fd3038eea07d641c3128/cytoolz-0.12.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45d89ea70882749058a3dbdfdd0865257ac31dc800b78e897854a5aa16d28814",
                "md5": "f4e1d08082ae6208ce469585c4d0891e",
                "sha256": "f04037302049cb30033f7fa4e1d0e44afe35ed6bfcf9b380fc11f2a27d3ed697"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "f4e1d08082ae6208ce469585c4d0891e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2009434,
            "upload_time": "2024-01-25T01:37:59",
            "upload_time_iso_8601": "2024-01-25T01:37:59.710335Z",
            "url": "https://files.pythonhosted.org/packages/45/d8/9ea70882749058a3dbdfdd0865257ac31dc800b78e897854a5aa16d28814/cytoolz-0.12.3-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b91c1633fd270b2469d82631c4e4a3c5a7b213cd94434f5e59469729b666a6f6",
                "md5": "edbb1abb3d3491cdcf2630231e2d46c9",
                "sha256": "f37b60e66378e7a116931d7220f5352186abfcc950d64856038aa2c01944929c"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "edbb1abb3d3491cdcf2630231e2d46c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2173334,
            "upload_time": "2024-01-25T01:38:02",
            "upload_time_iso_8601": "2024-01-25T01:38:02.066297Z",
            "url": "https://files.pythonhosted.org/packages/b9/1c/1633fd270b2469d82631c4e4a3c5a7b213cd94434f5e59469729b666a6f6/cytoolz-0.12.3-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ece5570cf32be97b46100b16503d1e73246711d71e211f493230f4f66ef9952",
                "md5": "9fd18cefddcd5e9c35033e75d7ba4a38",
                "sha256": "ec9be3e4b6f86ea8b294d34c990c99d2ba6c526ef1e8f46f1d52c263d4f32cd7"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "9fd18cefddcd5e9c35033e75d7ba4a38",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2178821,
            "upload_time": "2024-01-25T01:38:04",
            "upload_time_iso_8601": "2024-01-25T01:38:04.086085Z",
            "url": "https://files.pythonhosted.org/packages/2e/ce/5570cf32be97b46100b16503d1e73246711d71e211f493230f4f66ef9952/cytoolz-0.12.3-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c99d6bfea0d133d04e18260d3f0b7d288037c58aab970c9c744e56e89790df79",
                "md5": "81b2899ab4c89158708c6c186066b353",
                "sha256": "0e9199c9e3fbf380a92b8042c677eb9e7ed4bccb126de5e9c0d26f5888d96788"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "81b2899ab4c89158708c6c186066b353",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2111658,
            "upload_time": "2024-01-25T01:38:06",
            "upload_time_iso_8601": "2024-01-25T01:38:06.077677Z",
            "url": "https://files.pythonhosted.org/packages/c9/9d/6bfea0d133d04e18260d3f0b7d288037c58aab970c9c744e56e89790df79/cytoolz-0.12.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79f460a838c51df27099e2afa15885f84c386f3ed41399ef2310e56194db18b8",
                "md5": "06c664b4b6c92896a0022e0e1eadf757",
                "sha256": "18cd61e078bd6bffe088e40f1ed02001387c29174750abce79499d26fa57f5eb"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "06c664b4b6c92896a0022e0e1eadf757",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 324662,
            "upload_time": "2024-01-25T01:38:07",
            "upload_time_iso_8601": "2024-01-25T01:38:07.675458Z",
            "url": "https://files.pythonhosted.org/packages/79/f4/60a838c51df27099e2afa15885f84c386f3ed41399ef2310e56194db18b8/cytoolz-0.12.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d579063cfdc1ac85522ee074ef0d3c63cc7e2699763e00cfd7fc7e1df7b50054",
                "md5": "1e8f97dff770fa073e7a23f87e4271a6",
                "sha256": "765b8381d4003ceb1a07896a854eee2c31ebc950a4ae17d1e7a17c2a8feb2a68"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1e8f97dff770fa073e7a23f87e4271a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 366668,
            "upload_time": "2024-01-25T01:38:09",
            "upload_time_iso_8601": "2024-01-25T01:38:09.118304Z",
            "url": "https://files.pythonhosted.org/packages/d5/79/063cfdc1ac85522ee074ef0d3c63cc7e2699763e00cfd7fc7e1df7b50054/cytoolz-0.12.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac21b68d7c043b38001b90788bf940aad9bc51afb1e94d7e5e93fbab438fcab3",
                "md5": "dfdc4b1bb555d614c483d65207ec240e",
                "sha256": "b4a52dd2a36b0a91f7aa50ca6c8509057acc481a24255f6cb07b15d339a34e0f"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfdc4b1bb555d614c483d65207ec240e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 416205,
            "upload_time": "2024-01-25T01:38:10",
            "upload_time_iso_8601": "2024-01-25T01:38:10.793033Z",
            "url": "https://files.pythonhosted.org/packages/ac/21/b68d7c043b38001b90788bf940aad9bc51afb1e94d7e5e93fbab438fcab3/cytoolz-0.12.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6906f819cb6a79e9fe13fd5d69e59495667b742380425f0357665e2ff775b499",
                "md5": "aa51c66c91c9bb95429a9828b57db065",
                "sha256": "581f1ce479769fe7eeb9ae6d87eadb230df8c7c5fff32138162cdd99d7fb8fc3"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "aa51c66c91c9bb95429a9828b57db065",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 398534,
            "upload_time": "2024-01-25T01:38:12",
            "upload_time_iso_8601": "2024-01-25T01:38:12.340374Z",
            "url": "https://files.pythonhosted.org/packages/69/06/f819cb6a79e9fe13fd5d69e59495667b742380425f0357665e2ff775b499/cytoolz-0.12.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ca7223c9f0a95bc6f0a6f7a955fa74f6befef6a896c6763912aae43152945ab",
                "md5": "3ed326149e78294ec49895362440eb92",
                "sha256": "46f505d4c6eb79585c8ad0b9dc140ef30a138c880e4e3b40230d642690e36366"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3ed326149e78294ec49895362440eb92",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1945066,
            "upload_time": "2024-01-25T01:38:14",
            "upload_time_iso_8601": "2024-01-25T01:38:14.113280Z",
            "url": "https://files.pythonhosted.org/packages/4c/a7/223c9f0a95bc6f0a6f7a955fa74f6befef6a896c6763912aae43152945ab/cytoolz-0.12.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "749524a5cf86fa74f0b4708a59d93a647ab7870546d4be7213a38b6cbe3e1e00",
                "md5": "f31251688cf1f4fe748cdf0ac2164792",
                "sha256": "59276021619b432a5c21c01cda8320b9cc7dbc40351ffc478b440bfccd5bbdd3"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f31251688cf1f4fe748cdf0ac2164792",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2026912,
            "upload_time": "2024-01-25T01:38:16",
            "upload_time_iso_8601": "2024-01-25T01:38:16.088675Z",
            "url": "https://files.pythonhosted.org/packages/74/95/24a5cf86fa74f0b4708a59d93a647ab7870546d4be7213a38b6cbe3e1e00/cytoolz-0.12.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5617fe5cd6c27c582b2ef007e1f790773e973e743055e5654f7b78995325b190",
                "md5": "a8616178433eeb11cd5e944fe288ae74",
                "sha256": "e44f4c25e1e7cf6149b499c74945a14649c8866d36371a2c2d2164e4649e7755"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a8616178433eeb11cd5e944fe288ae74",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2012027,
            "upload_time": "2024-01-25T01:38:17",
            "upload_time_iso_8601": "2024-01-25T01:38:17.922290Z",
            "url": "https://files.pythonhosted.org/packages/56/17/fe5cd6c27c582b2ef007e1f790773e973e743055e5654f7b78995325b190/cytoolz-0.12.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a31ca7e6f163325a63feaed0a617e271a1adfbf954ec4ce113e1c0074063d108",
                "md5": "9f8aa6cdb1c70b110fd49e130265d9a8",
                "sha256": "c64f8e60c1dd69e4d5e615481f2d57937746f4a6be2d0f86e9e7e3b9e2243b5e"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f8aa6cdb1c70b110fd49e130265d9a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1968241,
            "upload_time": "2024-01-25T01:38:20",
            "upload_time_iso_8601": "2024-01-25T01:38:20.020717Z",
            "url": "https://files.pythonhosted.org/packages/a3/1c/a7e6f163325a63feaed0a617e271a1adfbf954ec4ce113e1c0074063d108/cytoolz-0.12.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c025105c2af52d09936f7cb3c2cb1a259894dee45fdecf5e278f0f381c89c3e6",
                "md5": "780c9cccf671849e912f42856b284965",
                "sha256": "33c63186f3bf9d7ef1347bc0537bb9a0b4111a0d7d6e619623cabc18fef0dc3b"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "780c9cccf671849e912f42856b284965",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1872825,
            "upload_time": "2024-01-25T01:38:21",
            "upload_time_iso_8601": "2024-01-25T01:38:21.919913Z",
            "url": "https://files.pythonhosted.org/packages/c0/25/105c2af52d09936f7cb3c2cb1a259894dee45fdecf5e278f0f381c89c3e6/cytoolz-0.12.3-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": "34de9fb3dc08f31afaf93e3b7fd997f260fd973720b2e09d5fc359defa83d8a9",
                "md5": "07e534afbe54862c4c6be0f38e40cb44",
                "sha256": "fdddb9d988405f24035234f1e8d1653ab2e48cc2404226d21b49a129aefd1d25"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "07e534afbe54862c4c6be0f38e40cb44",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1951717,
            "upload_time": "2024-01-25T01:38:24",
            "upload_time_iso_8601": "2024-01-25T01:38:24.168788Z",
            "url": "https://files.pythonhosted.org/packages/34/de/9fb3dc08f31afaf93e3b7fd997f260fd973720b2e09d5fc359defa83d8a9/cytoolz-0.12.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b6cb6f73fadcc2992047d25794e2ea6db628327ac0d9c39a91f8b53377f3b803",
                "md5": "1728157ac0b36050cc002cafebea5229",
                "sha256": "6986632d8a969ea1e720990c818dace1a24c11015fd7c59b9fea0b65ef71f726"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "1728157ac0b36050cc002cafebea5229",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1872712,
            "upload_time": "2024-01-25T01:38:25",
            "upload_time_iso_8601": "2024-01-25T01:38:25.767494Z",
            "url": "https://files.pythonhosted.org/packages/b6/cb/6f73fadcc2992047d25794e2ea6db628327ac0d9c39a91f8b53377f3b803/cytoolz-0.12.3-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a34a260b64f43d318a75bd9b661172ea019301c3df98efef2154005946c25c4",
                "md5": "464ec6b18fbf6e5442d45250424a17f0",
                "sha256": "0ba1cbc4d9cd7571c917f88f4a069568e5121646eb5d82b2393b2cf84712cf2a"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "464ec6b18fbf6e5442d45250424a17f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2027103,
            "upload_time": "2024-01-25T01:38:28",
            "upload_time_iso_8601": "2024-01-25T01:38:28.171505Z",
            "url": "https://files.pythonhosted.org/packages/5a/34/a260b64f43d318a75bd9b661172ea019301c3df98efef2154005946c25c4/cytoolz-0.12.3-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ebcb413c8b4f1b38e051da9df5b65c8d0b3a033593f584773be7495ef4b2484",
                "md5": "8e6c1f08d1576bdcb5d49eaf114698c1",
                "sha256": "7d267ffc9a36c0a9a58c7e0adc9fa82620f22e4a72533e15dd1361f57fc9accf"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "8e6c1f08d1576bdcb5d49eaf114698c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2028642,
            "upload_time": "2024-01-25T01:38:30",
            "upload_time_iso_8601": "2024-01-25T01:38:30.801047Z",
            "url": "https://files.pythonhosted.org/packages/1e/bc/b413c8b4f1b38e051da9df5b65c8d0b3a033593f584773be7495ef4b2484/cytoolz-0.12.3-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b36a14e47d241c703681707df9fc98bb7e5b20ad2fd62741e201b5aacad3d24",
                "md5": "850c73cb1220f693fe39d307c317cecc",
                "sha256": "95e878868a172a41fbf6c505a4b967309e6870e22adc7b1c3b19653d062711fa"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "850c73cb1220f693fe39d307c317cecc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1967107,
            "upload_time": "2024-01-25T01:38:32",
            "upload_time_iso_8601": "2024-01-25T01:38:32.271847Z",
            "url": "https://files.pythonhosted.org/packages/3b/36/a14e47d241c703681707df9fc98bb7e5b20ad2fd62741e201b5aacad3d24/cytoolz-0.12.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7235346bea912e1a01fa88524a1a247540b9da18a9898d81b4a196a7b2bf8a8e",
                "md5": "ff058e9881972a1c33b08adeac229b7b",
                "sha256": "8e21932d6d260996f7109f2a40b2586070cb0a0cf1d65781e156326d5ebcc329"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "ff058e9881972a1c33b08adeac229b7b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 323484,
            "upload_time": "2024-01-25T01:38:34",
            "upload_time_iso_8601": "2024-01-25T01:38:34.233779Z",
            "url": "https://files.pythonhosted.org/packages/72/35/346bea912e1a01fa88524a1a247540b9da18a9898d81b4a196a7b2bf8a8e/cytoolz-0.12.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bf7308541c3ed84bc8ff1afcf39b0b3bf09118e8faf6c2286e2f0778effe8b54",
                "md5": "d571405d730d0343e06d8a201cbd9f2d",
                "sha256": "0d8edfbc694af6c9bda4db56643fb8ed3d14e47bec358c2f1417de9a12d6d1fb"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d571405d730d0343e06d8a201cbd9f2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 364351,
            "upload_time": "2024-01-25T01:38:35",
            "upload_time_iso_8601": "2024-01-25T01:38:35.758249Z",
            "url": "https://files.pythonhosted.org/packages/bf/73/08541c3ed84bc8ff1afcf39b0b3bf09118e8faf6c2286e2f0778effe8b54/cytoolz-0.12.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "008cc58e2f14a88132722988ee0951b01ee6cc4880302384f064902d6e8fb048",
                "md5": "d0fa83888aeb7293089e27cc95682a59",
                "sha256": "55f9bd1ae6c2a27eda5abe2a0b65a83029d2385c5a1da7b8ef47af5905d7e905"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d0fa83888aeb7293089e27cc95682a59",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 353101,
            "upload_time": "2024-01-25T01:38:37",
            "upload_time_iso_8601": "2024-01-25T01:38:37.808006Z",
            "url": "https://files.pythonhosted.org/packages/00/8c/c58e2f14a88132722988ee0951b01ee6cc4880302384f064902d6e8fb048/cytoolz-0.12.3-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "35996ef817203004c7055370fa1ab3bb0dfc6b7ebd0b4942099ce86007614001",
                "md5": "41d9744d5f8a5fc82adf0f1e56765278",
                "sha256": "d2d271393c378282727f1231d40391ae93b93ddc0997448acc21dd0cb6a1e56d"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "41d9744d5f8a5fc82adf0f1e56765278",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 385225,
            "upload_time": "2024-01-25T01:38:39",
            "upload_time_iso_8601": "2024-01-25T01:38:39.382529Z",
            "url": "https://files.pythonhosted.org/packages/35/99/6ef817203004c7055370fa1ab3bb0dfc6b7ebd0b4942099ce86007614001/cytoolz-0.12.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a22564e5907b15bd16f0f38e825762540ee3293b513f2eb4b9bb51b7f78d5457",
                "md5": "cae7c645ce4cee6d6b25ec45626b93cc",
                "sha256": "ee98968d6a66ee83a8ceabf31182189ab5d8598998c8ce69b6d5843daeb2db60"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "cae7c645ce4cee6d6b25ec45626b93cc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 405888,
            "upload_time": "2024-01-25T01:38:40",
            "upload_time_iso_8601": "2024-01-25T01:38:40.836229Z",
            "url": "https://files.pythonhosted.org/packages/a2/25/64e5907b15bd16f0f38e825762540ee3293b513f2eb4b9bb51b7f78d5457/cytoolz-0.12.3-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": "17c00e19ab05222cf2370d580e5500409c26266f89e853fa18b2b12c530f3957",
                "md5": "f261d1d989dab78fbc7d136cf930e951",
                "sha256": "01cfb8518828c1189200c02a5010ea404407fb18fd5589e29c126e84bbeadd36"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-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": "f261d1d989dab78fbc7d136cf930e951",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 396781,
            "upload_time": "2024-01-25T01:38:42",
            "upload_time_iso_8601": "2024-01-25T01:38:42.349708Z",
            "url": "https://files.pythonhosted.org/packages/17/c0/0e19ab05222cf2370d580e5500409c26266f89e853fa18b2b12c530f3957/cytoolz-0.12.3-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": "5e39bee67e2b541ca3478a982c68d7d23b718fa7f2947bdfc0eecdba9c4e0882",
                "md5": "b5e2e02b2b5fde47947c0af4c9c14fa9",
                "sha256": "456395d7aec01db32bf9e6db191d667347c78d8d48e77234521fa1078f60dabb"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b5e2e02b2b5fde47947c0af4c9c14fa9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 340712,
            "upload_time": "2024-01-25T01:38:45",
            "upload_time_iso_8601": "2024-01-25T01:38:45.075389Z",
            "url": "https://files.pythonhosted.org/packages/5e/39/bee67e2b541ca3478a982c68d7d23b718fa7f2947bdfc0eecdba9c4e0882/cytoolz-0.12.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57cce861625df5f3d53376af960520dd7711a0d25bdc9b92c06e2bd5709a16df",
                "md5": "e41fdcffe3f6c8d02e549cc48527b5ab",
                "sha256": "cd88028bb897fba99ddd84f253ca6bef73ecb7bdf3f3cf25bc493f8f97d3c7c5"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e41fdcffe3f6c8d02e549cc48527b5ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 350268,
            "upload_time": "2024-01-25T01:38:46",
            "upload_time_iso_8601": "2024-01-25T01:38:46.840966Z",
            "url": "https://files.pythonhosted.org/packages/57/cc/e861625df5f3d53376af960520dd7711a0d25bdc9b92c06e2bd5709a16df/cytoolz-0.12.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2125e285fa050225b5b5febf9ea95a6cb1c5754f8d5fa8da121fad7aea82aadf",
                "md5": "3d281baf40b6ce9775ece2dfe4f891da",
                "sha256": "59b19223e7f7bd7a73ec3aa6fdfb73b579ff09c2bc0b7d26857eec2d01a58c76"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3d281baf40b6ce9775ece2dfe4f891da",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 385130,
            "upload_time": "2024-01-25T01:38:48",
            "upload_time_iso_8601": "2024-01-25T01:38:48.201713Z",
            "url": "https://files.pythonhosted.org/packages/21/25/e285fa050225b5b5febf9ea95a6cb1c5754f8d5fa8da121fad7aea82aadf/cytoolz-0.12.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "14f0f9d69dbfcd1f67e61a3f9aeb46bfc80388ab38a0aaedcda0ea7a4b950aec",
                "md5": "7e59f28d9c9a35f9e2eed0b6f59c7bb2",
                "sha256": "0a79d72b08048a0980a59457c239555f111ac0c8bdc140c91a025f124104dbb4"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7e59f28d9c9a35f9e2eed0b6f59c7bb2",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 406546,
            "upload_time": "2024-01-25T01:38:49",
            "upload_time_iso_8601": "2024-01-25T01:38:49.716566Z",
            "url": "https://files.pythonhosted.org/packages/14/f0/f9d69dbfcd1f67e61a3f9aeb46bfc80388ab38a0aaedcda0ea7a4b950aec/cytoolz-0.12.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a24adf2d66c382aa7653e83d7f7d68687c3f6a73dc28aa9a5ffe5a4b88ca0104",
                "md5": "c78e21126be7a06a04eee6ae567bf7f7",
                "sha256": "1dd70141b32b717696a72b8876e86bc9c6f8eff995c1808e299db3541213ff82"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c78e21126be7a06a04eee6ae567bf7f7",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 396723,
            "upload_time": "2024-01-25T01:38:51",
            "upload_time_iso_8601": "2024-01-25T01:38:51.488093Z",
            "url": "https://files.pythonhosted.org/packages/a2/4a/df2d66c382aa7653e83d7f7d68687c3f6a73dc28aa9a5ffe5a4b88ca0104/cytoolz-0.12.3-pp37-pypy37_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": "b6fd61d7b87a8519c7e47c59ad20690d04f01534e8bd842b2c2238a74a02b7a5",
                "md5": "adfd0ecc7d421b484caec6317c9fb5f7",
                "sha256": "a1445c91009eb775d479e88954c51d0b4cf9a1e8ce3c503c2672d17252882647"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "adfd0ecc7d421b484caec6317c9fb5f7",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 340872,
            "upload_time": "2024-01-25T01:38:53",
            "upload_time_iso_8601": "2024-01-25T01:38:53.825646Z",
            "url": "https://files.pythonhosted.org/packages/b6/fd/61d7b87a8519c7e47c59ad20690d04f01534e8bd842b2c2238a74a02b7a5/cytoolz-0.12.3-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be3f778d8fe95c323ae018c76b5d73eab5abb0fe2b15f345d9cb1c0bc667d063",
                "md5": "cd0d1e392f4d7c011d51f81fd6ce1d66",
                "sha256": "ca6a9a9300d5bda417d9090107c6d2b007683efc59d63cc09aca0e7930a08a85"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd0d1e392f4d7c011d51f81fd6ce1d66",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 350453,
            "upload_time": "2024-01-25T01:38:55",
            "upload_time_iso_8601": "2024-01-25T01:38:55.364884Z",
            "url": "https://files.pythonhosted.org/packages/be/3f/778d8fe95c323ae018c76b5d73eab5abb0fe2b15f345d9cb1c0bc667d063/cytoolz-0.12.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57de66dbafed0126ac6d23b0649c9cf5eaf79ee7d8ae01f1d2b475cc6d45d63f",
                "md5": "1e9868bd435b36c5a1c415eb856c25db",
                "sha256": "be6feb903d2a08a4ba2e70e950e862fd3be9be9a588b7c38cee4728150a52918"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1e9868bd435b36c5a1c415eb856c25db",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 385266,
            "upload_time": "2024-01-25T01:38:57",
            "upload_time_iso_8601": "2024-01-25T01:38:57.429366Z",
            "url": "https://files.pythonhosted.org/packages/57/de/66dbafed0126ac6d23b0649c9cf5eaf79ee7d8ae01f1d2b475cc6d45d63f/cytoolz-0.12.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb97e8354efa9a34ac75b5902a33f7d42756d0fd07185676fd3dcf1867bef7af",
                "md5": "023ed0bb63abb2ce3f42a9889e0cfe02",
                "sha256": "92b6f43f086e5a965d33d62a145ae121b4ccb6e0789ac0acc895ce084fec8c65"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "023ed0bb63abb2ce3f42a9889e0cfe02",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 406264,
            "upload_time": "2024-01-25T01:38:58",
            "upload_time_iso_8601": "2024-01-25T01:38:58.875761Z",
            "url": "https://files.pythonhosted.org/packages/bb/97/e8354efa9a34ac75b5902a33f7d42756d0fd07185676fd3dcf1867bef7af/cytoolz-0.12.3-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": "c8a492841dbf1acfca8fceda88ef3c2a771250829088e4d80437b593fe969f3f",
                "md5": "d4ad45f1b7c24e4086eb14f96dca7079",
                "sha256": "534fa66db8564d9b13872d81d54b6b09ae592c585eb826aac235bd6f1830f8ad"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-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": "d4ad45f1b7c24e4086eb14f96dca7079",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 396939,
            "upload_time": "2024-01-25T01:39:00",
            "upload_time_iso_8601": "2024-01-25T01:39:00.917496Z",
            "url": "https://files.pythonhosted.org/packages/c8/a4/92841dbf1acfca8fceda88ef3c2a771250829088e4d80437b593fe969f3f/cytoolz-0.12.3-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": "3bc44337f978e7811e44b8b3c579271742bdafe801d9cefdc366ae8467e725c5",
                "md5": "53c4821d742d99f1894d867bcd013e94",
                "sha256": "fea649f979def23150680de1bd1d09682da3b54932800a0f90f29fc2a6c98ba8"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "53c4821d742d99f1894d867bcd013e94",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 341049,
            "upload_time": "2024-01-25T01:39:02",
            "upload_time_iso_8601": "2024-01-25T01:39:02.847136Z",
            "url": "https://files.pythonhosted.org/packages/3b/c4/4337f978e7811e44b8b3c579271742bdafe801d9cefdc366ae8467e725c5/cytoolz-0.12.3-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26cce6fed5e1c51a7df82d86c85ef9ac56d1ddb747ae2535ce578084ab609435",
                "md5": "6e4658cbe5632a8d26c7988917c73026",
                "sha256": "a447247ed312dd64e3a8d9483841ecc5338ee26d6e6fbd29cd373ed030db0240"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e4658cbe5632a8d26c7988917c73026",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 352376,
            "upload_time": "2024-01-25T01:39:04",
            "upload_time_iso_8601": "2024-01-25T01:39:04.532710Z",
            "url": "https://files.pythonhosted.org/packages/26/cc/e6fed5e1c51a7df82d86c85ef9ac56d1ddb747ae2535ce578084ab609435/cytoolz-0.12.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "348363d98c0ec2f0c4c0342a374ce7d0ce19849fded45d662fbfa45a5a813a00",
                "md5": "6bb4eaa8a22202a058a7c7feb9aa3784",
                "sha256": "ba3f843aa89f35467b38c398ae5b980a824fdbdb94065adc6ec7c47a0a22f4c7"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6bb4eaa8a22202a058a7c7feb9aa3784",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 384142,
            "upload_time": "2024-01-25T01:39:06",
            "upload_time_iso_8601": "2024-01-25T01:39:06.076639Z",
            "url": "https://files.pythonhosted.org/packages/34/83/63d98c0ec2f0c4c0342a374ce7d0ce19849fded45d662fbfa45a5a813a00/cytoolz-0.12.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d211487d21afbabf9f99390d2d43515d91de1e58aea78bdb39c520e45ae8d558",
                "md5": "2ba63be45c38c0fca964c07bcf21c93c",
                "sha256": "582c22f97a380211fb36a7b65b1beeb84ea11d82015fa84b054be78580390082"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2ba63be45c38c0fca964c07bcf21c93c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 404529,
            "upload_time": "2024-01-25T01:39:07",
            "upload_time_iso_8601": "2024-01-25T01:39:07.639186Z",
            "url": "https://files.pythonhosted.org/packages/d2/11/487d21afbabf9f99390d2d43515d91de1e58aea78bdb39c520e45ae8d558/cytoolz-0.12.3-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": "5e93f0dbc7a53fe1534adb6bdadd15ce7cc790edddabacf14aa58770e37b24ab",
                "md5": "6461e8c0167345e723751059d68955eb",
                "sha256": "47feb089506fc66e1593cd9ade3945693a9d089a445fbe9a11385cab200b9f22"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-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": "6461e8c0167345e723751059d68955eb",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 395881,
            "upload_time": "2024-01-25T01:39:09",
            "upload_time_iso_8601": "2024-01-25T01:39:09.186715Z",
            "url": "https://files.pythonhosted.org/packages/5e/93/f0dbc7a53fe1534adb6bdadd15ce7cc790edddabacf14aa58770e37b24ab/cytoolz-0.12.3-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": "b46c91c2ef18235e2394402196f111277e5767369eb4f83213bda1102c5277d8",
                "md5": "c3c51ac9b334cac13305a9516e83617d",
                "sha256": "ba9002d2f043943744a9dc8e50a47362bcb6e6f360dc0a1abcb19642584d87bb"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c3c51ac9b334cac13305a9516e83617d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 340238,
            "upload_time": "2024-01-25T01:39:11",
            "upload_time_iso_8601": "2024-01-25T01:39:11.023570Z",
            "url": "https://files.pythonhosted.org/packages/b4/6c/91c2ef18235e2394402196f111277e5767369eb4f83213bda1102c5277d8/cytoolz-0.12.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70d88df71050b214686591241a1826d2e6934b5c295c5bc57f643e4ed697f1eb",
                "md5": "6e426e46ed0816596526fc600bd35d59",
                "sha256": "4503dc59f4ced53a54643272c61dc305d1dbbfbd7d6bdf296948de9f34c3a282"
            },
            "downloads": -1,
            "filename": "cytoolz-0.12.3.tar.gz",
            "has_sig": false,
            "md5_digest": "6e426e46ed0816596526fc600bd35d59",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 625899,
            "upload_time": "2024-01-25T01:39:13",
            "upload_time_iso_8601": "2024-01-25T01:39:13.834311Z",
            "url": "https://files.pythonhosted.org/packages/70/d8/8df71050b214686591241a1826d2e6934b5c295c5bc57f643e4ed697f1eb/cytoolz-0.12.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-25 01:39:13",
    "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.18328s