kivy-garden.collider


Namekivy-garden.collider JSON
Version 0.1.3 PyPI version JSON
download
home_pagehttps://github.com/kivy-garden/collider
SummaryCollides a point with a space defined by a curve.
upload_time2024-03-15 04:42:46
maintainer
docs_urlNone
authorKivy
requires_python
license
keywords kivy kivy-garden
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Coverage Status](https://coveralls.io/repos/github/kivy-garden/collider/badge.svg?branch=master)](https://coveralls.io/github/kivy-garden/collider?branch=master)
[![Github Build Status](https://github.com/kivy-garden/collider/workflows/Garden%20flower/badge.svg)](https://github.com/kivy-garden/collider/actions)

See https://kivy-garden.github.io/collider/ for the rendered collider docs.

Please see the garden [instructions](https://kivy-garden.github.io) for how to use kivy garden flowers.

Collider
===============

See http://kivy-garden.github.io/garden.collider/index.html for html docs.

The collider module contains classes which can be used to test membership
of a point in some space. See individual class documentation for details.

For example, using the Collide2DPoly class we can test whether points fall
within a general polygon, e.g. a simple triangle::

    >>> collider = Collide2DPoly([10., 10., 20., 30., 30., 10.],\
                                 cache=True)
    >>> (0.0, 0.0) in collider
    False
    >>> (20.0, 20.0) in collider
    True

Install
---------

To install with pip::

    pip install kivy_garden.collider

To build or re-build locally::

    PYTHONPATH=.:$PYTHONPATH python setup.py build_ext --inplace

Or to install as editable (package is installed, but can be edited in its original location)::

    pip install -e .

CI
--

Every push or pull request run the [GitHub Action](https://github.com/kivy-garden/flower/actions) CI.
It tests the code on various OS and also generates wheels that can be released on PyPI upon a
tag. Docs are also generated and uploaded to the repo as well as artifacts of the CI.

TODO
-------

* add your code

Contributing
--------------

Check out our [contribution guide](CONTRIBUTING.md) and feel free to improve the flower.

License
---------

This software is released under the terms of the MIT License.
Please see the [LICENSE.txt](LICENSE.txt) file.

How to release
===============

* update `__version__` in `kivy-garden/collider/__init__.py` to the latest version.
* update `CHANGELOG.md` and commit the changes
* call `git tag -a x.y.z -m "Tagging version x.y.z"`
* for each python version you want to release call `python setup.py bdist_wheel`, which generates the wheels. Call once `python setup.py sdist` to generate the sdist. They are saved in the dist/* directory
* Make sure the dist directory contains the files to be uploaded to pypi and call `twine check dist/*`
* then call `twine upload dist/*` to upload to pypi.
* call `git push origin master --tags` to push the latest changes and the tags to github.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/kivy-garden/collider",
    "name": "kivy-garden.collider",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Kivy kivy-garden",
    "author": "Kivy",
    "author_email": "kivy@kivy.org",
    "download_url": "https://files.pythonhosted.org/packages/71/4c/c190a29571071d6cb5871342a55261a2e6907e7c804d2b1a8680cabe1291/kivy_garden.collider-0.1.3.tar.gz",
    "platform": null,
    "description": "[![Coverage Status](https://coveralls.io/repos/github/kivy-garden/collider/badge.svg?branch=master)](https://coveralls.io/github/kivy-garden/collider?branch=master)\n[![Github Build Status](https://github.com/kivy-garden/collider/workflows/Garden%20flower/badge.svg)](https://github.com/kivy-garden/collider/actions)\n\nSee https://kivy-garden.github.io/collider/ for the rendered collider docs.\n\nPlease see the garden [instructions](https://kivy-garden.github.io) for how to use kivy garden flowers.\n\nCollider\n===============\n\nSee http://kivy-garden.github.io/garden.collider/index.html for html docs.\n\nThe collider module contains classes which can be used to test membership\nof a point in some space. See individual class documentation for details.\n\nFor example, using the Collide2DPoly class we can test whether points fall\nwithin a general polygon, e.g. a simple triangle::\n\n    >>> collider = Collide2DPoly([10., 10., 20., 30., 30., 10.],\\\n                                 cache=True)\n    >>> (0.0, 0.0) in collider\n    False\n    >>> (20.0, 20.0) in collider\n    True\n\nInstall\n---------\n\nTo install with pip::\n\n    pip install kivy_garden.collider\n\nTo build or re-build locally::\n\n    PYTHONPATH=.:$PYTHONPATH python setup.py build_ext --inplace\n\nOr to install as editable (package is installed, but can be edited in its original location)::\n\n    pip install -e .\n\nCI\n--\n\nEvery push or pull request run the [GitHub Action](https://github.com/kivy-garden/flower/actions) CI.\nIt tests the code on various OS and also generates wheels that can be released on PyPI upon a\ntag. Docs are also generated and uploaded to the repo as well as artifacts of the CI.\n\nTODO\n-------\n\n* add your code\n\nContributing\n--------------\n\nCheck out our [contribution guide](CONTRIBUTING.md) and feel free to improve the flower.\n\nLicense\n---------\n\nThis software is released under the terms of the MIT License.\nPlease see the [LICENSE.txt](LICENSE.txt) file.\n\nHow to release\n===============\n\n* update `__version__` in `kivy-garden/collider/__init__.py` to the latest version.\n* update `CHANGELOG.md` and commit the changes\n* call `git tag -a x.y.z -m \"Tagging version x.y.z\"`\n* for each python version you want to release call `python setup.py bdist_wheel`, which generates the wheels. Call once `python setup.py sdist` to generate the sdist. They are saved in the dist/* directory\n* Make sure the dist directory contains the files to be uploaded to pypi and call `twine check dist/*`\n* then call `twine upload dist/*` to upload to pypi.\n* call `git push origin master --tags` to push the latest changes and the tags to github.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Collides a point with a space defined by a curve.",
    "version": "0.1.3",
    "project_urls": {
        "Bug Reports": "https://github.com/kivy-garden/collider/issues",
        "Homepage": "https://github.com/kivy-garden/collider",
        "Source": "https://github.com/kivy-garden/collider"
    },
    "split_keywords": [
        "kivy",
        "kivy-garden"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02dd0aa93f58419b2f92eb79c52c78711c44f51f02c420237ae96e4c3c3b291c",
                "md5": "04910561c98ce659ee78a7bfae91e133",
                "sha256": "e2864dd9e7c8955dfafa6be761834e1add255e27ae05e657970bb30402e4dccd"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "04910561c98ce659ee78a7bfae91e133",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 115743,
            "upload_time": "2024-03-15T04:42:00",
            "upload_time_iso_8601": "2024-03-15T04:42:00.219461Z",
            "url": "https://files.pythonhosted.org/packages/02/dd/0aa93f58419b2f92eb79c52c78711c44f51f02c420237ae96e4c3c3b291c/kivy_garden.collider-0.1.3-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3531dd475c98e6b171205261c3d49a961d6e57ac82eb6b6b30e0ebab311510eb",
                "md5": "dbc21d17c118871fbf011800c91887fa",
                "sha256": "ffd813ce9671029b58adf88d654018cb286238081f955491b5a580c101d455f9"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dbc21d17c118871fbf011800c91887fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 62481,
            "upload_time": "2024-03-15T04:42:02",
            "upload_time_iso_8601": "2024-03-15T04:42:02.103913Z",
            "url": "https://files.pythonhosted.org/packages/35/31/dd475c98e6b171205261c3d49a961d6e57ac82eb6b6b30e0ebab311510eb/kivy_garden.collider-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6b10b8d459c4bc4a96da6a996e277dddb46ec7d627b7cb162931ceb3e4a8519",
                "md5": "5e7ccb33c35daa60b430b488ec3aebd9",
                "sha256": "6de55b2b425e761f90f3bba1fc52f66e9fc3a1189b3dee5102f3700d5cdf7993"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5e7ccb33c35daa60b430b488ec3aebd9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 59218,
            "upload_time": "2024-03-15T04:42:03",
            "upload_time_iso_8601": "2024-03-15T04:42:03.668246Z",
            "url": "https://files.pythonhosted.org/packages/e6/b1/0b8d459c4bc4a96da6a996e277dddb46ec7d627b7cb162931ceb3e4a8519/kivy_garden.collider-0.1.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7577c2606045cd193be05dff2e78d59f9d01401c35451d8b30f33cc5e8aa3dcc",
                "md5": "c6211ad0a484fd0d41c948d451df1f1a",
                "sha256": "a0ba768355a1328770daba9046adc4877d3eacc3007e972bcdfce8a2310ac832"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c6211ad0a484fd0d41c948d451df1f1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 297763,
            "upload_time": "2024-03-15T04:42:05",
            "upload_time_iso_8601": "2024-03-15T04:42:05.483880Z",
            "url": "https://files.pythonhosted.org/packages/75/77/c2606045cd193be05dff2e78d59f9d01401c35451d8b30f33cc5e8aa3dcc/kivy_garden.collider-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "61b030fd6a5df41afec81f877ca7478be25e9066259b88fe19fa6f8b8725fa14",
                "md5": "9b49b9aacb4ae76ac5a069ae89f3ee92",
                "sha256": "d6408b0a4ad71e0cfd5decdb25903a5f8b1065e43b02b260e86fc4fc352f9bfe"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b49b9aacb4ae76ac5a069ae89f3ee92",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 302716,
            "upload_time": "2024-03-15T04:42:06",
            "upload_time_iso_8601": "2024-03-15T04:42:06.775686Z",
            "url": "https://files.pythonhosted.org/packages/61/b0/30fd6a5df41afec81f877ca7478be25e9066259b88fe19fa6f8b8725fa14/kivy_garden.collider-0.1.3-cp310-cp310-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": "e645f2724e27ee602bc4e9809c3e3b346404cc87f53cbd20340360e4a16f50f2",
                "md5": "64e70981a495b37c10a31e573e6a0cd3",
                "sha256": "df36d1c9cb5da1942f514e5f3ac5733aa54baa8f2a2125e8a0e97369d7c2da51"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "64e70981a495b37c10a31e573e6a0cd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 50392,
            "upload_time": "2024-03-15T04:42:09",
            "upload_time_iso_8601": "2024-03-15T04:42:09.248647Z",
            "url": "https://files.pythonhosted.org/packages/e6/45/f2724e27ee602bc4e9809c3e3b346404cc87f53cbd20340360e4a16f50f2/kivy_garden.collider-0.1.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "881d3afccf10a85b81c765c96a35b10d26e890892f78ac5e01ed32eae779ac71",
                "md5": "038e11450593fa9fcb2dafe533fc3b1a",
                "sha256": "a2febe56b734abed2a9a7a865ddf4fcb2dcd5bd0c567c1efa9c7af225597c608"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "038e11450593fa9fcb2dafe533fc3b1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 56168,
            "upload_time": "2024-03-15T04:42:07",
            "upload_time_iso_8601": "2024-03-15T04:42:07.759582Z",
            "url": "https://files.pythonhosted.org/packages/88/1d/3afccf10a85b81c765c96a35b10d26e890892f78ac5e01ed32eae779ac71/kivy_garden.collider-0.1.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "278e3d556a49e5c78827b3a55182ccbc413fde49afdc9a6ec5a99472ddbfadfd",
                "md5": "7c5270a4e4669e26c974a325b1f2e652",
                "sha256": "b1b80127ff8128a839dbdbdcd45c9b7e76f7dfd833a890c2de76b4a403d476a7"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7c5270a4e4669e26c974a325b1f2e652",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 116758,
            "upload_time": "2024-03-15T04:42:10",
            "upload_time_iso_8601": "2024-03-15T04:42:10.818672Z",
            "url": "https://files.pythonhosted.org/packages/27/8e/3d556a49e5c78827b3a55182ccbc413fde49afdc9a6ec5a99472ddbfadfd/kivy_garden.collider-0.1.3-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b7f381ee2585c8ac6a27ceb6dd6cf8a1d5027c1367485ce6a37454aac79ec42",
                "md5": "8324d1c718b84a1e760424e380774a82",
                "sha256": "772a044ec067f5c3208660a37aed7434310525bd1281f7257123612e5a3bbb26"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8324d1c718b84a1e760424e380774a82",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 63040,
            "upload_time": "2024-03-15T04:42:12",
            "upload_time_iso_8601": "2024-03-15T04:42:12.340483Z",
            "url": "https://files.pythonhosted.org/packages/9b/7f/381ee2585c8ac6a27ceb6dd6cf8a1d5027c1367485ce6a37454aac79ec42/kivy_garden.collider-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9cb32542b1e86013c8337642f417dbdd4f53eb4586bbf5aebf5f2da5f146988e",
                "md5": "4316ca40c70780bd81bdb37e40a066ea",
                "sha256": "d5b78691c201af7a21f236211ea10173b8f681bc6a64e9dd5c212e4c61154915"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4316ca40c70780bd81bdb37e40a066ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 59668,
            "upload_time": "2024-03-15T04:42:13",
            "upload_time_iso_8601": "2024-03-15T04:42:13.791188Z",
            "url": "https://files.pythonhosted.org/packages/9c/b3/2542b1e86013c8337642f417dbdd4f53eb4586bbf5aebf5f2da5f146988e/kivy_garden.collider-0.1.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0cee55c4877e06b3bbb6e05cbc568db099271c1aad35acda18e3f7ed5699fec0",
                "md5": "9ad916ee7c23d867d5651808532f0127",
                "sha256": "362b3efcc2389930fe2e361f02811318912b2c75ef9c21a7cde98a490f36f175"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9ad916ee7c23d867d5651808532f0127",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 325082,
            "upload_time": "2024-03-15T04:42:14",
            "upload_time_iso_8601": "2024-03-15T04:42:14.874993Z",
            "url": "https://files.pythonhosted.org/packages/0c/ee/55c4877e06b3bbb6e05cbc568db099271c1aad35acda18e3f7ed5699fec0/kivy_garden.collider-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db1cae07485b0e1639083fba4f669fb5de88686f843faa94dd8283c3a0b9936f",
                "md5": "85ad41acc652c1e553c2bf9cdfa6978f",
                "sha256": "ea7bb13d1d3f4c708b1289a7a9d451c1f66530a154ee3f721853da67fd601943"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "85ad41acc652c1e553c2bf9cdfa6978f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 330297,
            "upload_time": "2024-03-15T04:42:16",
            "upload_time_iso_8601": "2024-03-15T04:42:16.100640Z",
            "url": "https://files.pythonhosted.org/packages/db/1c/ae07485b0e1639083fba4f669fb5de88686f843faa94dd8283c3a0b9936f/kivy_garden.collider-0.1.3-cp311-cp311-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": "7161c33f1ee3b0c649eb4e46a881300a5e9b42f44bbc74e1c47abd492ae7fc3b",
                "md5": "497cc0ee68118361d6ccb06cd402bfc0",
                "sha256": "f7159805ccaa8721adcbc88ac248e60a27daca392264e3f12398a5e11ba5bd83"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "497cc0ee68118361d6ccb06cd402bfc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 50044,
            "upload_time": "2024-03-15T04:42:18",
            "upload_time_iso_8601": "2024-03-15T04:42:18.087071Z",
            "url": "https://files.pythonhosted.org/packages/71/61/c33f1ee3b0c649eb4e46a881300a5e9b42f44bbc74e1c47abd492ae7fc3b/kivy_garden.collider-0.1.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19af5b3a1292e5989165ab2829c27be64448a01f901ea4152f684ce47d5fc48c",
                "md5": "99bba244133e6e9839e11791f7836ec2",
                "sha256": "abb2b37f7a043b4f7fbf801df42929e97e3f32a7b5098fba2993ce80de01743b"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "99bba244133e6e9839e11791f7836ec2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 56477,
            "upload_time": "2024-03-15T04:42:17",
            "upload_time_iso_8601": "2024-03-15T04:42:17.140493Z",
            "url": "https://files.pythonhosted.org/packages/19/af/5b3a1292e5989165ab2829c27be64448a01f901ea4152f684ce47d5fc48c/kivy_garden.collider-0.1.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f91788778bbf4306765e6a8b836658607f35c120e016eac825ed3ec21f966bdd",
                "md5": "1069a61118cf8a57b15f61d74e97d9d4",
                "sha256": "c94cb0a57546f38b36036436dd2dcbcb8501b5989336a3862e4d303e517ea989"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "1069a61118cf8a57b15f61d74e97d9d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 116276,
            "upload_time": "2024-03-15T04:42:19",
            "upload_time_iso_8601": "2024-03-15T04:42:19.173334Z",
            "url": "https://files.pythonhosted.org/packages/f9/17/88778bbf4306765e6a8b836658607f35c120e016eac825ed3ec21f966bdd/kivy_garden.collider-0.1.3-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d096d74ce029d5ab88a773007cdc274e0faefe6b19a61dd5c39f719f4d60bb4",
                "md5": "e74e633f251977e1abf2c034875e3087",
                "sha256": "34d62feaa2ab1f2066a97cb7231f899a8647d95673a64141f6e4743f2646397c"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e74e633f251977e1abf2c034875e3087",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 62887,
            "upload_time": "2024-03-15T04:42:20",
            "upload_time_iso_8601": "2024-03-15T04:42:20.738645Z",
            "url": "https://files.pythonhosted.org/packages/7d/09/6d74ce029d5ab88a773007cdc274e0faefe6b19a61dd5c39f719f4d60bb4/kivy_garden.collider-0.1.3-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fee5aad76c2a2ebaa60f467f4b69363189a5630a3df4234680ad0dbd1c0b0607",
                "md5": "57f5818d36ce7df84ba9552f906868cb",
                "sha256": "f9b874d8c67fa4169e55bc3f2beb53e7c496f8aa83e0a138342489074323c266"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "57f5818d36ce7df84ba9552f906868cb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 59460,
            "upload_time": "2024-03-15T04:42:22",
            "upload_time_iso_8601": "2024-03-15T04:42:22.206709Z",
            "url": "https://files.pythonhosted.org/packages/fe/e5/aad76c2a2ebaa60f467f4b69363189a5630a3df4234680ad0dbd1c0b0607/kivy_garden.collider-0.1.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c9fceaa81863c8d0b875a6ff07ead87de57a92fd3b144bf2bb17c804cb2c249",
                "md5": "fe8555ff5fa79299667f546d40d3bd6b",
                "sha256": "2078eec094339c2f9aebdaeb927f23cd7414588700cc5023f315d521eb0aa544"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fe8555ff5fa79299667f546d40d3bd6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 321069,
            "upload_time": "2024-03-15T04:42:23",
            "upload_time_iso_8601": "2024-03-15T04:42:23.363462Z",
            "url": "https://files.pythonhosted.org/packages/8c/9f/ceaa81863c8d0b875a6ff07ead87de57a92fd3b144bf2bb17c804cb2c249/kivy_garden.collider-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4b11c62aab97c5f0b90a9deda714ebd6ab8db9f200b1ef6a592cd21d121ce8d",
                "md5": "4035aba923663bc8f359d5f75c73dd06",
                "sha256": "11aa6c5c11a54332480d82867bdb8b81b9abd357b9608595c37b02a6a6324319"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4035aba923663bc8f359d5f75c73dd06",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 325750,
            "upload_time": "2024-03-15T04:42:25",
            "upload_time_iso_8601": "2024-03-15T04:42:25.136670Z",
            "url": "https://files.pythonhosted.org/packages/e4/b1/1c62aab97c5f0b90a9deda714ebd6ab8db9f200b1ef6a592cd21d121ce8d/kivy_garden.collider-0.1.3-cp312-cp312-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": "322c236d7fc16515033eb1944c2a2b0bcc3324d2bb04de4190b2d9dda70f8d66",
                "md5": "bed6885ce7e27e6c041af9dd21c7e77f",
                "sha256": "02514beb23cc35189b97b5c5132e9ade8476398e42c43e12d1dd9ea31f35180a"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "bed6885ce7e27e6c041af9dd21c7e77f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 49778,
            "upload_time": "2024-03-15T04:42:27",
            "upload_time_iso_8601": "2024-03-15T04:42:27.989177Z",
            "url": "https://files.pythonhosted.org/packages/32/2c/236d7fc16515033eb1944c2a2b0bcc3324d2bb04de4190b2d9dda70f8d66/kivy_garden.collider-0.1.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef32548a7bddef1a968c46bf9dcff2973d54ecdac4d02ceb33c633d5492e556d",
                "md5": "98ec7b0567e6418a5177b5bbc08fa515",
                "sha256": "f8a6a904f73bd9993bbe0669d57fc2d8b4b752d6eccf4d3268926dc8ab6b4e56"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "98ec7b0567e6418a5177b5bbc08fa515",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 56527,
            "upload_time": "2024-03-15T04:42:26",
            "upload_time_iso_8601": "2024-03-15T04:42:26.913643Z",
            "url": "https://files.pythonhosted.org/packages/ef/32/548a7bddef1a968c46bf9dcff2973d54ecdac4d02ceb33c633d5492e556d/kivy_garden.collider-0.1.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f645e69f42ea2a55195d3eee699a30abe914452bb2a7cfb2fa303679f779260",
                "md5": "f3127207f1c81ec43561ae09e469dfbf",
                "sha256": "c5ff557befbf1b2d9c8169b31d14de86cca0cf325c3e77dc6fda830817578792"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "f3127207f1c81ec43561ae09e469dfbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 116124,
            "upload_time": "2024-03-15T04:42:29",
            "upload_time_iso_8601": "2024-03-15T04:42:29.356936Z",
            "url": "https://files.pythonhosted.org/packages/8f/64/5e69f42ea2a55195d3eee699a30abe914452bb2a7cfb2fa303679f779260/kivy_garden.collider-0.1.3-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c749c4b926a44f9b1eed438ee90aebf0034faf7ebb987f5d33cc5440c613a26",
                "md5": "ef3c82c98a7dbee1befdc7efd28ba2c0",
                "sha256": "7c762e02ec0d378112b58d610be0c7e1be407f4114f90a2053cd21c48f32d89a"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef3c82c98a7dbee1befdc7efd28ba2c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 62705,
            "upload_time": "2024-03-15T04:42:30",
            "upload_time_iso_8601": "2024-03-15T04:42:30.337665Z",
            "url": "https://files.pythonhosted.org/packages/6c/74/9c4b926a44f9b1eed438ee90aebf0034faf7ebb987f5d33cc5440c613a26/kivy_garden.collider-0.1.3-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c35eb81ba125ddfc2d88ebd80cf759854f45c9045baf37727ece00c8cde575e",
                "md5": "6fb8a698b0f34244b44aaf439000767f",
                "sha256": "d103ace1dfff235e1bab4fdc9afe457e997d886fbaedee9608ca6af4e0c1145f"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6fb8a698b0f34244b44aaf439000767f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 59389,
            "upload_time": "2024-03-15T04:42:32",
            "upload_time_iso_8601": "2024-03-15T04:42:32.253885Z",
            "url": "https://files.pythonhosted.org/packages/6c/35/eb81ba125ddfc2d88ebd80cf759854f45c9045baf37727ece00c8cde575e/kivy_garden.collider-0.1.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cec52bbc8ee44ece895b57163cf98b36704f8acf703ed4eec8cc9067b86ecf27",
                "md5": "e3db81609f8567b94c42caa96f980dc8",
                "sha256": "fa6a1b0cf56d92f58a813c99f262f833c226d53a5810a40f5ed5d454c5223d17"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e3db81609f8567b94c42caa96f980dc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 305713,
            "upload_time": "2024-03-15T04:42:33",
            "upload_time_iso_8601": "2024-03-15T04:42:33.275078Z",
            "url": "https://files.pythonhosted.org/packages/ce/c5/2bbc8ee44ece895b57163cf98b36704f8acf703ed4eec8cc9067b86ecf27/kivy_garden.collider-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ecde5866da7bfae8ed8cb94e3dc3726a62d4be331bd3d869ab98fa308ebf280",
                "md5": "ac8413d8e7d573a5aa7f68b7f9507194",
                "sha256": "c1dd10cb2336f42eec449e65d048015b50e07193ebcb857a3a6a9fc4ad976844"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac8413d8e7d573a5aa7f68b7f9507194",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 311962,
            "upload_time": "2024-03-15T04:42:34",
            "upload_time_iso_8601": "2024-03-15T04:42:34.470089Z",
            "url": "https://files.pythonhosted.org/packages/4e/cd/e5866da7bfae8ed8cb94e3dc3726a62d4be331bd3d869ab98fa308ebf280/kivy_garden.collider-0.1.3-cp38-cp38-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": "d4c6e051c6dc743d45ec7b0d5618e66f33a8abe1991a91a6b15f05085abdfa48",
                "md5": "ac61b07379f57eeed46ffbd6731d17b4",
                "sha256": "12f17450e97f181890e564883a3517dd6a72f6d4d8a8aafe3d6d7601d340a3fd"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "ac61b07379f57eeed46ffbd6731d17b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 51038,
            "upload_time": "2024-03-15T04:42:37",
            "upload_time_iso_8601": "2024-03-15T04:42:37.373871Z",
            "url": "https://files.pythonhosted.org/packages/d4/c6/e051c6dc743d45ec7b0d5618e66f33a8abe1991a91a6b15f05085abdfa48/kivy_garden.collider-0.1.3-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff7688a0b417f65d2bf616b6faac8f40faee49f525b7fa4b22dc1ed2bf0c87c1",
                "md5": "14d6f5291db11559a3f036a3a6934fbc",
                "sha256": "d59b7f87ff058487c3afc17274fe2577c3d0ade86b5eefb3d3c98601d602c040"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "14d6f5291db11559a3f036a3a6934fbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 56888,
            "upload_time": "2024-03-15T04:42:36",
            "upload_time_iso_8601": "2024-03-15T04:42:36.176678Z",
            "url": "https://files.pythonhosted.org/packages/ff/76/88a0b417f65d2bf616b6faac8f40faee49f525b7fa4b22dc1ed2bf0c87c1/kivy_garden.collider-0.1.3-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7665e34db1874f5cb5c66cdaa2c606a52f9e1fa482aa99a3594adf45e1b502fd",
                "md5": "36182addcc2d15cc0a35528374cd1ddc",
                "sha256": "b5378184051e2456ff8af67b8e0b757cc9d3f182308280687799f352b7faddf8"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "36182addcc2d15cc0a35528374cd1ddc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 116906,
            "upload_time": "2024-03-15T04:42:38",
            "upload_time_iso_8601": "2024-03-15T04:42:38.378023Z",
            "url": "https://files.pythonhosted.org/packages/76/65/e34db1874f5cb5c66cdaa2c606a52f9e1fa482aa99a3594adf45e1b502fd/kivy_garden.collider-0.1.3-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e11ef8db801ad048000f2c07f740f4de375cd6927dd80183d93d72f436db8ac",
                "md5": "6fa358e4eb85f3a0c9f27e1827f47014",
                "sha256": "2e0fd97da539c0b4b92d45e5df70b2851711861bb246cb806b6531e4ce2413c8"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6fa358e4eb85f3a0c9f27e1827f47014",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 63089,
            "upload_time": "2024-03-15T04:42:39",
            "upload_time_iso_8601": "2024-03-15T04:42:39.358009Z",
            "url": "https://files.pythonhosted.org/packages/4e/11/ef8db801ad048000f2c07f740f4de375cd6927dd80183d93d72f436db8ac/kivy_garden.collider-0.1.3-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0f40a2b75fb9202b3c256b171fb1baf689fe567b48cf9ece40975096963c222",
                "md5": "601cd77c561d82ce4668fde18a468b4b",
                "sha256": "cfa56512fee6dde064b18644f4ffb9d068ff5134da5e96c9d1953f48528c79a2"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "601cd77c561d82ce4668fde18a468b4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 59732,
            "upload_time": "2024-03-15T04:42:40",
            "upload_time_iso_8601": "2024-03-15T04:42:40.573457Z",
            "url": "https://files.pythonhosted.org/packages/c0/f4/0a2b75fb9202b3c256b171fb1baf689fe567b48cf9ece40975096963c222/kivy_garden.collider-0.1.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42f5bdd1b74b07e901b74bc1213cf06a12bc0c303010c81e5d42bf4163509f40",
                "md5": "cd1c31d27ae01dbb9c8dfb8101266f9a",
                "sha256": "5f423ced63d03a0472e28b286b926e9b207fcad3bf52746abeee9766696ea67c"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd1c31d27ae01dbb9c8dfb8101266f9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 300761,
            "upload_time": "2024-03-15T04:42:42",
            "upload_time_iso_8601": "2024-03-15T04:42:42.486374Z",
            "url": "https://files.pythonhosted.org/packages/42/f5/bdd1b74b07e901b74bc1213cf06a12bc0c303010c81e5d42bf4163509f40/kivy_garden.collider-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50d4344fc59ed33501826b7ab666e7e35ed4e5024e65e0aeb045dc47bf489a2a",
                "md5": "f06a58aacfd4840e6ab2e32aee381552",
                "sha256": "1b3408a9c3722bee423aaeefced30c77ab90a40c822aac582bd7a89f42a01e06"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f06a58aacfd4840e6ab2e32aee381552",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 305758,
            "upload_time": "2024-03-15T04:42:43",
            "upload_time_iso_8601": "2024-03-15T04:42:43.774723Z",
            "url": "https://files.pythonhosted.org/packages/50/d4/344fc59ed33501826b7ab666e7e35ed4e5024e65e0aeb045dc47bf489a2a/kivy_garden.collider-0.1.3-cp39-cp39-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": "f081c529fb24bfdd4d46048b90976c19737aa9e564137287dad4895dd7982147",
                "md5": "b69e7f0ea8396d6858b97160e62af4bd",
                "sha256": "930c444e17d65cd9fdf572de812b9adf7a9e5efc50d2014a9da4520bcc6bf2d5"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "b69e7f0ea8396d6858b97160e62af4bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 51085,
            "upload_time": "2024-03-15T04:42:45",
            "upload_time_iso_8601": "2024-03-15T04:42:45.914995Z",
            "url": "https://files.pythonhosted.org/packages/f0/81/c529fb24bfdd4d46048b90976c19737aa9e564137287dad4895dd7982147/kivy_garden.collider-0.1.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd73f87d835fe3ebf976b90a802480bf1bbb6d5116932e9e9174ab54031352b5",
                "md5": "b4dd66922a76ac6fd1053d0544622b8a",
                "sha256": "548aae264eb57e1bbdadec0f145c3e351f0d5a7a3dd42c95c4a08c8927c66867"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b4dd66922a76ac6fd1053d0544622b8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 56756,
            "upload_time": "2024-03-15T04:42:44",
            "upload_time_iso_8601": "2024-03-15T04:42:44.909780Z",
            "url": "https://files.pythonhosted.org/packages/cd/73/f87d835fe3ebf976b90a802480bf1bbb6d5116932e9e9174ab54031352b5/kivy_garden.collider-0.1.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "714cc190a29571071d6cb5871342a55261a2e6907e7c804d2b1a8680cabe1291",
                "md5": "7ab5d5bf639085c4c5474f0c9a9700e5",
                "sha256": "3a22f5c0d16562e3485b2ee5315ae0d1cac85edbcda08e761b0296434a3b7b75"
            },
            "downloads": -1,
            "filename": "kivy_garden.collider-0.1.3.tar.gz",
            "has_sig": false,
            "md5_digest": "7ab5d5bf639085c4c5474f0c9a9700e5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6689,
            "upload_time": "2024-03-15T04:42:46",
            "upload_time_iso_8601": "2024-03-15T04:42:46.904299Z",
            "url": "https://files.pythonhosted.org/packages/71/4c/c190a29571071d6cb5871342a55261a2e6907e7c804d2b1a8680cabe1291/kivy_garden.collider-0.1.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-15 04:42:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kivy-garden",
    "github_project": "collider",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "kivy-garden.collider"
}
        
Elapsed time: 0.24940s