y-py-dart


Namey-py-dart JSON
Version 0.6.3a12 PyPI version JSON
download
home_pageNone
SummaryPython bindings for the Y-CRDT built from yrs (Rust)
upload_time2024-07-31 02:34:06
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseNone
keywords crdt
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI version](https://badge.fury.io/py/y-py.svg)](https://badge.fury.io/py/y-py)

# Ypy

Ypy is a Python binding for Y-CRDT. It provides distributed data types that enable real-time collaboration between devices. Ypy can sync data with any other platform that has a Y-CRDT binding, allowing for seamless cross-domain communication. The library is a thin wrapper around Yrs, taking advantage of the safety and performance of Rust.

> [We are looking for a maintainer 👀](https://github.com/y-crdt/ypy/issues/148)

## Installation

```
pip install y-py
```

## Getting Started

Ypy provides many of the same shared data types as [Yjs](https://docs.yjs.dev/). All objects are shared within a `YDoc` and get modified within a transaction block.

```python
import y_py as Y

d1 = Y.YDoc()
# Create a new YText object in the YDoc
text = d1.get_text('test')
# Start a transaction in order to update the text
with d1.begin_transaction() as txn:
    # Add text contents
    text.extend(txn, "hello world!")

# Create another document
d2 = Y.YDoc()
# Share state with the original document
state_vector = Y.encode_state_vector(d2)
diff = Y.encode_state_as_update(d1, state_vector)
Y.apply_update(d2, diff)

value = str(d2.get_text('test'))

assert value == "hello world!"
```

## Development Setup

0. Install [Rust](https://www.rust-lang.org/tools/install) and [Python](https://www.python.org/downloads/)
1. Install `maturin` in order to build Ypy: `pip install maturin`
2. Create a development build of the library: `maturin develop`

## Tests

All tests are located in `/tests`. To run the tests, install `pytest` and run the command line tool from the project root:

```
pip install pytest
pytest
```

## Using Hatch

If you are using `hatch`, there is a `test` environment matrix defined in `pyproject.toml` that will run commands in virtual environments for `py37` through `py312`.

```
hatch run test:maturin develop
hatch run test:pytest
```

## Build Ypy 

Build the library as a wheel and store them in `target/wheels`:

```
maturin build
```

## Ypy in WASM (Pyodide)

As a Rust-based library, Ypy cannot build "pure Python" wheels. CI processes build and upload a number of wheels to PyPI, but PyPI does not support hosting `emscripten` / `wasm32` wheels necessary to import in Pyodide (see https://github.com/pypi/warehouse/issues/10416 for more info and updates). For now, Ypy will build `emscripten` wheels and attach the binaries as assets in the appropriate [Releases](https://github.com/y-crdt/ypy/releases) entry. Unfortunately, trying to install directly from the Github download link will result in a CORS error, so you'll need to use a proxy to pull in the binary and write / install from emscripten file system or host the binary somewhere that is CORS accessible for your application.

You can try out Ypy in Pyodide using the [terminal emulator at pyodide.org](https://pyodide.org/en/stable/console.html):

```
Welcome to the Pyodide terminal emulator 🐍
Python 3.10.2 (main, Sep 15 2022 23:28:12) on WebAssembly/Emscripten
Type "help", "copyright", "credits" or "license" for more information.
>>> wheel_url = 'https://github.com/y-crdt/ypy/releases/download/v0.5.5/y_py-0.5.5-cp310-cp310-emscripten_3_1_14_wasm32.whl'
>>> wheel_name = wheel_url.split('/')[-1]
>>> wheel_name
'y_py-0.5.5-cp310-cp310-emscripten_3_1_14_wasm32.whl'
>>> 
>>> proxy_url = f'https://api.allorigins.win/raw?url={wheel_url}'
>>> proxy_url
'https://api.allorigins.win/raw?url=https://github.com/y-crdt/ypy/releases/download/v0.5.5/y_py-0.5.5-cp310-cp310-emscripten_3_1_14_wasm32.whl'
>>> 
>>> import pyodide
>>> resp = await pyodide.http.pyfetch(proxy_url)
>>> resp.status
200
>>> 
>>> content = await resp.bytes()
>>> len(content)
360133
>>> content[:50]
b'PK\x03\x04\x14\x00\x00\x00\x08\x00\xae\xb2}U\x92l\xa7E\xe6\x04\x00\x00u\t\x00\x00\x1d\x00\x00\x00y_py-0.5.5.dist-info'
>>>
>>> with open(wheel_name, 'wb') as f:
...   f.write(content)
... 
360133
>>> 
>>> import micropip
>>> await micropip.install(f'emfs:./{wheel_name}')
>>> 
>>> import y_py as Y
>>> Y
<module 'y_py' from '/lib/python3.10/site-packages/y_py/__init__.py'>
>>> 
>>> d1 = Y.YDoc()
>>> text = d1.get_text('test')
>>> with d1.begin_transaction() as txn:
    text.extend(txn, "hello world!")
... 
>>> d2 = Y.YDoc()
>>> state_vector = Y.encode_state_vector(d2)
>>> diff = Y.encode_state_as_update(d1, state_vector)
>>> Y.apply_update(d2, diff)
>>> d2.get_text('test')
YText(hello world!)
```


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "y-py-dart",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "crdt",
    "author": null,
    "author_email": "John Waidhofer <waidhoferj@gmail.com>, Kevin Jahns <kevin.jahns@protonmail.com>, Pierre-Olivier Simonard <pierre.olivier.simonard@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/68/3b/60fb5ad490c48b177d1bb7e9620e3c6f2a5ece7b8bd8da3b7476f65705a1/y_py_dart-0.6.3a12.tar.gz",
    "platform": null,
    "description": "[![PyPI version](https://badge.fury.io/py/y-py.svg)](https://badge.fury.io/py/y-py)\n\n# Ypy\n\nYpy is a Python binding for Y-CRDT. It provides distributed data types that enable real-time collaboration between devices. Ypy can sync data with any other platform that has a Y-CRDT binding, allowing for seamless cross-domain communication. The library is a thin wrapper around Yrs, taking advantage of the safety and performance of Rust.\n\n> [We are looking for a maintainer \ud83d\udc40](https://github.com/y-crdt/ypy/issues/148)\n\n## Installation\n\n```\npip install y-py\n```\n\n## Getting Started\n\nYpy provides many of the same shared data types as [Yjs](https://docs.yjs.dev/). All objects are shared within a `YDoc` and get modified within a transaction block.\n\n```python\nimport y_py as Y\n\nd1 = Y.YDoc()\n# Create a new YText object in the YDoc\ntext = d1.get_text('test')\n# Start a transaction in order to update the text\nwith d1.begin_transaction() as txn:\n    # Add text contents\n    text.extend(txn, \"hello world!\")\n\n# Create another document\nd2 = Y.YDoc()\n# Share state with the original document\nstate_vector = Y.encode_state_vector(d2)\ndiff = Y.encode_state_as_update(d1, state_vector)\nY.apply_update(d2, diff)\n\nvalue = str(d2.get_text('test'))\n\nassert value == \"hello world!\"\n```\n\n## Development Setup\n\n0. Install [Rust](https://www.rust-lang.org/tools/install) and [Python](https://www.python.org/downloads/)\n1. Install `maturin` in order to build Ypy: `pip install maturin`\n2. Create a development build of the library: `maturin develop`\n\n## Tests\n\nAll tests are located in `/tests`. To run the tests, install `pytest` and run the command line tool from the project root:\n\n```\npip install pytest\npytest\n```\n\n## Using Hatch\n\nIf you are using `hatch`, there is a `test` environment matrix defined in `pyproject.toml` that will run commands in virtual environments for `py37` through `py312`.\n\n```\nhatch run test:maturin develop\nhatch run test:pytest\n```\n\n## Build Ypy \n\nBuild the library as a wheel and store them in `target/wheels`:\n\n```\nmaturin build\n```\n\n## Ypy in WASM (Pyodide)\n\nAs a Rust-based library, Ypy cannot build \"pure Python\" wheels. CI processes build and upload a number of wheels to PyPI, but PyPI does not support hosting `emscripten` / `wasm32` wheels necessary to import in Pyodide (see https://github.com/pypi/warehouse/issues/10416 for more info and updates). For now, Ypy will build `emscripten` wheels and attach the binaries as assets in the appropriate [Releases](https://github.com/y-crdt/ypy/releases) entry. Unfortunately, trying to install directly from the Github download link will result in a CORS error, so you'll need to use a proxy to pull in the binary and write / install from emscripten file system or host the binary somewhere that is CORS accessible for your application.\n\nYou can try out Ypy in Pyodide using the [terminal emulator at pyodide.org](https://pyodide.org/en/stable/console.html):\n\n```\nWelcome to the Pyodide terminal emulator \ud83d\udc0d\nPython 3.10.2 (main, Sep 15 2022 23:28:12) on WebAssembly/Emscripten\nType \"help\", \"copyright\", \"credits\" or \"license\" for more information.\n>>> wheel_url = 'https://github.com/y-crdt/ypy/releases/download/v0.5.5/y_py-0.5.5-cp310-cp310-emscripten_3_1_14_wasm32.whl'\n>>> wheel_name = wheel_url.split('/')[-1]\n>>> wheel_name\n'y_py-0.5.5-cp310-cp310-emscripten_3_1_14_wasm32.whl'\n>>> \n>>> proxy_url = f'https://api.allorigins.win/raw?url={wheel_url}'\n>>> proxy_url\n'https://api.allorigins.win/raw?url=https://github.com/y-crdt/ypy/releases/download/v0.5.5/y_py-0.5.5-cp310-cp310-emscripten_3_1_14_wasm32.whl'\n>>> \n>>> import pyodide\n>>> resp = await pyodide.http.pyfetch(proxy_url)\n>>> resp.status\n200\n>>> \n>>> content = await resp.bytes()\n>>> len(content)\n360133\n>>> content[:50]\nb'PK\\x03\\x04\\x14\\x00\\x00\\x00\\x08\\x00\\xae\\xb2}U\\x92l\\xa7E\\xe6\\x04\\x00\\x00u\\t\\x00\\x00\\x1d\\x00\\x00\\x00y_py-0.5.5.dist-info'\n>>>\n>>> with open(wheel_name, 'wb') as f:\n...   f.write(content)\n... \n360133\n>>> \n>>> import micropip\n>>> await micropip.install(f'emfs:./{wheel_name}')\n>>> \n>>> import y_py as Y\n>>> Y\n<module 'y_py' from '/lib/python3.10/site-packages/y_py/__init__.py'>\n>>> \n>>> d1 = Y.YDoc()\n>>> text = d1.get_text('test')\n>>> with d1.begin_transaction() as txn:\n    text.extend(txn, \"hello world!\")\n... \n>>> d2 = Y.YDoc()\n>>> state_vector = Y.encode_state_vector(d2)\n>>> diff = Y.encode_state_as_update(d1, state_vector)\n>>> Y.apply_update(d2, diff)\n>>> d2.get_text('test')\nYText(hello world!)\n```\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python bindings for the Y-CRDT built from yrs (Rust)",
    "version": "0.6.3a12",
    "project_urls": {
        "Homepage": "https://github.com/its-dart/ypy",
        "Issues": "https://github.com/its-dart/ypy/issues",
        "Pypi": "https://pypi.org/project/y-py-dart",
        "Source": "https://github.com/its-dart/ypy"
    },
    "split_keywords": [
        "crdt"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f19409ba2732580ffcc1637300d6eed47876d114cd48c51f2d22559139ff1eb5",
                "md5": "22748b6ed09de909ca5bf2a369f7dbbb",
                "sha256": "f1b583d0d1d33102ce8783c9bee45282db3135e3ebee26b392d9bd385b612f9a"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "22748b6ed09de909ca5bf2a369f7dbbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1511122,
            "upload_time": "2024-07-31T02:32:16",
            "upload_time_iso_8601": "2024-07-31T02:32:16.126781Z",
            "url": "https://files.pythonhosted.org/packages/f1/94/09ba2732580ffcc1637300d6eed47876d114cd48c51f2d22559139ff1eb5/y_py_dart-0.6.3a12-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bf5942747e75b0e92d82dd7f7bb6d17e6d73446a7166c9f5c475c8566985033",
                "md5": "a5d10bff055cbf02f5e5c3b8c53966e4",
                "sha256": "b7e8bf296839f6dbe26ec15b60541e9a52f7b35671a4a377f2e57890b9600048"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5d10bff055cbf02f5e5c3b8c53966e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 776711,
            "upload_time": "2024-07-31T02:32:17",
            "upload_time_iso_8601": "2024-07-31T02:32:17.469427Z",
            "url": "https://files.pythonhosted.org/packages/6b/f5/942747e75b0e92d82dd7f7bb6d17e6d73446a7166c9f5c475c8566985033/y_py_dart-0.6.3a12-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7503172b1338b35954cbf373e792054ad6e6240464de9fe8d674f0c7cd062b2",
                "md5": "32b64039306757df4b5e670f484ee4fd",
                "sha256": "098272c6889f34a71741f0be09db36c0736ad6498b3aae1837eb2cf1baa8b9b1"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "32b64039306757df4b5e670f484ee4fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 855353,
            "upload_time": "2024-07-31T02:32:18",
            "upload_time_iso_8601": "2024-07-31T02:32:18.710023Z",
            "url": "https://files.pythonhosted.org/packages/d7/50/3172b1338b35954cbf373e792054ad6e6240464de9fe8d674f0c7cd062b2/y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e22a6392e66503203a9199440d4587a32210f42790bd2c63025dcc35c555de2c",
                "md5": "c7801eed8f59441d223b0c6fd6ee2b38",
                "sha256": "45c46280a1d80a53261d1de299bfaa231b3eacb58cc978deaa2a4a145689ad5b"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c7801eed8f59441d223b0c6fd6ee2b38",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 858097,
            "upload_time": "2024-07-31T02:32:20",
            "upload_time_iso_8601": "2024-07-31T02:32:20.189912Z",
            "url": "https://files.pythonhosted.org/packages/e2/2a/6392e66503203a9199440d4587a32210f42790bd2c63025dcc35c555de2c/y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50a72e6271a458f0f68b1b73b41ac18580dcf2c730c70f0acfee4d0bcf38ed44",
                "md5": "2c2899d26c3cf05fabc36770866716bd",
                "sha256": "6cf7442d3049fc6057047e230730e0afb37852fe6290fc7e929959b62c86dc5a"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2c2899d26c3cf05fabc36770866716bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 924363,
            "upload_time": "2024-07-31T02:32:22",
            "upload_time_iso_8601": "2024-07-31T02:32:22.197121Z",
            "url": "https://files.pythonhosted.org/packages/50/a7/2e6271a458f0f68b1b73b41ac18580dcf2c730c70f0acfee4d0bcf38ed44/y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1cdb8aca6d5895fe69287b8eba1f579159e8b392706302144ea6097b36e65321",
                "md5": "65d5ac1ce8ada9100c2d9a27c2ab4205",
                "sha256": "a63380ee2053605722b49cfcdbe4cfb73bb474e94c384fc6621844abf6a1646c"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "65d5ac1ce8ada9100c2d9a27c2ab4205",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1076566,
            "upload_time": "2024-07-31T02:32:23",
            "upload_time_iso_8601": "2024-07-31T02:32:23.923559Z",
            "url": "https://files.pythonhosted.org/packages/1c/db/8aca6d5895fe69287b8eba1f579159e8b392706302144ea6097b36e65321/y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5179f2b8f4e19b361aa856fb331b6f24fe0dfef51143566f85e9d7f9b49ed353",
                "md5": "7d870cd87756128a2b883eeaaab99037",
                "sha256": "1bcd859394b35608814c3c25db0b526105a77e8789f3ff048518d90ebae57853"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d870cd87756128a2b883eeaaab99037",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 853108,
            "upload_time": "2024-07-31T02:32:25",
            "upload_time_iso_8601": "2024-07-31T02:32:25.596136Z",
            "url": "https://files.pythonhosted.org/packages/51/79/f2b8f4e19b361aa856fb331b6f24fe0dfef51143566f85e9d7f9b49ed353/y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3229f263f5bde4531389d1a634c5de697d08c576ef03d29db76fd4c808e9caa3",
                "md5": "778c21bc9b207791fe63a766fb373075",
                "sha256": "b1586fdeed6ac2df466cbaf0aa54de492b1f7870549fea464b9efbde6cd64c73"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "778c21bc9b207791fe63a766fb373075",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 913870,
            "upload_time": "2024-07-31T02:32:26",
            "upload_time_iso_8601": "2024-07-31T02:32:26.954473Z",
            "url": "https://files.pythonhosted.org/packages/32/29/f263f5bde4531389d1a634c5de697d08c576ef03d29db76fd4c808e9caa3/y_py_dart-0.6.3a12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c67a7ad274cf0cca718e524afec9dd98bd4c4904586d2fae729f9aa8a5eb8141",
                "md5": "243e4ac591a8cf06126f204386f20d9c",
                "sha256": "1125bacdbcd006577f5f0e9a21c09776a3152240b1f8069d8e7e513b90e7729d"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "243e4ac591a8cf06126f204386f20d9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 594163,
            "upload_time": "2024-07-31T02:32:28",
            "upload_time_iso_8601": "2024-07-31T02:32:28.557825Z",
            "url": "https://files.pythonhosted.org/packages/c6/7a/7ad274cf0cca718e524afec9dd98bd4c4904586d2fae729f9aa8a5eb8141/y_py_dart-0.6.3a12-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa7348839504385cfa6b9fa0b58fff19ad038aa0a3bf015eb2e2af4f503aa666",
                "md5": "6a55d4f180e3bde2b1799ed1591017af",
                "sha256": "4ae0a3bb26c4618a10742b9caf12ba423b5059dde74614fcbf5fc8ba7ad95390"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6a55d4f180e3bde2b1799ed1591017af",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 645132,
            "upload_time": "2024-07-31T02:32:30",
            "upload_time_iso_8601": "2024-07-31T02:32:30.407371Z",
            "url": "https://files.pythonhosted.org/packages/aa/73/48839504385cfa6b9fa0b58fff19ad038aa0a3bf015eb2e2af4f503aa666/y_py_dart-0.6.3a12-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "547089fd5e44dfb5d2853eed3a8f3f2cbfab7385736135f05860d80ca24a4949",
                "md5": "1c451ee12cd8189febc07d5adf92a6f1",
                "sha256": "9dca3ec82306bb3f789baf583de874d543fc52b7c56b86528438bd20dd9d0331"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "1c451ee12cd8189febc07d5adf92a6f1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1511151,
            "upload_time": "2024-07-31T02:32:32",
            "upload_time_iso_8601": "2024-07-31T02:32:32.357906Z",
            "url": "https://files.pythonhosted.org/packages/54/70/89fd5e44dfb5d2853eed3a8f3f2cbfab7385736135f05860d80ca24a4949/y_py_dart-0.6.3a12-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b5811367535c0b769da13ce6b11c1c3f35a0208f6205f1899fdb78087984349",
                "md5": "deafcd38766a3c3ca0f6d8ec998fcf40",
                "sha256": "60cede9dab5619f7fa9c9ca89b2bc3d0138df4db8c96412b91151a148b8b50c4"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "deafcd38766a3c3ca0f6d8ec998fcf40",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 776889,
            "upload_time": "2024-07-31T02:32:34",
            "upload_time_iso_8601": "2024-07-31T02:32:34.094300Z",
            "url": "https://files.pythonhosted.org/packages/0b/58/11367535c0b769da13ce6b11c1c3f35a0208f6205f1899fdb78087984349/y_py_dart-0.6.3a12-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef8a1c1415c8d059046e2a75c80e11ff1b109d8d087134254ae93dc3ee6bb654",
                "md5": "cd044e746cea8017dc0493f0cd1059f5",
                "sha256": "72db8fd7ba37c3f680fc1b209e06e83ecc5e324126304a41850e7b0783cb2bda"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cd044e746cea8017dc0493f0cd1059f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 855509,
            "upload_time": "2024-07-31T02:32:35",
            "upload_time_iso_8601": "2024-07-31T02:32:35.349618Z",
            "url": "https://files.pythonhosted.org/packages/ef/8a/1c1415c8d059046e2a75c80e11ff1b109d8d087134254ae93dc3ee6bb654/y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28d674908b571eb2526078f1fb6823a24b5fc7f0a003680469c6a133146f8c17",
                "md5": "cdfd8aa3d45a43b51c1f3ffd14050e42",
                "sha256": "c85d46a76383df53b818e51744cce358b10880254e3a1e00ad1105c41282830b"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "cdfd8aa3d45a43b51c1f3ffd14050e42",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 859080,
            "upload_time": "2024-07-31T02:32:36",
            "upload_time_iso_8601": "2024-07-31T02:32:36.825167Z",
            "url": "https://files.pythonhosted.org/packages/28/d6/74908b571eb2526078f1fb6823a24b5fc7f0a003680469c6a133146f8c17/y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc61f18fb9a47d2e2354f3e69e2b75432a59fcb0e5830264c840f47e3f3e494f",
                "md5": "4cb60ebb417cf376701385d88145c449",
                "sha256": "1585e5703ff03eb51f2b3697c79bb5b79be1ad15f3425f5434d8dd59b71088cf"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4cb60ebb417cf376701385d88145c449",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 923263,
            "upload_time": "2024-07-31T02:32:38",
            "upload_time_iso_8601": "2024-07-31T02:32:38.457245Z",
            "url": "https://files.pythonhosted.org/packages/bc/61/f18fb9a47d2e2354f3e69e2b75432a59fcb0e5830264c840f47e3f3e494f/y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6d93030c4b71e9a35909d7b8bd861eca38d2e5b8ab501c44f56aa959eb65e00",
                "md5": "f0fa7107e17a9d75df80a0b45ce4d0ae",
                "sha256": "0276c118705d5baa3000e66c14fe623df20dd9fafc0438d8bfe2ac19d22db2a7"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f0fa7107e17a9d75df80a0b45ce4d0ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1075381,
            "upload_time": "2024-07-31T02:32:40",
            "upload_time_iso_8601": "2024-07-31T02:32:40.299677Z",
            "url": "https://files.pythonhosted.org/packages/f6/d9/3030c4b71e9a35909d7b8bd861eca38d2e5b8ab501c44f56aa959eb65e00/y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77d77a7c35d7292a26260af84e5bb23278995223f7daed185b11366873f8340f",
                "md5": "5d6b9697153d6c18c26439c01b9e7303",
                "sha256": "c0767d2f2767cb6516a86e1c2af266c9686d4de7ac9b0c73ae6320e6ded0fe55"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d6b9697153d6c18c26439c01b9e7303",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 853824,
            "upload_time": "2024-07-31T02:32:41",
            "upload_time_iso_8601": "2024-07-31T02:32:41.599739Z",
            "url": "https://files.pythonhosted.org/packages/77/d7/7a7c35d7292a26260af84e5bb23278995223f7daed185b11366873f8340f/y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78e604bf28c535f653425d6003081894b333613e40fa2e0bf793ccc925eed130",
                "md5": "dd4e5010b4b867823b5c9e46e9de86a5",
                "sha256": "925827b9eda035a9f2b48d58200dcf0019cf8678ddb2b34a88b7cbf092403f00"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "dd4e5010b4b867823b5c9e46e9de86a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 915979,
            "upload_time": "2024-07-31T02:32:43",
            "upload_time_iso_8601": "2024-07-31T02:32:43.311635Z",
            "url": "https://files.pythonhosted.org/packages/78/e6/04bf28c535f653425d6003081894b333613e40fa2e0bf793ccc925eed130/y_py_dart-0.6.3a12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9735e7108410ed5875fc3296dccb22eafb8e340076136a07fbc0f3baa7e9aff1",
                "md5": "55b07250d66c6b87de7253d0775df29e",
                "sha256": "8ebdddf767fb81f7a8cc4f00a540ad382e9a89947d031caca8a6fa84da3142d5"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "55b07250d66c6b87de7253d0775df29e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 594300,
            "upload_time": "2024-07-31T02:32:45",
            "upload_time_iso_8601": "2024-07-31T02:32:45.281196Z",
            "url": "https://files.pythonhosted.org/packages/97/35/e7108410ed5875fc3296dccb22eafb8e340076136a07fbc0f3baa7e9aff1/y_py_dart-0.6.3a12-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2bd66abf84d3a0f41c3896e0ceda13d0ddf7a434efbc3fde20da018370107b6",
                "md5": "4c0638ea4b7234e62f0a99dc499bdcce",
                "sha256": "f830b197c755e3ff7cdf219d6e422df28f4048aaab11484c4eadd7709c395916"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4c0638ea4b7234e62f0a99dc499bdcce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 645359,
            "upload_time": "2024-07-31T02:32:46",
            "upload_time_iso_8601": "2024-07-31T02:32:46.816471Z",
            "url": "https://files.pythonhosted.org/packages/f2/bd/66abf84d3a0f41c3896e0ceda13d0ddf7a434efbc3fde20da018370107b6/y_py_dart-0.6.3a12-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bcfa88aae6aed61df4dfd66ab6ee25715f4c185927de6562ecbd9f4e74bdda7",
                "md5": "dfab455046695952897e30ede5acb08a",
                "sha256": "4a2097b6a11d5441373a9e7efe44adbcdf921de6af738c7741fa090f5043a8f4"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "dfab455046695952897e30ede5acb08a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1513801,
            "upload_time": "2024-07-31T02:32:48",
            "upload_time_iso_8601": "2024-07-31T02:32:48.112727Z",
            "url": "https://files.pythonhosted.org/packages/4b/cf/a88aae6aed61df4dfd66ab6ee25715f4c185927de6562ecbd9f4e74bdda7/y_py_dart-0.6.3a12-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "197759fac208eb923dff35bc41d0fb8eeb3643499b6c2db8d6a445e2b3dbfea0",
                "md5": "ff77afc2195fdc85e6511e9dcac81fb4",
                "sha256": "228c17b08e1a564d7b928e9d5ab05bd5e328b740b454fc60603def9ef9bf7ad4"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ff77afc2195fdc85e6511e9dcac81fb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 776517,
            "upload_time": "2024-07-31T02:32:49",
            "upload_time_iso_8601": "2024-07-31T02:32:49.322359Z",
            "url": "https://files.pythonhosted.org/packages/19/77/59fac208eb923dff35bc41d0fb8eeb3643499b6c2db8d6a445e2b3dbfea0/y_py_dart-0.6.3a12-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d409ddd567b4bbee28858924da8b564dfdfcda5632e87f1ea530049c5623005",
                "md5": "2d945c3fc96c62bd8c52a56b0f887149",
                "sha256": "0b961b35ad67118cdde7e8c17cf3481b9967453ef67d352d06e5384867f713b5"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2d945c3fc96c62bd8c52a56b0f887149",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 855197,
            "upload_time": "2024-07-31T02:32:50",
            "upload_time_iso_8601": "2024-07-31T02:32:50.564865Z",
            "url": "https://files.pythonhosted.org/packages/3d/40/9ddd567b4bbee28858924da8b564dfdfcda5632e87f1ea530049c5623005/y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a18c9c854bcafd5fa2dac3459ba774bd594ca2ed050ba8303a954c61e9003863",
                "md5": "88267bb18606e392314d5d90e0b85759",
                "sha256": "d644dc22450200a86413aed3387605541242b18d69f389b3024135d64b94c0c7"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "88267bb18606e392314d5d90e0b85759",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 859940,
            "upload_time": "2024-07-31T02:32:51",
            "upload_time_iso_8601": "2024-07-31T02:32:51.802170Z",
            "url": "https://files.pythonhosted.org/packages/a1/8c/9c854bcafd5fa2dac3459ba774bd594ca2ed050ba8303a954c61e9003863/y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3858c996090c850a3f43bd69e822b7982ada90cabf4821f088be46bd0d27e7e5",
                "md5": "f2b569b92fe28452b78a95a6ba2c96ec",
                "sha256": "d119c1f7e6893f790aeabbac311f10134254dacf70bcea2e77e476e982880635"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f2b569b92fe28452b78a95a6ba2c96ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 921796,
            "upload_time": "2024-07-31T02:32:53",
            "upload_time_iso_8601": "2024-07-31T02:32:53.450558Z",
            "url": "https://files.pythonhosted.org/packages/38/58/c996090c850a3f43bd69e822b7982ada90cabf4821f088be46bd0d27e7e5/y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9409235be51e289282434a21fb3e0d8c3c6af1d872ef521d5a984ddf411154dd",
                "md5": "8dd70ae638945edd78535044f99fc0ea",
                "sha256": "f29ae80e1c309777041804b9afc3883c85fbe3594ff920b67f9580a15f07cbf2"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "8dd70ae638945edd78535044f99fc0ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1063015,
            "upload_time": "2024-07-31T02:32:54",
            "upload_time_iso_8601": "2024-07-31T02:32:54.915643Z",
            "url": "https://files.pythonhosted.org/packages/94/09/235be51e289282434a21fb3e0d8c3c6af1d872ef521d5a984ddf411154dd/y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79140e1617ec6044254d6f402d1f7e236b4dab1af87a37e1ebf0e1a9207203b7",
                "md5": "748865aba29fa1729984ca2818ac484e",
                "sha256": "f88476b339e0b22bc1c488b462abcb05edfb1830360e4e579944582dadf1b503"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "748865aba29fa1729984ca2818ac484e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 853970,
            "upload_time": "2024-07-31T02:32:56",
            "upload_time_iso_8601": "2024-07-31T02:32:56.470663Z",
            "url": "https://files.pythonhosted.org/packages/79/14/0e1617ec6044254d6f402d1f7e236b4dab1af87a37e1ebf0e1a9207203b7/y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a7b711e1e9d9330e9c212d572cb5154fc83a182178de2641320ed5a83db1a09",
                "md5": "d742daf7f41a26b9475ffc66512a447b",
                "sha256": "1f929b55adff3c6f7bbb00ae9daaea58153bde20d14f91d5bd20932262cab1f5"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "d742daf7f41a26b9475ffc66512a447b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 916096,
            "upload_time": "2024-07-31T02:32:57",
            "upload_time_iso_8601": "2024-07-31T02:32:57.647913Z",
            "url": "https://files.pythonhosted.org/packages/7a/7b/711e1e9d9330e9c212d572cb5154fc83a182178de2641320ed5a83db1a09/y_py_dart-0.6.3a12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7e1e99b72b07e3f7cee690d07a4c5ae57fea079c85d3f6e2fe8adc143fbd4c4",
                "md5": "854d09eca68a8cbc53451c904e7f03ff",
                "sha256": "74d1c03ce550d2496b84103cc46ddf6bcbb4ba339e9c4f91bdd7c7cd29d11465"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp37-cp37m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "854d09eca68a8cbc53451c904e7f03ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 777536,
            "upload_time": "2024-07-31T02:32:58",
            "upload_time_iso_8601": "2024-07-31T02:32:58.946594Z",
            "url": "https://files.pythonhosted.org/packages/a7/e1/e99b72b07e3f7cee690d07a4c5ae57fea079c85d3f6e2fe8adc143fbd4c4/y_py_dart-0.6.3a12-cp37-cp37m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76de074e4ffd61caf47735597ce6c0a60c06f1f63e1cf3f062fe45400e3ca384",
                "md5": "4544e5a6aaa8b45ff733d38b64f7428b",
                "sha256": "b62dda58226f2d7d0565c160d992f250bb7efc5333ec2cbe3385a6608f9a6b93"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4544e5a6aaa8b45ff733d38b64f7428b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 857181,
            "upload_time": "2024-07-31T02:33:00",
            "upload_time_iso_8601": "2024-07-31T02:33:00.631714Z",
            "url": "https://files.pythonhosted.org/packages/76/de/074e4ffd61caf47735597ce6c0a60c06f1f63e1cf3f062fe45400e3ca384/y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de07279bc20120d87bbda23f3867ac20f805700c773299772d76da1e0f1d6398",
                "md5": "2236a90622714214e85f47f3c5a4debc",
                "sha256": "405ddd05555a7fc8f8779a45b5715b36f0d500be5c7dbbcde798cadc38611e4a"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2236a90622714214e85f47f3c5a4debc",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 859608,
            "upload_time": "2024-07-31T02:33:02",
            "upload_time_iso_8601": "2024-07-31T02:33:02.258447Z",
            "url": "https://files.pythonhosted.org/packages/de/07/279bc20120d87bbda23f3867ac20f805700c773299772d76da1e0f1d6398/y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c165b4f35c105fa600cbc5f5f2bb7f1184d36726bb43df0eb2f18bc88e9ae2c3",
                "md5": "12249a2bda3a30af4afcf329a17d908f",
                "sha256": "7f793f83ec2663d2b7f67c5099bc4dc047be005396655d42a20b832df345a18b"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "12249a2bda3a30af4afcf329a17d908f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 925651,
            "upload_time": "2024-07-31T02:33:03",
            "upload_time_iso_8601": "2024-07-31T02:33:03.500163Z",
            "url": "https://files.pythonhosted.org/packages/c1/65/b4f35c105fa600cbc5f5f2bb7f1184d36726bb43df0eb2f18bc88e9ae2c3/y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10a6843fbcfc0530a3bdbac25a6c91f01fb21febe9f5027eb6291bb5b541fa4f",
                "md5": "c3ce0595565f017a4987c223ed6ce9e1",
                "sha256": "a55910aae6fa002878e5d1784304fb55ee3de8a182027175aa9e42451624bfc7"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c3ce0595565f017a4987c223ed6ce9e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1081073,
            "upload_time": "2024-07-31T02:33:04",
            "upload_time_iso_8601": "2024-07-31T02:33:04.876778Z",
            "url": "https://files.pythonhosted.org/packages/10/a6/843fbcfc0530a3bdbac25a6c91f01fb21febe9f5027eb6291bb5b541fa4f/y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "615de1dd6d64d226365f0d74c6eedf6e006f62c22727bd7cfc999e60a48b6ac7",
                "md5": "2e524ccbd97cbb872c3c8ed79f333452",
                "sha256": "e00753500f96a3c930102b52adfacd17fb33f2f4090b0fbfd5db3165d7ec1596"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2e524ccbd97cbb872c3c8ed79f333452",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 853803,
            "upload_time": "2024-07-31T02:33:06",
            "upload_time_iso_8601": "2024-07-31T02:33:06.105042Z",
            "url": "https://files.pythonhosted.org/packages/61/5d/e1dd6d64d226365f0d74c6eedf6e006f62c22727bd7cfc999e60a48b6ac7/y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42700843d40b0ba2bf7485efc748feece5a4b185c2d7e4a107e988fdbb6917a8",
                "md5": "58d5031b260b1397ffc7dac5bec3e24e",
                "sha256": "899807e732064751cb215810002bd7762e032d0f31cd7327c54aa6dd4e275cda"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "58d5031b260b1397ffc7dac5bec3e24e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 917050,
            "upload_time": "2024-07-31T02:33:07",
            "upload_time_iso_8601": "2024-07-31T02:33:07.285619Z",
            "url": "https://files.pythonhosted.org/packages/42/70/0843d40b0ba2bf7485efc748feece5a4b185c2d7e4a107e988fdbb6917a8/y_py_dart-0.6.3a12-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e24b9cec91d21a886400035aee9bd46a5fcf0ead651076558811f1cfefc110c",
                "md5": "2861265f5de47f1e448c8efb3513d732",
                "sha256": "9c6bb693842606b02e95722d60f87dd8034d62cec9582070d2abfd96fc53edb1"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2861265f5de47f1e448c8efb3513d732",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 594934,
            "upload_time": "2024-07-31T02:33:09",
            "upload_time_iso_8601": "2024-07-31T02:33:09.120225Z",
            "url": "https://files.pythonhosted.org/packages/1e/24/b9cec91d21a886400035aee9bd46a5fcf0ead651076558811f1cfefc110c/y_py_dart-0.6.3a12-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2e8959aff63efd78f60c3ec0e21c28acd613bc83851c2cb8dde918f9caaebca",
                "md5": "eead72ada0cad74e5aa8d14d4140da54",
                "sha256": "c0bc49251b0c970df3f1a6bc9b7a2a9327426c3cadb6a8aefb8e517bdb28ce1d"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eead72ada0cad74e5aa8d14d4140da54",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 644566,
            "upload_time": "2024-07-31T02:33:11",
            "upload_time_iso_8601": "2024-07-31T02:33:11.065596Z",
            "url": "https://files.pythonhosted.org/packages/d2/e8/959aff63efd78f60c3ec0e21c28acd613bc83851c2cb8dde918f9caaebca/y_py_dart-0.6.3a12-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c1e5a163563fb71b37aed8183acb8ff860ce702a59189b4e190e0781b394e3d",
                "md5": "c1c5f067dea53a043505744160dc3df7",
                "sha256": "2edd1d9514f5782ed0b8209bb10f27339967779ef1ae4b47863a799b86aa8c5e"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "c1c5f067dea53a043505744160dc3df7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1513100,
            "upload_time": "2024-07-31T02:33:12",
            "upload_time_iso_8601": "2024-07-31T02:33:12.347882Z",
            "url": "https://files.pythonhosted.org/packages/7c/1e/5a163563fb71b37aed8183acb8ff860ce702a59189b4e190e0781b394e3d/y_py_dart-0.6.3a12-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73a2e3fe7d668ce8d64500219180a3156487b5ef014dc45f413a15a25ae435d3",
                "md5": "8017e026d57f10d5bc5e924ea1f68752",
                "sha256": "a8645389662757181994328c59bdeaccc172a991e544dfe7f0d41b27544866b7"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8017e026d57f10d5bc5e924ea1f68752",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 778268,
            "upload_time": "2024-07-31T02:33:13",
            "upload_time_iso_8601": "2024-07-31T02:33:13.534505Z",
            "url": "https://files.pythonhosted.org/packages/73/a2/e3fe7d668ce8d64500219180a3156487b5ef014dc45f413a15a25ae435d3/y_py_dart-0.6.3a12-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ea3b97af886585ca1b82b543e5564389c1e329ddabe28aed01ea7b1406d4bc9",
                "md5": "e267bf99e74217d594f31eee9714c4d6",
                "sha256": "64b171fc45dc9022563971fb26af3936be19dda04a4b8a87963be92f4bec151a"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e267bf99e74217d594f31eee9714c4d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 856489,
            "upload_time": "2024-07-31T02:33:15",
            "upload_time_iso_8601": "2024-07-31T02:33:15.210052Z",
            "url": "https://files.pythonhosted.org/packages/4e/a3/b97af886585ca1b82b543e5564389c1e329ddabe28aed01ea7b1406d4bc9/y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46de91332335d74d896a99ca0c39210699662e055048fed808ab312b714cb539",
                "md5": "862bdc5e94c189754111f8cffbc39782",
                "sha256": "74f3a299ea55d18030b9ba89935444b819f9151dcee46c03434858bde3ae17cb"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "862bdc5e94c189754111f8cffbc39782",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 857815,
            "upload_time": "2024-07-31T02:33:16",
            "upload_time_iso_8601": "2024-07-31T02:33:16.450636Z",
            "url": "https://files.pythonhosted.org/packages/46/de/91332335d74d896a99ca0c39210699662e055048fed808ab312b714cb539/y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6adfd411a88711c7612faf9f3238180c260b3817c712b5280294fab4f2a00833",
                "md5": "15a2c42fb451708ab3943e998b3029a6",
                "sha256": "d7ea6442e41c6b8f06f32b757766ff5f33117fc2bfb75f7553556c8e751722ae"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "15a2c42fb451708ab3943e998b3029a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 924806,
            "upload_time": "2024-07-31T02:33:17",
            "upload_time_iso_8601": "2024-07-31T02:33:17.731249Z",
            "url": "https://files.pythonhosted.org/packages/6a/df/d411a88711c7612faf9f3238180c260b3817c712b5280294fab4f2a00833/y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6c1f7c9d4ccc260829a48d14cbee52217c0fda87d145f2ef15d1d4d65605eb0",
                "md5": "9d78cdd45e0f2f805338eae7cfa5fbb2",
                "sha256": "b37f2ed9ec0a670e9a2928128afde2ad12c3319ff212e571870ba9718e9f75f3"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9d78cdd45e0f2f805338eae7cfa5fbb2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1079027,
            "upload_time": "2024-07-31T02:33:19",
            "upload_time_iso_8601": "2024-07-31T02:33:19.044700Z",
            "url": "https://files.pythonhosted.org/packages/f6/c1/f7c9d4ccc260829a48d14cbee52217c0fda87d145f2ef15d1d4d65605eb0/y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1b629b7f0b16aebf076659b7fa76c3137153fe599583e40bd20bb30dc4977dc",
                "md5": "572d9730ea0c104c607145a42152238a",
                "sha256": "3d45708e8b95906829e501fcee430db46eb3ae024570b725963194b0f9fb1394"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "572d9730ea0c104c607145a42152238a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 853433,
            "upload_time": "2024-07-31T02:33:20",
            "upload_time_iso_8601": "2024-07-31T02:33:20.273326Z",
            "url": "https://files.pythonhosted.org/packages/d1/b6/29b7f0b16aebf076659b7fa76c3137153fe599583e40bd20bb30dc4977dc/y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36b4d7b2d460a20de558dcc423a2d8172b5b1180733f1d3067d081dffd5e49cb",
                "md5": "39dcc1fc8c5578b4e1bf45a2dd7da006",
                "sha256": "1d7db99de5e1cdac6afb27d5b756aac07349ac85633d6bd733f9836d4dd2b7b6"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "39dcc1fc8c5578b4e1bf45a2dd7da006",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 915275,
            "upload_time": "2024-07-31T02:33:22",
            "upload_time_iso_8601": "2024-07-31T02:33:22.077486Z",
            "url": "https://files.pythonhosted.org/packages/36/b4/d7b2d460a20de558dcc423a2d8172b5b1180733f1d3067d081dffd5e49cb/y_py_dart-0.6.3a12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1320621cfbdc18c6097ce4299581b56e2c204e01a36e353ba6bfcd17125247e",
                "md5": "00f9f61d0d268442460783c03f1511c7",
                "sha256": "8378dc12ff30480db405a7d92bf71c2de5380a496aa58fea7456493d675bfa3b"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "00f9f61d0d268442460783c03f1511c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 593349,
            "upload_time": "2024-07-31T02:33:23",
            "upload_time_iso_8601": "2024-07-31T02:33:23.683725Z",
            "url": "https://files.pythonhosted.org/packages/a1/32/0621cfbdc18c6097ce4299581b56e2c204e01a36e353ba6bfcd17125247e/y_py_dart-0.6.3a12-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fde72bcbafa3c7731b274cd659d474c2dc2b8bf6650650b613a48d7c186122f8",
                "md5": "a236ca5ac2b8ea3b64287dcb69d07068",
                "sha256": "3d618e84c448d502b8c873881192aa6404c7a479dbca5c0f61cbfe38efba2e11"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a236ca5ac2b8ea3b64287dcb69d07068",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 645911,
            "upload_time": "2024-07-31T02:33:25",
            "upload_time_iso_8601": "2024-07-31T02:33:25.044611Z",
            "url": "https://files.pythonhosted.org/packages/fd/e7/2bcbafa3c7731b274cd659d474c2dc2b8bf6650650b613a48d7c186122f8/y_py_dart-0.6.3a12-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a86695f0fb633a7299762f476ba61a796b61ba361a7edf264b423e0b093c941a",
                "md5": "a6c55b606965c15b9ed56a2f55a816c5",
                "sha256": "c0f5e22e9db49571f25cadbc4d8cfe4c6e6a3abcf96ad843c86443a636bb93f7"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "a6c55b606965c15b9ed56a2f55a816c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1514113,
            "upload_time": "2024-07-31T02:33:27",
            "upload_time_iso_8601": "2024-07-31T02:33:27.033427Z",
            "url": "https://files.pythonhosted.org/packages/a8/66/95f0fb633a7299762f476ba61a796b61ba361a7edf264b423e0b093c941a/y_py_dart-0.6.3a12-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e3c60cbfb985a635f2095cce03bbfbe5ceb74a6bacdeb3f3151790363ab4b3f",
                "md5": "07d133242a89888f95fb1ca49951a929",
                "sha256": "5ab24cc0fb5bbd9b6d88debbe696ada307e1c39eb65b7b69eec7168f97384c4b"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07d133242a89888f95fb1ca49951a929",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 779030,
            "upload_time": "2024-07-31T02:33:29",
            "upload_time_iso_8601": "2024-07-31T02:33:29.043720Z",
            "url": "https://files.pythonhosted.org/packages/8e/3c/60cbfb985a635f2095cce03bbfbe5ceb74a6bacdeb3f3151790363ab4b3f/y_py_dart-0.6.3a12-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfd42753315e625212859b02be3448db70ae90c275de05a52e81a8f2eb7badaa",
                "md5": "581bfc105bbc7dfbcea07657bf944385",
                "sha256": "7aa7e5b963218cb75cdb318154c04891abf9fd8e56fb9dbd1a0c5d84a2028fbc"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "581bfc105bbc7dfbcea07657bf944385",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 856781,
            "upload_time": "2024-07-31T02:33:30",
            "upload_time_iso_8601": "2024-07-31T02:33:30.583612Z",
            "url": "https://files.pythonhosted.org/packages/cf/d4/2753315e625212859b02be3448db70ae90c275de05a52e81a8f2eb7badaa/y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9434c0f23414f70893839dd123a2f59e9f7efedc45cef3d9bddbefaf92a2aabd",
                "md5": "9469862427c15c409b638067fc878d25",
                "sha256": "eb11d8118e14139f94b2db64c4da4b18dabb3dadbfb2e279a873d990b2ff300e"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9469862427c15c409b638067fc878d25",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 860150,
            "upload_time": "2024-07-31T02:33:31",
            "upload_time_iso_8601": "2024-07-31T02:33:31.912776Z",
            "url": "https://files.pythonhosted.org/packages/94/34/c0f23414f70893839dd123a2f59e9f7efedc45cef3d9bddbefaf92a2aabd/y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52dbb6e21b5f5d099628eca8b274d123d5013e77a0d9a795b8a993706195ec55",
                "md5": "9d80243de8416083c55fe3a11ed64ebe",
                "sha256": "fd27f799a089db9170ddeb3de535203894a7b604dbd1e121fd59dca479469d0d"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9d80243de8416083c55fe3a11ed64ebe",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 925446,
            "upload_time": "2024-07-31T02:33:33",
            "upload_time_iso_8601": "2024-07-31T02:33:33.362597Z",
            "url": "https://files.pythonhosted.org/packages/52/db/b6e21b5f5d099628eca8b274d123d5013e77a0d9a795b8a993706195ec55/y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d612d8ff294d2fdd883fc1b0f0a6039c74f80febe17e155655cb2a2b6fa5b5cf",
                "md5": "e1f0653f5e8b9594215bd495ffbc2020",
                "sha256": "86d40648e18075de987a210b10e7650b01c4e3b007d6fd8f14051c9fbc916df2"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e1f0653f5e8b9594215bd495ffbc2020",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1079792,
            "upload_time": "2024-07-31T02:33:34",
            "upload_time_iso_8601": "2024-07-31T02:33:34.592995Z",
            "url": "https://files.pythonhosted.org/packages/d6/12/d8ff294d2fdd883fc1b0f0a6039c74f80febe17e155655cb2a2b6fa5b5cf/y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbcdf432edf1b19e310196f3ca4362bfa1cf74fa13b7a7b0597e847c66b65ddd",
                "md5": "02a6fc620e859119e0fcb33f52a868ba",
                "sha256": "9c3c1b8eff9d1dc3cdee45f8687b51ca35ec5afc63de694a9c667517c3867f2e"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02a6fc620e859119e0fcb33f52a868ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 854416,
            "upload_time": "2024-07-31T02:33:35",
            "upload_time_iso_8601": "2024-07-31T02:33:35.921845Z",
            "url": "https://files.pythonhosted.org/packages/bb/cd/f432edf1b19e310196f3ca4362bfa1cf74fa13b7a7b0597e847c66b65ddd/y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7f97d443b763aef2b3d6803f9f5df6d24c680a7f980af692a0dde18cd90f6ea",
                "md5": "8c354d763be8a71ecb2e32bee4ca3e59",
                "sha256": "8aed1d3d0a5ad7ee96e1a92e20ef687155a30ed02e80bd63b2a546a661a278d8"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "8c354d763be8a71ecb2e32bee4ca3e59",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 914815,
            "upload_time": "2024-07-31T02:33:37",
            "upload_time_iso_8601": "2024-07-31T02:33:37.592409Z",
            "url": "https://files.pythonhosted.org/packages/a7/f9/7d443b763aef2b3d6803f9f5df6d24c680a7f980af692a0dde18cd90f6ea/y_py_dart-0.6.3a12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a0bb9b63fb1758bdefe4eda4d56dc2bfcc9ae134bfa71386a9990cb2328b9f1",
                "md5": "a2b1755c49464851cebbb5b0ef9baa2f",
                "sha256": "1c216fd81e82bb971c679b8aeac306d74b15f347e01df16f23328a8eaf4984b6"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a2b1755c49464851cebbb5b0ef9baa2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 594516,
            "upload_time": "2024-07-31T02:33:38",
            "upload_time_iso_8601": "2024-07-31T02:33:38.879375Z",
            "url": "https://files.pythonhosted.org/packages/5a/0b/b9b63fb1758bdefe4eda4d56dc2bfcc9ae134bfa71386a9990cb2328b9f1/y_py_dart-0.6.3a12-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "392a59b876f2d9150de892b85219ee0e0ae16e4654f95b95badae0da5e500b2b",
                "md5": "c57b7a7b267ba0c201bd4f1b14e6ae41",
                "sha256": "61d3560d722cd7c9c27872422339b6cc599a8793c66373d033d2c75686e90f0f"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c57b7a7b267ba0c201bd4f1b14e6ae41",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 646790,
            "upload_time": "2024-07-31T02:33:40",
            "upload_time_iso_8601": "2024-07-31T02:33:40.191987Z",
            "url": "https://files.pythonhosted.org/packages/39/2a/59b876f2d9150de892b85219ee0e0ae16e4654f95b95badae0da5e500b2b/y_py_dart-0.6.3a12-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b535ae45b4ade0486e8a8c3e0a6d950da3d2e6e15896cfaf6221f363265dd87",
                "md5": "5e9e73043834a395d0f5b15b2137c54d",
                "sha256": "41a78092e3f0b6faba70f6fded8343ce589257a2054f0ede710f0b47e181434e"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp38-pypy38_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "5e9e73043834a395d0f5b15b2137c54d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1516165,
            "upload_time": "2024-07-31T02:33:42",
            "upload_time_iso_8601": "2024-07-31T02:33:42.007693Z",
            "url": "https://files.pythonhosted.org/packages/1b/53/5ae45b4ade0486e8a8c3e0a6d950da3d2e6e15896cfaf6221f363265dd87/y_py_dart-0.6.3a12-pp38-pypy38_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bff2ededc71d3a539bae881f351d101168b81bccdd8a752e87cb31a2e49f863b",
                "md5": "61159a013c6530ae696ba08513fee783",
                "sha256": "a9d5520e2b68b6926bea026cbc03c8c5ce5e40cfbf51d97763745d43e721778d"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61159a013c6530ae696ba08513fee783",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 779001,
            "upload_time": "2024-07-31T02:33:43",
            "upload_time_iso_8601": "2024-07-31T02:33:43.309186Z",
            "url": "https://files.pythonhosted.org/packages/bf/f2/ededc71d3a539bae881f351d101168b81bccdd8a752e87cb31a2e49f863b/y_py_dart-0.6.3a12-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaedc8bcee6f15370eb7da37e7a3ce77f27d8e6e46ec8333cf1b1f283955db38",
                "md5": "f60479b00b2c066d4602055b8afcf907",
                "sha256": "a66d56a86567cfbf8c6a3284810f8c10f450690af9a0fe9c9e17022cab84bd4e"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f60479b00b2c066d4602055b8afcf907",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 857784,
            "upload_time": "2024-07-31T02:33:44",
            "upload_time_iso_8601": "2024-07-31T02:33:44.878402Z",
            "url": "https://files.pythonhosted.org/packages/ea/ed/c8bcee6f15370eb7da37e7a3ce77f27d8e6e46ec8333cf1b1f283955db38/y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "811734ad0cad56fda97e95ba5d14f015562439b91805364b9ccb1a7942e3198e",
                "md5": "ea7f4e1b9168d81ada161237650fe770",
                "sha256": "06ae1c4d24b548829330b65c7c0befd7698ff2a5916933c57383be867e6f800b"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ea7f4e1b9168d81ada161237650fe770",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 860458,
            "upload_time": "2024-07-31T02:33:46",
            "upload_time_iso_8601": "2024-07-31T02:33:46.124071Z",
            "url": "https://files.pythonhosted.org/packages/81/17/34ad0cad56fda97e95ba5d14f015562439b91805364b9ccb1a7942e3198e/y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adba44acc7fddd14299245882eb324ad41fb7521dd7576b51c448ace1341a5b9",
                "md5": "f5f555c3b4dc98e0ac99fc3cb20d806e",
                "sha256": "3f7e30459ac6cccdee5f8868e3cfdc8743b62988938bbaba894f9d3fe3a298ff"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f5f555c3b4dc98e0ac99fc3cb20d806e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 926883,
            "upload_time": "2024-07-31T02:33:47",
            "upload_time_iso_8601": "2024-07-31T02:33:47.395536Z",
            "url": "https://files.pythonhosted.org/packages/ad/ba/44acc7fddd14299245882eb324ad41fb7521dd7576b51c448ace1341a5b9/y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4eef4df042a07a471738e19130de8eab54f7cc4e08237d55354e0c238bd689d",
                "md5": "0b4641e715e9a232bff988a5798ee3ad",
                "sha256": "3bcb53f05f1543ef1715cdbe8e6b15cfa978561c7d1153ddf8f02b6e61fe64b2"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "0b4641e715e9a232bff988a5798ee3ad",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1082974,
            "upload_time": "2024-07-31T02:33:48",
            "upload_time_iso_8601": "2024-07-31T02:33:48.673405Z",
            "url": "https://files.pythonhosted.org/packages/f4/ee/f4df042a07a471738e19130de8eab54f7cc4e08237d55354e0c238bd689d/y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1763526c7928cee76f6bc66448ac5b7e43e6b491f952f91a332faecf90f56785",
                "md5": "9fca7f78f096585ef7c44fe02d01b84b",
                "sha256": "28ddbf4e13a090a648ea7e5047dffaa6849728a1608dd98c7e16febc06b2660e"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9fca7f78f096585ef7c44fe02d01b84b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 855025,
            "upload_time": "2024-07-31T02:33:50",
            "upload_time_iso_8601": "2024-07-31T02:33:50.294229Z",
            "url": "https://files.pythonhosted.org/packages/17/63/526c7928cee76f6bc66448ac5b7e43e6b491f952f91a332faecf90f56785/y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9b4063882c20bb6c7d97900aac7e6144f56cfbc2ea4281a9d2096af4746f7d6",
                "md5": "8eb7ae04a00bef66a0dca3ceaacd02d4",
                "sha256": "97470239697b52d5a80e0b2056b1dfcf1066824645ce4f5481644d5d0fbbd22c"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "8eb7ae04a00bef66a0dca3ceaacd02d4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 918559,
            "upload_time": "2024-07-31T02:33:52",
            "upload_time_iso_8601": "2024-07-31T02:33:52.203748Z",
            "url": "https://files.pythonhosted.org/packages/c9/b4/063882c20bb6c7d97900aac7e6144f56cfbc2ea4281a9d2096af4746f7d6/y_py_dart-0.6.3a12-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "325891c59b1953a669a9d80b7546c9e78c79502f0f31e57d5a1019267b645e39",
                "md5": "e1edc94fea37345b5448ba3355b4c12c",
                "sha256": "79a78879d558fac28a70666eaec2bcc5267b0cdcc1ea4da89c6b91420aca133c"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp39-pypy39_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "has_sig": false,
            "md5_digest": "e1edc94fea37345b5448ba3355b4c12c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1516620,
            "upload_time": "2024-07-31T02:33:53",
            "upload_time_iso_8601": "2024-07-31T02:33:53.758809Z",
            "url": "https://files.pythonhosted.org/packages/32/58/91c59b1953a669a9d80b7546c9e78c79502f0f31e57d5a1019267b645e39/y_py_dart-0.6.3a12-pp39-pypy39_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f0dc62a4f939ed5b11b538f8b1d8d4cb60e524b73bfdc6d12786bbd229cdb80",
                "md5": "d4dc7dc54ea36177e327848ba6a82359",
                "sha256": "06a3eb12c408c2608cb62525f56ef28ae8b257ff4003b17f6a9d11826dfd982e"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d4dc7dc54ea36177e327848ba6a82359",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 779427,
            "upload_time": "2024-07-31T02:33:55",
            "upload_time_iso_8601": "2024-07-31T02:33:55.398146Z",
            "url": "https://files.pythonhosted.org/packages/5f/0d/c62a4f939ed5b11b538f8b1d8d4cb60e524b73bfdc6d12786bbd229cdb80/y_py_dart-0.6.3a12-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1387a2006af10e702700706f2a89047caf9c4a252f73bc86bc40c60e2ef97dc0",
                "md5": "a936c7c0a1da3e6e5ee30689286c819e",
                "sha256": "202b19804f9252d468b7801380ba9e7a9115670e5dbddf67ba2041b706f062cc"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a936c7c0a1da3e6e5ee30689286c819e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 857640,
            "upload_time": "2024-07-31T02:33:56",
            "upload_time_iso_8601": "2024-07-31T02:33:56.761014Z",
            "url": "https://files.pythonhosted.org/packages/13/87/a2006af10e702700706f2a89047caf9c4a252f73bc86bc40c60e2ef97dc0/y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a3b050a9645507378c009053e79648d0aac60d38507978dcf8b8be4b350b6b3",
                "md5": "658b30b6bd66871b6ce9f16f677fd901",
                "sha256": "758bd4c889879dfe2bbc30d56b017fb7d9499bf8e809e1a2f81c736644008591"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "658b30b6bd66871b6ce9f16f677fd901",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 860542,
            "upload_time": "2024-07-31T02:33:58",
            "upload_time_iso_8601": "2024-07-31T02:33:58.267698Z",
            "url": "https://files.pythonhosted.org/packages/2a/3b/050a9645507378c009053e79648d0aac60d38507978dcf8b8be4b350b6b3/y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38c6a468537cffc1187d25c9ff2adb0c0ef9ac4f2522621a4134727e797bde9b",
                "md5": "8c35c7fe84a45ff0d2a91ca99d0e36a7",
                "sha256": "4ac17e428e9cb8e1ac5c47b3bd336ae9f8faf08bdf53546ae5e214fc93322ad0"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8c35c7fe84a45ff0d2a91ca99d0e36a7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 926909,
            "upload_time": "2024-07-31T02:34:00",
            "upload_time_iso_8601": "2024-07-31T02:34:00.432415Z",
            "url": "https://files.pythonhosted.org/packages/38/c6/a468537cffc1187d25c9ff2adb0c0ef9ac4f2522621a4134727e797bde9b/y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "443b50e5d18acd9f8a28c0273e28c09f3f71d8f1db99c7a5dd8cbd3020bfb58d",
                "md5": "4e59a8d8d2c9f84ac7c9e197080c0c92",
                "sha256": "90386c96f948f68a637ee0040ecb7c227c113463eb3cb5675b52acb8e1946e58"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4e59a8d8d2c9f84ac7c9e197080c0c92",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1082790,
            "upload_time": "2024-07-31T02:34:02",
            "upload_time_iso_8601": "2024-07-31T02:34:02.221745Z",
            "url": "https://files.pythonhosted.org/packages/44/3b/50e5d18acd9f8a28c0273e28c09f3f71d8f1db99c7a5dd8cbd3020bfb58d/y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a3231b6aec9f4917df89969a737cf60f8f3492b2cf8c4cb38f88d7549e1055d",
                "md5": "36e43ae8f20e33a5568a97fc30bc9e41",
                "sha256": "2256b0e0fc1594439b2dbd5864f9fa604cfb876ad6f43050aff8e3a14787ba58"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36e43ae8f20e33a5568a97fc30bc9e41",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 854648,
            "upload_time": "2024-07-31T02:34:03",
            "upload_time_iso_8601": "2024-07-31T02:34:03.671827Z",
            "url": "https://files.pythonhosted.org/packages/5a/32/31b6aec9f4917df89969a737cf60f8f3492b2cf8c4cb38f88d7549e1055d/y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3cdeb5925b54f2774b5b49e578e3ed490ef10701a1682b4a48a8e0ddca18c3c",
                "md5": "7e305e487805abeae5b6fe866bd87c84",
                "sha256": "16f5da68d4cfa386e490217fea0798fb8baa81497ce51cb7dc547b6838488f9d"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "7e305e487805abeae5b6fe866bd87c84",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 919196,
            "upload_time": "2024-07-31T02:34:05",
            "upload_time_iso_8601": "2024-07-31T02:34:05.180475Z",
            "url": "https://files.pythonhosted.org/packages/a3/cd/eb5925b54f2774b5b49e578e3ed490ef10701a1682b4a48a8e0ddca18c3c/y_py_dart-0.6.3a12-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "683b60fb5ad490c48b177d1bb7e9620e3c6f2a5ece7b8bd8da3b7476f65705a1",
                "md5": "79e4624567513585425790c8f9709bd3",
                "sha256": "1f3ff4eb3821d2a23f825d872d3a946cea6eaad21def66a27e1921410b71d197"
            },
            "downloads": -1,
            "filename": "y_py_dart-0.6.3a12.tar.gz",
            "has_sig": false,
            "md5_digest": "79e4624567513585425790c8f9709bd3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 62308,
            "upload_time": "2024-07-31T02:34:06",
            "upload_time_iso_8601": "2024-07-31T02:34:06.449717Z",
            "url": "https://files.pythonhosted.org/packages/68/3b/60fb5ad490c48b177d1bb7e9620e3c6f2a5ece7b8bd8da3b7476f65705a1/y_py_dart-0.6.3a12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-31 02:34:06",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "its-dart",
    "github_project": "ypy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "y-py-dart"
}
        
Elapsed time: 0.96087s