libipld


Namelibipld JSON
Version 1.2.3 PyPI version JSON
download
home_page
SummaryPython binding to the Rust IPLD library
upload_time2024-03-11 16:09:34
maintainer
docs_urlNone
authorIlya (Marshal) <ilya@marshal.dev>
requires_python>=3.7
licenseMIT
keywords library lib ipld cid multibase multihash dag cbor json pb dag-cbor dag-json dag-pb
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## Python IPLD

> This project aims to speed up [The AT Protocol SDK](https://github.com/MarshalX/atproto) by using Rust for the heavy lifting. Only atproto related parts are implemented first.

Code snippet:

```python
import libipld

# Decode a CID
print(libipld.decode_cid('bafyreig7jbijxpn4lfhvnvyuwf5u5jyhd7begxwyiqe7ingwxycjdqjjoa'))
# Output: {'hash': {'size': 32, 'code': 18, 'digest': b'\xdfHP\x9b\xbd\xbcYOV\xd7\x14\xb1{N\xa7\x07\x1f\xc2C^\xd8D\t\xf44\xd6\xbe\x04\x91\xc1)p'}, 'version': 1, 'codec': 113}

# DAG-CBOR
print(libipld.decode_dag_cbor(b'\xa2aa\x0cabfhello!'))
# Output: {'a': 12, 'b': 'hello!'}
print(libipld.encode_dag_cbor({'a': 12, 'b': 'hello!'}))
# Output: b'\xa2aa\x0cabfhello!'

# multibase
print(libipld.decode_multibase('ueWVzIG1hbmkgIQ'))
# Output: ('u', b'yes mani !')
print(libipld.encode_multibase('u', b'yes mani !'))
# Output: ueWVzIG1hbmkgIQ
```

### Features

- Decode DAG-CBOR (`decode_dag_cbor(bytes) -> dict`, `decode_dag_cbor_multi(bytes) -> list[dict]`)
- Encode DAG-CBOR (`encode_dag_cbor(obj) -> bytes`)
- Decode CID (`decode_cid(str) -> dict`)
- Decode CAR (`decode_car(bytes) -> tuple[dict, dict[str, dict]]`). Returns a header and blocks mapped by CID.
- Decode Multibase (`decode_multibase(str) -> tuple[str, bytes]`). Returns base and data.
- Encode Multibase (`encode_multibase(str, bytes) -> str`). Accepts base and data.

Note: stub file will be provided in the future.

## Requirements

- Python 3.7 or higher.

## Installing

You can install or upgrade `libipld` via

```bash
pip install libipld
```

### Contributing

Contributions of all sizes are welcome.

### License

MIT


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "libipld",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "library,lib,ipld,cid,multibase,multihash,dag,cbor,json,pb,dag-cbor,dag-json,dag-pb",
    "author": "Ilya (Marshal) <ilya@marshal.dev>",
    "author_email": "\"Ilya (Marshal)\" <ilya@marshal.dev>",
    "download_url": "https://files.pythonhosted.org/packages/fc/44/4e74c25618f911468ce7ec04d090f3d33fc6b12ce400bdacbf87eba1954c/libipld-1.2.3.tar.gz",
    "platform": null,
    "description": "## Python IPLD\n\n> This project aims to speed up [The AT Protocol SDK](https://github.com/MarshalX/atproto) by using Rust for the heavy lifting. Only atproto related parts are implemented first.\n\nCode snippet:\n\n```python\nimport libipld\n\n# Decode a CID\nprint(libipld.decode_cid('bafyreig7jbijxpn4lfhvnvyuwf5u5jyhd7begxwyiqe7ingwxycjdqjjoa'))\n# Output: {'hash': {'size': 32, 'code': 18, 'digest': b'\\xdfHP\\x9b\\xbd\\xbcYOV\\xd7\\x14\\xb1{N\\xa7\\x07\\x1f\\xc2C^\\xd8D\\t\\xf44\\xd6\\xbe\\x04\\x91\\xc1)p'}, 'version': 1, 'codec': 113}\n\n# DAG-CBOR\nprint(libipld.decode_dag_cbor(b'\\xa2aa\\x0cabfhello!'))\n# Output: {'a': 12, 'b': 'hello!'}\nprint(libipld.encode_dag_cbor({'a': 12, 'b': 'hello!'}))\n# Output: b'\\xa2aa\\x0cabfhello!'\n\n# multibase\nprint(libipld.decode_multibase('ueWVzIG1hbmkgIQ'))\n# Output: ('u', b'yes mani !')\nprint(libipld.encode_multibase('u', b'yes mani !'))\n# Output: ueWVzIG1hbmkgIQ\n```\n\n### Features\n\n- Decode DAG-CBOR (`decode_dag_cbor(bytes) -> dict`, `decode_dag_cbor_multi(bytes) -> list[dict]`)\n- Encode DAG-CBOR (`encode_dag_cbor(obj) -> bytes`)\n- Decode CID (`decode_cid(str) -> dict`)\n- Decode CAR (`decode_car(bytes) -> tuple[dict, dict[str, dict]]`). Returns a header and blocks mapped by CID.\n- Decode Multibase (`decode_multibase(str) -> tuple[str, bytes]`). Returns base and data.\n- Encode Multibase (`encode_multibase(str, bytes) -> str`). Accepts base and data.\n\nNote: stub file will be provided in the future.\n\n## Requirements\n\n- Python 3.7 or higher.\n\n## Installing\n\nYou can install or upgrade `libipld` via\n\n```bash\npip install libipld\n```\n\n### Contributing\n\nContributions of all sizes are welcome.\n\n### License\n\nMIT\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python binding to the Rust IPLD library",
    "version": "1.2.3",
    "project_urls": {
        "Author": "https://github.com/MarshalX",
        "Homepage": "https://github.com/MarshalX/python-libipld",
        "Tracker": "https://github.com/MarshalX/python-libipld/issues"
    },
    "split_keywords": [
        "library",
        "lib",
        "ipld",
        "cid",
        "multibase",
        "multihash",
        "dag",
        "cbor",
        "json",
        "pb",
        "dag-cbor",
        "dag-json",
        "dag-pb"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46460a6ea5daf88a39d9c4238de89cb938476c121cec6dd6da00e6424aee174f",
                "md5": "52fa77ca9a5802d63195322b4c06cdca",
                "sha256": "cd89877ece18fbd76fbefb8f1e80c0c334318826eadc0cb0486868ecd23b16ca"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "52fa77ca9a5802d63195322b4c06cdca",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 339647,
            "upload_time": "2024-03-11T16:05:04",
            "upload_time_iso_8601": "2024-03-11T16:05:04.125842Z",
            "url": "https://files.pythonhosted.org/packages/46/46/0a6ea5daf88a39d9c4238de89cb938476c121cec6dd6da00e6424aee174f/libipld-1.2.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7094a5e24b93ce2ad667a0135db8781b6000eb613499279e476ab8d446c9b78d",
                "md5": "20f38f91396c936e14a25cd05302135d",
                "sha256": "dbfd9745cda62f062ad76fd5247486a54693b60e95bdce8ddaf103a1101af72b"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "20f38f91396c936e14a25cd05302135d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 310076,
            "upload_time": "2024-03-11T16:05:13",
            "upload_time_iso_8601": "2024-03-11T16:05:13.484258Z",
            "url": "https://files.pythonhosted.org/packages/70/94/a5e24b93ce2ad667a0135db8781b6000eb613499279e476ab8d446c9b78d/libipld-1.2.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "38920c1380fb3086883ea46a5bdcfa155ee530d3cb6cac20ffde50d1c8dab9cb",
                "md5": "810073d133e50725317b8f5a7ef9c146",
                "sha256": "a39605d3deb55439064ccf8ebdb7c78cf656d12185b78b6b251e28ceb220977b"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "810073d133e50725317b8f5a7ef9c146",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 674812,
            "upload_time": "2024-03-11T16:05:52",
            "upload_time_iso_8601": "2024-03-11T16:05:52.055155Z",
            "url": "https://files.pythonhosted.org/packages/38/92/0c1380fb3086883ea46a5bdcfa155ee530d3cb6cac20ffde50d1c8dab9cb/libipld-1.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51f1322cba6274d5a598780ff01a441623af81f22d3060a97bc14eafee8d2dbb",
                "md5": "3f399b5fe3cbdec0f5fef4be03091750",
                "sha256": "a83502525689ff3c208a289cf2702c66075f8684c418afe68fddeb3204e4c050"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3f399b5fe3cbdec0f5fef4be03091750",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 680838,
            "upload_time": "2024-03-11T16:06:21",
            "upload_time_iso_8601": "2024-03-11T16:06:21.180835Z",
            "url": "https://files.pythonhosted.org/packages/51/f1/322cba6274d5a598780ff01a441623af81f22d3060a97bc14eafee8d2dbb/libipld-1.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c699e9dff149f28dc148db749a23b484e790f578f7c67bacfbb8e9d7943c6ce",
                "md5": "80636728630750bb856976631a0105cf",
                "sha256": "bcfdd9e304bcbf0b2cacc94c3beee1bef724a006b700a69f85bf9d2ad3c7e0df"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "80636728630750bb856976631a0105cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 684358,
            "upload_time": "2024-03-11T16:06:46",
            "upload_time_iso_8601": "2024-03-11T16:06:46.679631Z",
            "url": "https://files.pythonhosted.org/packages/3c/69/9e9dff149f28dc148db749a23b484e790f578f7c67bacfbb8e9d7943c6ce/libipld-1.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f86d5ee5b74fffd284710ed56d182f7880e599b3e7358be25d56994a4bed9c35",
                "md5": "3f87725b16579b07ad016200f7495847",
                "sha256": "de8d1c45fbd8a02527afde59a9fd641b18855039edfe75e610120649158864ac"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "3f87725b16579b07ad016200f7495847",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 842188,
            "upload_time": "2024-03-11T16:06:56",
            "upload_time_iso_8601": "2024-03-11T16:06:56.308260Z",
            "url": "https://files.pythonhosted.org/packages/f8/6d/5ee5b74fffd284710ed56d182f7880e599b3e7358be25d56994a4bed9c35/libipld-1.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cd7483a5444c32b25a2077cc6b437c0dd617ab34fee6893dab0b95e577341da",
                "md5": "cac37b9490db8803f538f38cd4ace519",
                "sha256": "d31cea4fb4c4b72374dd2a505d5a6e3a530fcfdb2c5bac96714b28fe79a64b53"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cac37b9490db8803f538f38cd4ace519",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 680985,
            "upload_time": "2024-03-11T16:05:17",
            "upload_time_iso_8601": "2024-03-11T16:05:17.810145Z",
            "url": "https://files.pythonhosted.org/packages/2c/d7/483a5444c32b25a2077cc6b437c0dd617ab34fee6893dab0b95e577341da/libipld-1.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c98c90eecaed1bb0733556343a08c87270ae00b96014d06ec19be73cfcf7014e",
                "md5": "37ceae2cea4a477ea937006c19b5fc6e",
                "sha256": "58872c1419164ff49d82b92177c97f3300945b9fea1939cb2f0da4f42e0aee10"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "37ceae2cea4a477ea937006c19b5fc6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 688158,
            "upload_time": "2024-03-11T16:06:29",
            "upload_time_iso_8601": "2024-03-11T16:06:29.951129Z",
            "url": "https://files.pythonhosted.org/packages/c9/8c/90eecaed1bb0733556343a08c87270ae00b96014d06ec19be73cfcf7014e/libipld-1.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "870f2ab6d4b8e0cbad3dac828286c8427692e0d3076b063d51f18d98f23ef4fc",
                "md5": "15d9ae8680bc30e22a2a23867cde84de",
                "sha256": "3cfe60787d51afea44ddf1ab309acb05a746b0970e410693c68d2f25c8e77f61"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "15d9ae8680bc30e22a2a23867cde84de",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 850171,
            "upload_time": "2024-03-11T16:06:06",
            "upload_time_iso_8601": "2024-03-11T16:06:06.479628Z",
            "url": "https://files.pythonhosted.org/packages/87/0f/2ab6d4b8e0cbad3dac828286c8427692e0d3076b063d51f18d98f23ef4fc/libipld-1.2.3-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5651d622097661cb570bc42d76d1f56fcc0633dac7f8d67f54e0132696837874",
                "md5": "3e96e29f848bbcfa74f74a4796d35cfa",
                "sha256": "280053764b1d800740f245e97d7ac698b3352ad6b3e4742716b14f155f80c0b9"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e96e29f848bbcfa74f74a4796d35cfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 840249,
            "upload_time": "2024-03-11T16:07:05",
            "upload_time_iso_8601": "2024-03-11T16:07:05.545737Z",
            "url": "https://files.pythonhosted.org/packages/56/51/d622097661cb570bc42d76d1f56fcc0633dac7f8d67f54e0132696837874/libipld-1.2.3-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "97ab46baeabc2f37e1d335fdf7d25b1796b4c3d310bf9bb262c8cf32d0f61a86",
                "md5": "2d8ccc8178edc2c117edf23a7c92bd71",
                "sha256": "d1e3a5a03cb26c6a81c4c2a0a8fd78be693f14b487b275c92af3c7457d5fab26"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2d8ccc8178edc2c117edf23a7c92bd71",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 182729,
            "upload_time": "2024-03-11T16:07:29",
            "upload_time_iso_8601": "2024-03-11T16:07:29.846456Z",
            "url": "https://files.pythonhosted.org/packages/97/ab/46baeabc2f37e1d335fdf7d25b1796b4c3d310bf9bb262c8cf32d0f61a86/libipld-1.2.3-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e067fca714e90c1911017de6fb7dab8cf9f3120bf90237679feb884e21960e51",
                "md5": "100d3b3b92f98be747d47b69e1189501",
                "sha256": "64d3c6ccc3a833c8d51748b638a836077f2b6e7f4de8c6b325b1b6bdc05e5781"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "100d3b3b92f98be747d47b69e1189501",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 213339,
            "upload_time": "2024-03-11T16:05:28",
            "upload_time_iso_8601": "2024-03-11T16:05:28.578030Z",
            "url": "https://files.pythonhosted.org/packages/e0/67/fca714e90c1911017de6fb7dab8cf9f3120bf90237679feb884e21960e51/libipld-1.2.3-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d880417c6c425f4bdb6551caadf0ad80d182927c4a11e5d1adcf73584645c1c6",
                "md5": "c44093e4faf1b440ab62096cc44d415b",
                "sha256": "d5caa8f0196999a1adee713d71fa17f1cd0151491f5e7c0c3d714924dcc0371a"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c44093e4faf1b440ab62096cc44d415b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 341150,
            "upload_time": "2024-03-11T16:05:05",
            "upload_time_iso_8601": "2024-03-11T16:05:05.991462Z",
            "url": "https://files.pythonhosted.org/packages/d8/80/417c6c425f4bdb6551caadf0ad80d182927c4a11e5d1adcf73584645c1c6/libipld-1.2.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc5737e3ea1ceeb8b516478c036b5537e036298aa0aad9067d716341bb674563",
                "md5": "a9da92f754b15f8d105a15ee174d6a0a",
                "sha256": "20ca7767f6b96d59312dd4595cf934c789729fb2f158ea33ebc66d64a0b647ce"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a9da92f754b15f8d105a15ee174d6a0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 310027,
            "upload_time": "2024-03-11T16:05:15",
            "upload_time_iso_8601": "2024-03-11T16:05:15.312885Z",
            "url": "https://files.pythonhosted.org/packages/bc/57/37e3ea1ceeb8b516478c036b5537e036298aa0aad9067d716341bb674563/libipld-1.2.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6817216e3a5e8d51a40ec2817c0b0afab12d78da261cc554b1002d1b0c5f10cf",
                "md5": "96158bf44d9e9e9cddf34153152ecc41",
                "sha256": "9b3e467758f42e242de35f33d0f9a2c443a596c5f45114b60f2ff0a2ab5ee431"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "96158bf44d9e9e9cddf34153152ecc41",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 674769,
            "upload_time": "2024-03-11T16:05:53",
            "upload_time_iso_8601": "2024-03-11T16:05:53.425004Z",
            "url": "https://files.pythonhosted.org/packages/68/17/216e3a5e8d51a40ec2817c0b0afab12d78da261cc554b1002d1b0c5f10cf/libipld-1.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7381100d5d214ec04ee4827003aeb3145842f1ae4ab8ce754457d35ddc4cdc33",
                "md5": "293a79174424bf8d36b934bfcb4d3704",
                "sha256": "f0c9a25338495e14bb640a5edf72dde6d7273c67eeebabbbe40c67f6a43e351c"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "293a79174424bf8d36b934bfcb4d3704",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 680822,
            "upload_time": "2024-03-11T16:06:22",
            "upload_time_iso_8601": "2024-03-11T16:06:22.660126Z",
            "url": "https://files.pythonhosted.org/packages/73/81/100d5d214ec04ee4827003aeb3145842f1ae4ab8ce754457d35ddc4cdc33/libipld-1.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d798b0125dadf6d712c66372f1ba91ddf14d358c5624b83cf7c645fe139d571",
                "md5": "45cb0fae8304f2650f507bddc0e0a125",
                "sha256": "708914b8821cbc801750b50cc197e21459146a36c4ac5c3b08dbfdb0f9313fdd"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "45cb0fae8304f2650f507bddc0e0a125",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 684383,
            "upload_time": "2024-03-11T16:06:48",
            "upload_time_iso_8601": "2024-03-11T16:06:48.267875Z",
            "url": "https://files.pythonhosted.org/packages/2d/79/8b0125dadf6d712c66372f1ba91ddf14d358c5624b83cf7c645fe139d571/libipld-1.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a754ae6b483c35ed6e45596a27e3a1b2fe2a10a33413919bf1aa6b3b8783fc7",
                "md5": "a4c7b891078f054c2229f572c6917f34",
                "sha256": "f38e0373406ad1b31b6daa1bf52a913a0114ce9b9a036908eee954b7b03016e8"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a4c7b891078f054c2229f572c6917f34",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 842211,
            "upload_time": "2024-03-11T16:06:57",
            "upload_time_iso_8601": "2024-03-11T16:06:57.918767Z",
            "url": "https://files.pythonhosted.org/packages/1a/75/4ae6b483c35ed6e45596a27e3a1b2fe2a10a33413919bf1aa6b3b8783fc7/libipld-1.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4775780c03e63248415b8676dfe94a8a5686e0411e75fb198c341559786c2afd",
                "md5": "6f253048477db37589fcd6717b4054a2",
                "sha256": "c8b6b94e5e8ff8c658da0cdcb10039005246db04eb29dd3905a0b9f525310dbd"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f253048477db37589fcd6717b4054a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 680787,
            "upload_time": "2024-03-11T16:05:19",
            "upload_time_iso_8601": "2024-03-11T16:05:19.642765Z",
            "url": "https://files.pythonhosted.org/packages/47/75/780c03e63248415b8676dfe94a8a5686e0411e75fb198c341559786c2afd/libipld-1.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "025e5cd548760bb2ec610f6bef8fa9da8838544e35d39de1d3a0c5aa96f8b544",
                "md5": "b5a21eb786eb77b7e79c2a04f6170fbe",
                "sha256": "af115474068b0731eee0952bb5e93d8c1126cf933e04b2a002bd9131880eba56"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b5a21eb786eb77b7e79c2a04f6170fbe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 688097,
            "upload_time": "2024-03-11T16:06:31",
            "upload_time_iso_8601": "2024-03-11T16:06:31.326164Z",
            "url": "https://files.pythonhosted.org/packages/02/5e/5cd548760bb2ec610f6bef8fa9da8838544e35d39de1d3a0c5aa96f8b544/libipld-1.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a00741361af0e1a6084ecc842a3e3a22b207db62e3cd1751ca5520a2c782c5f9",
                "md5": "2f279417c4e5141544d4995ccf25332f",
                "sha256": "3196907a3b978e49543c30bd3d5639309c30fe5586db3c2fe0fe9f4ff28ebd64"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f279417c4e5141544d4995ccf25332f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 850000,
            "upload_time": "2024-03-11T16:06:07",
            "upload_time_iso_8601": "2024-03-11T16:06:07.931908Z",
            "url": "https://files.pythonhosted.org/packages/a0/07/41361af0e1a6084ecc842a3e3a22b207db62e3cd1751ca5520a2c782c5f9/libipld-1.2.3-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbea5fb50531f0e508c027bf5407640defc4a1ae0fd0def125ca5ddba57a826a",
                "md5": "7d55bd5edeb3205b7d6e08f6827b19af",
                "sha256": "9aec05d6e025eb948d84d9bad8450123abc165612f70fcd4cef9867866f91694"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d55bd5edeb3205b7d6e08f6827b19af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 840155,
            "upload_time": "2024-03-11T16:07:07",
            "upload_time_iso_8601": "2024-03-11T16:07:07.320877Z",
            "url": "https://files.pythonhosted.org/packages/db/ea/5fb50531f0e508c027bf5407640defc4a1ae0fd0def125ca5ddba57a826a/libipld-1.2.3-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94d8002b32c11ead0573459465c925fed03cef24636fd94b466ed0ef0eb93cb5",
                "md5": "4cd0e8053c75d93c6dd5a384d8ed95b7",
                "sha256": "c7972461e8802dd15229b7f63667e2fca9f838bc7e218e95449babe279956773"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "4cd0e8053c75d93c6dd5a384d8ed95b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 182661,
            "upload_time": "2024-03-11T16:07:31",
            "upload_time_iso_8601": "2024-03-11T16:07:31.764275Z",
            "url": "https://files.pythonhosted.org/packages/94/d8/002b32c11ead0573459465c925fed03cef24636fd94b466ed0ef0eb93cb5/libipld-1.2.3-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60ac458dc2263a3916af496e9ae93a9d918d0b650fc3229ae529be40896e4bd8",
                "md5": "084ecf5e9db2904c24f8586d378e4504",
                "sha256": "647a7fcc1aae30efd8f742e674235adef9dcc8da386f8915938fb3854496a9f4"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "084ecf5e9db2904c24f8586d378e4504",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 214691,
            "upload_time": "2024-03-11T16:05:29",
            "upload_time_iso_8601": "2024-03-11T16:05:29.896150Z",
            "url": "https://files.pythonhosted.org/packages/60/ac/458dc2263a3916af496e9ae93a9d918d0b650fc3229ae529be40896e4bd8/libipld-1.2.3-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c37d624dfa8d29dfb1b330ac58a12ecdfeb95ecd77f967b2d6e6392ee609d8a2",
                "md5": "00358cd0c031e4b77b5f58cac93aeaae",
                "sha256": "a8a7dd3ae73d01cf64ff63f273b47a687ab246839713aee79d29f7d3d220f79e"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp311-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "00358cd0c031e4b77b5f58cac93aeaae",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 178169,
            "upload_time": "2024-03-11T16:07:27",
            "upload_time_iso_8601": "2024-03-11T16:07:27.038319Z",
            "url": "https://files.pythonhosted.org/packages/c3/7d/624dfa8d29dfb1b330ac58a12ecdfeb95ecd77f967b2d6e6392ee609d8a2/libipld-1.2.3-cp311-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e6ded94db85dc25e001a04a778f15f12e4d43faf212202da6caebd3efd3e044",
                "md5": "4ee0ff09b8ea6bf652b93dede3ed4699",
                "sha256": "1ad13c4586d48e819e80cc41dd39f95f3869235ba9629632f6ff927ca6bb300a"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4ee0ff09b8ea6bf652b93dede3ed4699",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 339317,
            "upload_time": "2024-03-11T16:05:07",
            "upload_time_iso_8601": "2024-03-11T16:05:07.782973Z",
            "url": "https://files.pythonhosted.org/packages/4e/6d/ed94db85dc25e001a04a778f15f12e4d43faf212202da6caebd3efd3e044/libipld-1.2.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3580a0ce9c04bd77857158ba5c1fdd306fa760b3ac89ccfe5daec893f6360697",
                "md5": "dc0ab0820ab54252fdb1079f1462e3bf",
                "sha256": "137b963f0ececc491aa87099f89911943721604ff0cdc2c5abb10f11c260b6f2"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dc0ab0820ab54252fdb1079f1462e3bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 307219,
            "upload_time": "2024-03-11T16:05:16",
            "upload_time_iso_8601": "2024-03-11T16:05:16.593395Z",
            "url": "https://files.pythonhosted.org/packages/35/80/a0ce9c04bd77857158ba5c1fdd306fa760b3ac89ccfe5daec893f6360697/libipld-1.2.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be6cbf5d5abc1b38f40c3b26aabbf0a52c9053b7cef949996affd9f994a33506",
                "md5": "7f9ba1bba5342b40a4acc656d73e0edd",
                "sha256": "aaf410b2b5fe88fe6406a4920958b164e7a7e54e037155b297e3a0aa0f1b8e13"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7f9ba1bba5342b40a4acc656d73e0edd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 674701,
            "upload_time": "2024-03-11T16:05:54",
            "upload_time_iso_8601": "2024-03-11T16:05:54.829443Z",
            "url": "https://files.pythonhosted.org/packages/be/6c/bf5d5abc1b38f40c3b26aabbf0a52c9053b7cef949996affd9f994a33506/libipld-1.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c32fb0d8bdb696be6670a4799d11987f4bc8a6b238d270ad1f560a890ca892be",
                "md5": "3303e38e60b4b025b1374237ecfd8f69",
                "sha256": "ee34b308510e672b25df8d28afbf8a8b03bf0c166c5019959b8db6e3be58066d"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3303e38e60b4b025b1374237ecfd8f69",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 680873,
            "upload_time": "2024-03-11T16:06:23",
            "upload_time_iso_8601": "2024-03-11T16:06:23.959406Z",
            "url": "https://files.pythonhosted.org/packages/c3/2f/b0d8bdb696be6670a4799d11987f4bc8a6b238d270ad1f560a890ca892be/libipld-1.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "472d901f150d4bfcbee8294926bf8f8e2b01cc8f75d8f4e2327b69a6119d49cd",
                "md5": "64511c5e157b02627d6ac0627aa85016",
                "sha256": "4d63f0c977c80428aa3000591a7356c1ed1c0e877073052852ef1eaa1b035321"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "64511c5e157b02627d6ac0627aa85016",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 684518,
            "upload_time": "2024-03-11T16:06:49",
            "upload_time_iso_8601": "2024-03-11T16:06:49.663198Z",
            "url": "https://files.pythonhosted.org/packages/47/2d/901f150d4bfcbee8294926bf8f8e2b01cc8f75d8f4e2327b69a6119d49cd/libipld-1.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e21f40defa22b862512c51665a0640ec0544d556b7eefd9ea46692fdb4d1663",
                "md5": "5570513046980ff0c62f456a377b3005",
                "sha256": "8e3d6b8cf8a23421c0e5279c101502fd8ef8eb443a978252db9c5cb23f2a9657"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5570513046980ff0c62f456a377b3005",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 839643,
            "upload_time": "2024-03-11T16:06:59",
            "upload_time_iso_8601": "2024-03-11T16:06:59.587465Z",
            "url": "https://files.pythonhosted.org/packages/8e/21/f40defa22b862512c51665a0640ec0544d556b7eefd9ea46692fdb4d1663/libipld-1.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5575a06c5231230ed740bc20c44d68c67c84a2f8cc7de64355926b680c7d0355",
                "md5": "e8a7abc41a34740a705354ab3c53b2dd",
                "sha256": "36fca2696e1d68a614173bcb16153b788eb2db7b63dd1ce072ab324d85248c19"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8a7abc41a34740a705354ab3c53b2dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 681152,
            "upload_time": "2024-03-11T16:05:21",
            "upload_time_iso_8601": "2024-03-11T16:05:21.143052Z",
            "url": "https://files.pythonhosted.org/packages/55/75/a06c5231230ed740bc20c44d68c67c84a2f8cc7de64355926b680c7d0355/libipld-1.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4f0dc808b5984e96557a9c646db23c8dfc09256dbfeda8b840eb935d1be8f7a",
                "md5": "3d3dce5f76d9de33c687c37f7390d7e7",
                "sha256": "7c7813dcce79386254f6ff6f253c8b92d06653e856212e0d762c5e2d74dc708e"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3d3dce5f76d9de33c687c37f7390d7e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 689124,
            "upload_time": "2024-03-11T16:06:32",
            "upload_time_iso_8601": "2024-03-11T16:06:32.723612Z",
            "url": "https://files.pythonhosted.org/packages/f4/f0/dc808b5984e96557a9c646db23c8dfc09256dbfeda8b840eb935d1be8f7a/libipld-1.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30df3b92f812381bb9e60a976a43be5ad5b3bae5230fca8a4fd74604f8d80e64",
                "md5": "06d5cc5567eb3f8a3247c3f8a209f5fd",
                "sha256": "75951cca2425b74423af7e7e57a9cf16108e847a04beabfdda5bda0a331ac8a0"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "06d5cc5567eb3f8a3247c3f8a209f5fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 850114,
            "upload_time": "2024-03-11T16:06:09",
            "upload_time_iso_8601": "2024-03-11T16:06:09.368562Z",
            "url": "https://files.pythonhosted.org/packages/30/df/3b92f812381bb9e60a976a43be5ad5b3bae5230fca8a4fd74604f8d80e64/libipld-1.2.3-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2ea32410b20fe6a19b9ff607e4f137f9826fb8f445f0beb89bfaaecaa22e0d6",
                "md5": "9b753a45105e3f8341e620bfd7d3d56d",
                "sha256": "495d2351d2df70b81def24d39d3a0a7b26e3471f7b52f30b9c140cb8e734be7b"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9b753a45105e3f8341e620bfd7d3d56d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 840508,
            "upload_time": "2024-03-11T16:07:09",
            "upload_time_iso_8601": "2024-03-11T16:07:09.907454Z",
            "url": "https://files.pythonhosted.org/packages/b2/ea/32410b20fe6a19b9ff607e4f137f9826fb8f445f0beb89bfaaecaa22e0d6/libipld-1.2.3-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "db1bd44ccf3e5d72ee59bb5b0f47c73dfb73838537ca9d7b9040bbe4a986f9c2",
                "md5": "d883e2ca653b8e7f67e9ebed7d5c5fa8",
                "sha256": "5fd1bc2ede0bf4ac4f6a174f076365abfb5e04d462788c5fab38b45aa3db9d18"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d883e2ca653b8e7f67e9ebed7d5c5fa8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 183029,
            "upload_time": "2024-03-11T16:07:33",
            "upload_time_iso_8601": "2024-03-11T16:07:33.319707Z",
            "url": "https://files.pythonhosted.org/packages/db/1b/d44ccf3e5d72ee59bb5b0f47c73dfb73838537ca9d7b9040bbe4a986f9c2/libipld-1.2.3-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0f99df1a667c34c9bec6f47b1ba1be63c02c30577c189c3a63e99c0aa65c422",
                "md5": "46f9636145883329b6c8f957b9d2c5f4",
                "sha256": "b7e014f1cca370acd5b5f452bdd72c224e91e4e653bbf7a3e0b97aba72729852"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "46f9636145883329b6c8f957b9d2c5f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 214543,
            "upload_time": "2024-03-11T16:05:31",
            "upload_time_iso_8601": "2024-03-11T16:05:31.102727Z",
            "url": "https://files.pythonhosted.org/packages/a0/f9/9df1a667c34c9bec6f47b1ba1be63c02c30577c189c3a63e99c0aa65c422/libipld-1.2.3-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81517ef6082c30f4eb4fc18d3b4cb232c10c5924cb1e01092b7259e90f245105",
                "md5": "9d54f810d7dd881aa51507b17342173f",
                "sha256": "5ae3e84bab17801187a7f5cffe772a739a697ccb54fe29a172681eaffc3552cd"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp312-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "9d54f810d7dd881aa51507b17342173f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 178206,
            "upload_time": "2024-03-11T16:07:28",
            "upload_time_iso_8601": "2024-03-11T16:07:28.344628Z",
            "url": "https://files.pythonhosted.org/packages/81/51/7ef6082c30f4eb4fc18d3b4cb232c10c5924cb1e01092b7259e90f245105/libipld-1.2.3-cp312-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "291e928b59545f5904ef6b34c03c0bb9cde97c359808fcaf61df13001c7e1003",
                "md5": "117ecba8a77ab500056efbe5208df540",
                "sha256": "db2977092d85566cc42b7f2b303341c12b9cd2acf7024df00f67748f91932cfe"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-cp37m-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "117ecba8a77ab500056efbe5208df540",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 339531,
            "upload_time": "2024-03-11T16:05:01",
            "upload_time_iso_8601": "2024-03-11T16:05:01.159464Z",
            "url": "https://files.pythonhosted.org/packages/29/1e/928b59545f5904ef6b34c03c0bb9cde97c359808fcaf61df13001c7e1003/libipld-1.2.3-cp37-cp37m-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb27594061c0cc52acd8f8f118bcc833e0a84203ff5411a348fc4050d9c06508",
                "md5": "002046c5cefb9a9334d040f9bd8ed079",
                "sha256": "9777233e836445d7ef91cf4f16234912350f5ff82a916514794e9c549b6871c5"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "002046c5cefb9a9334d040f9bd8ed079",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 302949,
            "upload_time": "2024-03-11T16:05:37",
            "upload_time_iso_8601": "2024-03-11T16:05:37.842385Z",
            "url": "https://files.pythonhosted.org/packages/cb/27/594061c0cc52acd8f8f118bcc833e0a84203ff5411a348fc4050d9c06508/libipld-1.2.3-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6394d24b02f935f55f8cdb4989cdedd3cbb4a150f1dadf8dd18aa0a70be1ea7",
                "md5": "7dd5be427086bab7c063a030d17f0d22",
                "sha256": "b58ad5a3b275fae936064200638922996e9338387d5ea5326214530da28fade8"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7dd5be427086bab7c063a030d17f0d22",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 674711,
            "upload_time": "2024-03-11T16:05:56",
            "upload_time_iso_8601": "2024-03-11T16:05:56.184612Z",
            "url": "https://files.pythonhosted.org/packages/d6/39/4d24b02f935f55f8cdb4989cdedd3cbb4a150f1dadf8dd18aa0a70be1ea7/libipld-1.2.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "945240d4d060a31886af39024a9a71ff5872868a120eba13c30c98943167dde9",
                "md5": "2c001af8b87039f72dcdab2f5df58349",
                "sha256": "e645634e4b802de4a97f44f1df7554cb7335fd331fdb26a99adc0c284a760139"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "2c001af8b87039f72dcdab2f5df58349",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 680685,
            "upload_time": "2024-03-11T16:06:25",
            "upload_time_iso_8601": "2024-03-11T16:06:25.227347Z",
            "url": "https://files.pythonhosted.org/packages/94/52/40d4d060a31886af39024a9a71ff5872868a120eba13c30c98943167dde9/libipld-1.2.3-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6044dcd6ca6ba171134482b0b4b950acfa99716d044ccabcdc3a23a34f991e97",
                "md5": "fdbb3ee7ef249b9aff829bafebbfead5",
                "sha256": "da2db0421364fd68c0f841f61eeab2cc537a458397011a5ab26b66d38991b18f"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "fdbb3ee7ef249b9aff829bafebbfead5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 684201,
            "upload_time": "2024-03-11T16:06:50",
            "upload_time_iso_8601": "2024-03-11T16:06:50.971165Z",
            "url": "https://files.pythonhosted.org/packages/60/44/dcd6ca6ba171134482b0b4b950acfa99716d044ccabcdc3a23a34f991e97/libipld-1.2.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f46f9092a64ea4d5d2a99c995c1d2d0566be86833bccd86ddb545515314cd8b",
                "md5": "5861a1657f2cc1f79a1629e3e93e2692",
                "sha256": "6ce3006193aebb1206c71c986ec74b358bd2e123c8b3d92caffc900dec1e67bb"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5861a1657f2cc1f79a1629e3e93e2692",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 841941,
            "upload_time": "2024-03-11T16:07:00",
            "upload_time_iso_8601": "2024-03-11T16:07:00.939566Z",
            "url": "https://files.pythonhosted.org/packages/0f/46/f9092a64ea4d5d2a99c995c1d2d0566be86833bccd86ddb545515314cd8b/libipld-1.2.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "241f34dc32c556262940df4630c34243209a44e006a161f7d7fcd479fa197162",
                "md5": "b3fefc0520e003f72849e7ab454d343a",
                "sha256": "534a422d395ee29008f8844b2b5f12b51b02f690e13d39a3ccbf0369b0600d87"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3fefc0520e003f72849e7ab454d343a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 680976,
            "upload_time": "2024-03-11T16:05:23",
            "upload_time_iso_8601": "2024-03-11T16:05:23.019463Z",
            "url": "https://files.pythonhosted.org/packages/24/1f/34dc32c556262940df4630c34243209a44e006a161f7d7fcd479fa197162/libipld-1.2.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19dbfbabac9526a69330b1d8f0f678844ca2e85a8161215218fbaac816dfc9c8",
                "md5": "775b5f0d8a671f1be9923a8eff09c802",
                "sha256": "de7d54fe4ba34979eb9a0986c735e2b8e95b4534a0d95f04fd7ea603602de2fd"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "775b5f0d8a671f1be9923a8eff09c802",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 687840,
            "upload_time": "2024-03-11T16:06:34",
            "upload_time_iso_8601": "2024-03-11T16:06:34.052854Z",
            "url": "https://files.pythonhosted.org/packages/19/db/fbabac9526a69330b1d8f0f678844ca2e85a8161215218fbaac816dfc9c8/libipld-1.2.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dce346307eb77ce628b9df96b8e177d7b0fc6c63aa5496cce7e9c5bf96cb705",
                "md5": "6d7777f231aa3fa063bb80d4d7637d78",
                "sha256": "e8e23aa4e6831dbc418b05793668c4f26b450ee2f2369f818aee971b5447cc90"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6d7777f231aa3fa063bb80d4d7637d78",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 849948,
            "upload_time": "2024-03-11T16:06:10",
            "upload_time_iso_8601": "2024-03-11T16:06:10.659463Z",
            "url": "https://files.pythonhosted.org/packages/5d/ce/346307eb77ce628b9df96b8e177d7b0fc6c63aa5496cce7e9c5bf96cb705/libipld-1.2.3-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5703d183f5c9ebe28f68361fbb5cd17e62f9a98e81d57862f71f159910261e66",
                "md5": "5a3de44684b8331b5ebaf0d879845982",
                "sha256": "428ee163d6dbb2a4550fe974d29134369a22f0daa47a6e42c5175d97377ed99b"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a3de44684b8331b5ebaf0d879845982",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 840153,
            "upload_time": "2024-03-11T16:07:12",
            "upload_time_iso_8601": "2024-03-11T16:07:12.033712Z",
            "url": "https://files.pythonhosted.org/packages/57/03/d183f5c9ebe28f68361fbb5cd17e62f9a98e81d57862f71f159910261e66/libipld-1.2.3-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d8a55adaf787d93d496751b4e3e6a597ed7438529b9f69466b655b8101a9f68",
                "md5": "73fe800955b252260ece0ae0aa71f131",
                "sha256": "69c16e9fcd7b77ee6219054e451ae9381add9c9e0c26187f26823e02f444e651"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "73fe800955b252260ece0ae0aa71f131",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 182474,
            "upload_time": "2024-03-11T16:07:34",
            "upload_time_iso_8601": "2024-03-11T16:07:34.565808Z",
            "url": "https://files.pythonhosted.org/packages/4d/8a/55adaf787d93d496751b4e3e6a597ed7438529b9f69466b655b8101a9f68/libipld-1.2.3-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74f787bf0ce8e2d55989c58aad83fb2a91cc3d8f86f246862b858e0b7a62cdb0",
                "md5": "d4e939851e377538136904711a136fb9",
                "sha256": "d94c07797d8fd4c3d091f2c2925f10f15cbfaed82e8152b42d238d16957e48c3"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d4e939851e377538136904711a136fb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 214018,
            "upload_time": "2024-03-11T16:05:32",
            "upload_time_iso_8601": "2024-03-11T16:05:32.222333Z",
            "url": "https://files.pythonhosted.org/packages/74/f7/87bf0ce8e2d55989c58aad83fb2a91cc3d8f86f246862b858e0b7a62cdb0/libipld-1.2.3-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b4f4c3d252885359f5b5ca1a12ec26055eac4a926dfc8cd98a2570878934c4d",
                "md5": "2fc986f3be678906f8827ffe915bb341",
                "sha256": "20b693226849c734404d5561e8ebb919355af3d693155f956a3db957c29d91ec"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2fc986f3be678906f8827ffe915bb341",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 339377,
            "upload_time": "2024-03-11T16:05:10",
            "upload_time_iso_8601": "2024-03-11T16:05:10.224999Z",
            "url": "https://files.pythonhosted.org/packages/8b/4f/4c3d252885359f5b5ca1a12ec26055eac4a926dfc8cd98a2570878934c4d/libipld-1.2.3-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9fb02613da9eca267187bebb811fc6989dc0a74c0f24e74bedc477410485e8c",
                "md5": "003ca849ebc13c7a045579726639382e",
                "sha256": "4ea0d6630af61564d9b6e10ebc9dfcfbf46bde2d891ecf32e56f56a825b7f9ea"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "003ca849ebc13c7a045579726639382e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 302943,
            "upload_time": "2024-03-11T16:05:39",
            "upload_time_iso_8601": "2024-03-11T16:05:39.894256Z",
            "url": "https://files.pythonhosted.org/packages/f9/fb/02613da9eca267187bebb811fc6989dc0a74c0f24e74bedc477410485e8c/libipld-1.2.3-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a29192cc90d2d96449ad68df7aeb9fac8d2698157f29a8071b5b8d7ed340665",
                "md5": "80e7a48594cbb6467c0a7f96ee204b8b",
                "sha256": "ee21298283cd05ffe86edeec84be43d6b257207cbb5fbc9022cd023c5dd87925"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "80e7a48594cbb6467c0a7f96ee204b8b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 674707,
            "upload_time": "2024-03-11T16:05:57",
            "upload_time_iso_8601": "2024-03-11T16:05:57.531461Z",
            "url": "https://files.pythonhosted.org/packages/0a/29/192cc90d2d96449ad68df7aeb9fac8d2698157f29a8071b5b8d7ed340665/libipld-1.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e33e5506c7ba03c2fcf749bc7f940a93c2e0ad40d3ef6b9613101b219dd8451",
                "md5": "7bb012d110b583771fbeb00d931e236c",
                "sha256": "d0e6b2abe9bdd5cd16232c499673b5fe9838a78b8788bbd692e2b781a7d8b528"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7bb012d110b583771fbeb00d931e236c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 680682,
            "upload_time": "2024-03-11T16:06:26",
            "upload_time_iso_8601": "2024-03-11T16:06:26.685191Z",
            "url": "https://files.pythonhosted.org/packages/2e/33/e5506c7ba03c2fcf749bc7f940a93c2e0ad40d3ef6b9613101b219dd8451/libipld-1.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a4f19fbfc70e5b502257d7e0dd542a0fe868211c653c0516e3ea54fe436fb16",
                "md5": "0afb6d29d93b0a0aa3d5ecd90276a42c",
                "sha256": "d562dd6689b7f5d80b576d15621e53f1601fa3e53d507ccf47992f8f3d5909e6"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0afb6d29d93b0a0aa3d5ecd90276a42c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 684199,
            "upload_time": "2024-03-11T16:06:53",
            "upload_time_iso_8601": "2024-03-11T16:06:53.375463Z",
            "url": "https://files.pythonhosted.org/packages/8a/4f/19fbfc70e5b502257d7e0dd542a0fe868211c653c0516e3ea54fe436fb16/libipld-1.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb5c8fbed64fe0167944f128c429c6d6d2ad61a91765f19829525f79fac19060",
                "md5": "4d5fbad7eecfbb03ab3e9b36a2f5035c",
                "sha256": "2f17ddb58726fbb41552f13c8b453a41b3f5b85d460f7f1b7123d3f8e911dcac"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4d5fbad7eecfbb03ab3e9b36a2f5035c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 841937,
            "upload_time": "2024-03-11T16:07:02",
            "upload_time_iso_8601": "2024-03-11T16:07:02.573194Z",
            "url": "https://files.pythonhosted.org/packages/eb/5c/8fbed64fe0167944f128c429c6d6d2ad61a91765f19829525f79fac19060/libipld-1.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4361f48175c6e3f8899fd2b857e9443c099a0ad1e01b30c563f1825f7fc29b6d",
                "md5": "c08fd15ac50ddbc61542b95aff6975c7",
                "sha256": "f2785cb62e4e40354033d9b37439586b9b1630af0a3c9b52f263001e279a8d34"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c08fd15ac50ddbc61542b95aff6975c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 680973,
            "upload_time": "2024-03-11T16:05:24",
            "upload_time_iso_8601": "2024-03-11T16:05:24.912501Z",
            "url": "https://files.pythonhosted.org/packages/43/61/f48175c6e3f8899fd2b857e9443c099a0ad1e01b30c563f1825f7fc29b6d/libipld-1.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76d604554222f9667755d413e8531a1ee61ed48b93bd84715853f87873443088",
                "md5": "ace2a61eb788b8e72de2cf38ecc35ad3",
                "sha256": "cc1cff91d20efd65e4f658a0da0fb441d6f502f9d681a0fc5ca4a64cc2d556ca"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ace2a61eb788b8e72de2cf38ecc35ad3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 687837,
            "upload_time": "2024-03-11T16:06:35",
            "upload_time_iso_8601": "2024-03-11T16:06:35.676368Z",
            "url": "https://files.pythonhosted.org/packages/76/d6/04554222f9667755d413e8531a1ee61ed48b93bd84715853f87873443088/libipld-1.2.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8296d555357cd557b4b5785f8c762bac28a45de92cf28bf57c66a4732df91b0f",
                "md5": "21b06ee1857b62ae6f9b9efe79e67aa2",
                "sha256": "6f3abd7a5f490475da39294bebc08144c16ac7ed2ec99177120dff69a169d0b2"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "21b06ee1857b62ae6f9b9efe79e67aa2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 849945,
            "upload_time": "2024-03-11T16:06:12",
            "upload_time_iso_8601": "2024-03-11T16:06:12.194657Z",
            "url": "https://files.pythonhosted.org/packages/82/96/d555357cd557b4b5785f8c762bac28a45de92cf28bf57c66a4732df91b0f/libipld-1.2.3-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc2c7d100833f8563016bcc9b6af722bbcdce8a2582fdd6aba8f7e68ad506649",
                "md5": "88bb5de03810b2ab67c92b4d412e57cf",
                "sha256": "70723882d096c3079c86637a442a9d0158d86f40c9f30b1cece5ffc16e9439b6"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "88bb5de03810b2ab67c92b4d412e57cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 840146,
            "upload_time": "2024-03-11T16:07:13",
            "upload_time_iso_8601": "2024-03-11T16:07:13.592690Z",
            "url": "https://files.pythonhosted.org/packages/cc/2c/7d100833f8563016bcc9b6af722bbcdce8a2582fdd6aba8f7e68ad506649/libipld-1.2.3-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "740681bff8829e7f2e22f675ad4298dd593ffeb97dcddd34c533c9dde4e1d35d",
                "md5": "fea67c44cbae057113227ec5dcbe1091",
                "sha256": "a3cd967f5f1554f8e6e056c239e432caf70618d0cd2b061552c2efe5da9b554f"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "fea67c44cbae057113227ec5dcbe1091",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 182508,
            "upload_time": "2024-03-11T16:07:35",
            "upload_time_iso_8601": "2024-03-11T16:07:35.844005Z",
            "url": "https://files.pythonhosted.org/packages/74/06/81bff8829e7f2e22f675ad4298dd593ffeb97dcddd34c533c9dde4e1d35d/libipld-1.2.3-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "89e359b4dc92e653ac04ceceab1b827eb23c09adf3881c675e1c7d6a80c264b5",
                "md5": "1da979792e290f9204b3789c7fe124ad",
                "sha256": "6191727d03fdd1b18ae395db4d54d29c216b3f819be08c71b5635b9728c89fd0"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1da979792e290f9204b3789c7fe124ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 215299,
            "upload_time": "2024-03-11T16:05:33",
            "upload_time_iso_8601": "2024-03-11T16:05:33.894635Z",
            "url": "https://files.pythonhosted.org/packages/89/e3/59b4dc92e653ac04ceceab1b827eb23c09adf3881c675e1c7d6a80c264b5/libipld-1.2.3-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a8080232650bef4c1afe60afd4d7e51616725b3e95baddfea255b434172deb0",
                "md5": "30bf3f7012dcdf3b2f99c14527db5fb4",
                "sha256": "79ca1236d37997aba331c5bfa581244462e6f987c79919a29abe223a448edfd3"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30bf3f7012dcdf3b2f99c14527db5fb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 341540,
            "upload_time": "2024-03-11T16:05:12",
            "upload_time_iso_8601": "2024-03-11T16:05:12.269432Z",
            "url": "https://files.pythonhosted.org/packages/5a/80/80232650bef4c1afe60afd4d7e51616725b3e95baddfea255b434172deb0/libipld-1.2.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2faf0a2f87b0613b1e7017d6c591890b98c33053b944a835b0e17885a8332114",
                "md5": "0939cc7e9480dd27bcbeaaece90ceceb",
                "sha256": "9f79b375d09a4d6e72d7567b09108f5bc10b97faa6f148c5268c2b48f0caa94b"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0939cc7e9480dd27bcbeaaece90ceceb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 303073,
            "upload_time": "2024-03-11T16:05:41",
            "upload_time_iso_8601": "2024-03-11T16:05:41.075457Z",
            "url": "https://files.pythonhosted.org/packages/2f/af/0a2f87b0613b1e7017d6c591890b98c33053b944a835b0e17885a8332114/libipld-1.2.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3da865a2b20760e5b3504861485298fc8f1c90a4a0d1e9e097bed5b2a8a71b5",
                "md5": "456d783e27a917ae3ab03fbfc17e16d6",
                "sha256": "f8a0294448ca130dfdd2d62964f4b34614ce22df0bdae60f61c23f1e54453157"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "456d783e27a917ae3ab03fbfc17e16d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 674799,
            "upload_time": "2024-03-11T16:05:58",
            "upload_time_iso_8601": "2024-03-11T16:05:58.858233Z",
            "url": "https://files.pythonhosted.org/packages/b3/da/865a2b20760e5b3504861485298fc8f1c90a4a0d1e9e097bed5b2a8a71b5/libipld-1.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28817b7a887cabf1bf79b18ec9baadf08db205957b43b73f69bacd5bcaa87315",
                "md5": "b104c305e7c26c5051b75304962350c0",
                "sha256": "3910244692b9d1a5d5e1eea0bf365d2d52d8593295611a3eaa08126106420ada"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b104c305e7c26c5051b75304962350c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 680741,
            "upload_time": "2024-03-11T16:06:28",
            "upload_time_iso_8601": "2024-03-11T16:06:28.043893Z",
            "url": "https://files.pythonhosted.org/packages/28/81/7b7a887cabf1bf79b18ec9baadf08db205957b43b73f69bacd5bcaa87315/libipld-1.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df8c44df40f39e992bba0c2ee011959d5b5a107e8388d9b3f8b3a678e46942e8",
                "md5": "c4eeac06e39e967a2c413d0843e3be34",
                "sha256": "ede5839663819106dda8bd78bd0ae9102842e2924421293b1e43bfb289b228a4"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c4eeac06e39e967a2c413d0843e3be34",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 684369,
            "upload_time": "2024-03-11T16:06:54",
            "upload_time_iso_8601": "2024-03-11T16:06:54.862495Z",
            "url": "https://files.pythonhosted.org/packages/df/8c/44df40f39e992bba0c2ee011959d5b5a107e8388d9b3f8b3a678e46942e8/libipld-1.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "257a0df12dbcd011c89f19b85b9c16097163c6956555d3ab55902c13550d0e4c",
                "md5": "9521be3a163c004ffd0b0271085fd484",
                "sha256": "d71b2ed3f3d1292fdb7fd550988dd6e561cebf91af986dc1076d378e6688e9db"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9521be3a163c004ffd0b0271085fd484",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 842274,
            "upload_time": "2024-03-11T16:07:04",
            "upload_time_iso_8601": "2024-03-11T16:07:04.158175Z",
            "url": "https://files.pythonhosted.org/packages/25/7a/0df12dbcd011c89f19b85b9c16097163c6956555d3ab55902c13550d0e4c/libipld-1.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d5d4bfa4ff40315bf84d67f255ae1cbd56961a07232b5d4c4ae5a829dcd1835",
                "md5": "8eb0e15c84d619d523e8552fde8a374f",
                "sha256": "53ea020ff1ca952c1fb04d5e355207af27ef82519af6b1197f12cbf2638db7f2"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8eb0e15c84d619d523e8552fde8a374f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 681016,
            "upload_time": "2024-03-11T16:05:26",
            "upload_time_iso_8601": "2024-03-11T16:05:26.780138Z",
            "url": "https://files.pythonhosted.org/packages/7d/5d/4bfa4ff40315bf84d67f255ae1cbd56961a07232b5d4c4ae5a829dcd1835/libipld-1.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cdff0a8a3d5620a691d1c5ad037895946e437eceaedc34766ca31205e8a91bd5",
                "md5": "c967a8f55fb708e687afb8f45e077356",
                "sha256": "bc556a4762b50d698ed7607e3f6fcab30d2eca09201288a09cf0a340e2530b86"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "c967a8f55fb708e687afb8f45e077356",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 688125,
            "upload_time": "2024-03-11T16:06:38",
            "upload_time_iso_8601": "2024-03-11T16:06:38.167475Z",
            "url": "https://files.pythonhosted.org/packages/cd/ff/0a8a3d5620a691d1c5ad037895946e437eceaedc34766ca31205e8a91bd5/libipld-1.2.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3bdec5cc2f4b09edbb1998b2b944c4dcd408a19c844e7a35fb9955fd93ac9574",
                "md5": "65fdb30490af0b327fbe8f0201eef265",
                "sha256": "51441c0cb16f9a1fe3b2b24945b7303aaf3d8c9a5cf05ba86af2735b3b548d3b"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "65fdb30490af0b327fbe8f0201eef265",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 850166,
            "upload_time": "2024-03-11T16:06:13",
            "upload_time_iso_8601": "2024-03-11T16:06:13.535442Z",
            "url": "https://files.pythonhosted.org/packages/3b/de/c5cc2f4b09edbb1998b2b944c4dcd408a19c844e7a35fb9955fd93ac9574/libipld-1.2.3-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9a70ca670f56156ab43d9ce8eed52b5ea3c6d25746eb28c28b677a1cf69bc7d2",
                "md5": "e4faac7150a2d723fddb3b52ee2e11fb",
                "sha256": "e009f45971c5c8873cd083b6fd9d98c62e337d4dab92823efd89a4ae94765132"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4faac7150a2d723fddb3b52ee2e11fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 840203,
            "upload_time": "2024-03-11T16:07:15",
            "upload_time_iso_8601": "2024-03-11T16:07:15.099390Z",
            "url": "https://files.pythonhosted.org/packages/9a/70/ca670f56156ab43d9ce8eed52b5ea3c6d25746eb28c28b677a1cf69bc7d2/libipld-1.2.3-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab43e739e064fb34f5c0ad9776c9564f266c55abdbac691c360c8294f57eb9c3",
                "md5": "1e132144b5e3f0189059486c6600be78",
                "sha256": "bdd72b4c561ee55a6d55879493ed78a06251625aad27f7a73d7ef7c4a669f57b"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "1e132144b5e3f0189059486c6600be78",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 182686,
            "upload_time": "2024-03-11T16:07:37",
            "upload_time_iso_8601": "2024-03-11T16:07:37.806243Z",
            "url": "https://files.pythonhosted.org/packages/ab/43/e739e064fb34f5c0ad9776c9564f266c55abdbac691c360c8294f57eb9c3/libipld-1.2.3-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f9b42a1ce8a91ce08624cf0836190783adb9ff60fc94dbd681742ea5b77c370",
                "md5": "5bad0c6cf04effe25e3616964680b7d3",
                "sha256": "43f41ec8528feb5a0857aa6c49f369a0acd683677b8620be9066e242393e194e"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5bad0c6cf04effe25e3616964680b7d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 213665,
            "upload_time": "2024-03-11T16:05:35",
            "upload_time_iso_8601": "2024-03-11T16:05:35.841067Z",
            "url": "https://files.pythonhosted.org/packages/4f/9b/42a1ce8a91ce08624cf0836190783adb9ff60fc94dbd681742ea5b77c370/libipld-1.2.3-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "409ecaf4a5f37785e9f46af886a344fe9ebf9e5b5eb2387321cc8ad9adb7a605",
                "md5": "f102d2b97ebaa92e9b6b92d13f9ffbb6",
                "sha256": "bfd67b73a5ff5bcbfad8140d2900751861fd0f1aeeeb6208490c3afe6c48f996"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f102d2b97ebaa92e9b6b92d13f9ffbb6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 316941,
            "upload_time": "2024-03-11T16:05:46",
            "upload_time_iso_8601": "2024-03-11T16:05:46.996415Z",
            "url": "https://files.pythonhosted.org/packages/40/9e/caf4a5f37785e9f46af886a344fe9ebf9e5b5eb2387321cc8ad9adb7a605/libipld-1.2.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f3a6714a59fded484f68f91ac91201b14db22478cf5fe099b5f41e55a8fa82a",
                "md5": "9a6204e4b1686f53af5cd1258e90838c",
                "sha256": "27c4c55e7823049214c958e858797dca9ab172ff4ce70a90b8ebc6f0506d3fd2"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9a6204e4b1686f53af5cd1258e90838c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 304817,
            "upload_time": "2024-03-11T16:05:43",
            "upload_time_iso_8601": "2024-03-11T16:05:43.184343Z",
            "url": "https://files.pythonhosted.org/packages/6f/3a/6714a59fded484f68f91ac91201b14db22478cf5fe099b5f41e55a8fa82a/libipld-1.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5654ca75090d8f613ef5987cbbbe581d952d06554d8fc7e730affc79af1aecee",
                "md5": "362fc89de1a312ac1e6e136b95a0cc22",
                "sha256": "0a62f50005fa472046c4584a83a595ffcaf7d1fa5e9944313e87c8ec88585f16"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "362fc89de1a312ac1e6e136b95a0cc22",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 676189,
            "upload_time": "2024-03-11T16:06:00",
            "upload_time_iso_8601": "2024-03-11T16:06:00.119738Z",
            "url": "https://files.pythonhosted.org/packages/56/54/ca75090d8f613ef5987cbbbe581d952d06554d8fc7e730affc79af1aecee/libipld-1.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb3ab2d96ec559a95f4e75510843ea78d7af62f799a04087cc8f573a4bbc0171",
                "md5": "656272fbb9927081839377b947a8fa4f",
                "sha256": "f451d0b9daf1c13179fe31271e8ade6616043c80c725c3dba62d80ded52ed568"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "656272fbb9927081839377b947a8fa4f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 671507,
            "upload_time": "2024-03-11T16:07:24",
            "upload_time_iso_8601": "2024-03-11T16:07:24.015678Z",
            "url": "https://files.pythonhosted.org/packages/bb/3a/b2d96ec559a95f4e75510843ea78d7af62f799a04087cc8f573a4bbc0171/libipld-1.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "222ff959ec189986af884f0cfbc5a499b8ce6eb7411d1d95f5a9df5e5c1ca314",
                "md5": "66a82f71ac09b71c05cbe1794a9ce759",
                "sha256": "86092c8c128594780b242285ac02db7062789641a93c09e1046bb2e6bd281fd4"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "66a82f71ac09b71c05cbe1794a9ce759",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 689665,
            "upload_time": "2024-03-11T16:06:40",
            "upload_time_iso_8601": "2024-03-11T16:06:40.222482Z",
            "url": "https://files.pythonhosted.org/packages/22/2f/f959ec189986af884f0cfbc5a499b8ce6eb7411d1d95f5a9df5e5c1ca314/libipld-1.2.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "48bbd6d2dcb603b967b42d074063327831e2c2a851da0f1970eedfc91d9c63ff",
                "md5": "479700a685a1e8c896ca3b377feda63d",
                "sha256": "bb55bd4007e57e6b36fc3871efe3ba11063c5f24a58403bb153343ecdedf26ef"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "479700a685a1e8c896ca3b377feda63d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 851182,
            "upload_time": "2024-03-11T16:06:14",
            "upload_time_iso_8601": "2024-03-11T16:06:14.901462Z",
            "url": "https://files.pythonhosted.org/packages/48/bb/d6d2dcb603b967b42d074063327831e2c2a851da0f1970eedfc91d9c63ff/libipld-1.2.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4541dfb780d02b3336b13c82a43d1a7503477c045adc619dad7b9924598e13ac",
                "md5": "e50040245f148a066c058a1e1ce0bd1f",
                "sha256": "e4fee7f8a21cc01f610742d27b04820a048eebd5c9702fb77b6f2e8a7bb7b8de"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e50040245f148a066c058a1e1ce0bd1f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 841316,
            "upload_time": "2024-03-11T16:07:16",
            "upload_time_iso_8601": "2024-03-11T16:07:16.575461Z",
            "url": "https://files.pythonhosted.org/packages/45/41/dfb780d02b3336b13c82a43d1a7503477c045adc619dad7b9924598e13ac/libipld-1.2.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea77f4f6161d707101eff8cdd44c69e4799698b5197c571a80074a9419f87142",
                "md5": "42eaf1a995891f5c6fbe55e1a7971fc6",
                "sha256": "0901cc1dccab7c1c7fd5f5a81d631b5048e2c93983c42be5bffa5bf1d0e32c5e"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "42eaf1a995891f5c6fbe55e1a7971fc6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 191300,
            "upload_time": "2024-03-11T16:07:39",
            "upload_time_iso_8601": "2024-03-11T16:07:39.378983Z",
            "url": "https://files.pythonhosted.org/packages/ea/77/f4f6161d707101eff8cdd44c69e4799698b5197c571a80074a9419f87142/libipld-1.2.3-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a04381ef8385daff66515c25276926d14ec31af2e04f5cfaf81ae0598ee7f42b",
                "md5": "f9c9806868a8408e91355757a3e84127",
                "sha256": "076230cd577cb2936b47c3ece0455f204a70f2cd79852d4a775ecb0800325cdc"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f9c9806868a8408e91355757a3e84127",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 677843,
            "upload_time": "2024-03-11T16:06:01",
            "upload_time_iso_8601": "2024-03-11T16:06:01.736422Z",
            "url": "https://files.pythonhosted.org/packages/a0/43/81ef8385daff66515c25276926d14ec31af2e04f5cfaf81ae0598ee7f42b/libipld-1.2.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a781e363618acbd6ab478aa7256066a81e507b6edc72f2e00e2547e39e225d96",
                "md5": "79302aef75fdf1c11a04376aaa6ecb66",
                "sha256": "4409dfdf29459155d3006f967ff280ac587d3665e3271d444888394f46188347"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "79302aef75fdf1c11a04376aaa6ecb66",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 691216,
            "upload_time": "2024-03-11T16:06:41",
            "upload_time_iso_8601": "2024-03-11T16:06:41.599464Z",
            "url": "https://files.pythonhosted.org/packages/a7/81/e363618acbd6ab478aa7256066a81e507b6edc72f2e00e2547e39e225d96/libipld-1.2.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "816911aaaab8244ced3b5f8cc8484add7aeddffd84b1293a769cde2f4844b39c",
                "md5": "8bf304275ea19ec1140dc4bb38c49876",
                "sha256": "554cb049853527698f5129fcb340815ec8cdc6ec8572344d3d61317bf3c81134"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8bf304275ea19ec1140dc4bb38c49876",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 852775,
            "upload_time": "2024-03-11T16:06:16",
            "upload_time_iso_8601": "2024-03-11T16:06:16.293353Z",
            "url": "https://files.pythonhosted.org/packages/81/69/11aaaab8244ced3b5f8cc8484add7aeddffd84b1293a769cde2f4844b39c/libipld-1.2.3-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4884eaec6175ece1c2cf1be5b1258884f092ed7d85ebd0d492dbace8de741b58",
                "md5": "8e7412111c9faaa84ac0bfed9d5bc815",
                "sha256": "2471d4484b59ca2c1107baff18c96363b37b783bd146dce849bc99dbcaf8d988"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8e7412111c9faaa84ac0bfed9d5bc815",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 842578,
            "upload_time": "2024-03-11T16:07:18",
            "upload_time_iso_8601": "2024-03-11T16:07:18.027470Z",
            "url": "https://files.pythonhosted.org/packages/48/84/eaec6175ece1c2cf1be5b1258884f092ed7d85ebd0d492dbace8de741b58/libipld-1.2.3-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e394cfa232c656bc1f5028e8796af1aa876c6f42d8a7cb2767acb94c03ea89db",
                "md5": "ccc19f0ad58e772cee4b4112836397f5",
                "sha256": "5f56eea2c73b2bd53af42aa38c727efa348fb60493d9707d7d2d44cc09607f4c"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ccc19f0ad58e772cee4b4112836397f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 316952,
            "upload_time": "2024-03-11T16:05:48",
            "upload_time_iso_8601": "2024-03-11T16:05:48.294861Z",
            "url": "https://files.pythonhosted.org/packages/e3/94/cfa232c656bc1f5028e8796af1aa876c6f42d8a7cb2767acb94c03ea89db/libipld-1.2.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5efd83c8fe08b7baa693a07a42cc9602a904df25e87c6ba771c6d581d7a0231",
                "md5": "96105d4f1b031f92cc85a902a25db2df",
                "sha256": "d5d996646e8ee393ec646fa273a010361596d4974e62f5e88ad35c7e5b6e59aa"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "96105d4f1b031f92cc85a902a25db2df",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 304795,
            "upload_time": "2024-03-11T16:05:44",
            "upload_time_iso_8601": "2024-03-11T16:05:44.566808Z",
            "url": "https://files.pythonhosted.org/packages/c5/ef/d83c8fe08b7baa693a07a42cc9602a904df25e87c6ba771c6d581d7a0231/libipld-1.2.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a8bf28068b267d25f33c0defccffca8c2cce76a1efe48264a4416d3e028c08b",
                "md5": "8cc6f6d431fd2db073ae07c0874bf89c",
                "sha256": "0a0fc14fa7d75e3191eccfcde229bd1e44d06d588e0121f6ea7c6e28ca979e3e"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8cc6f6d431fd2db073ae07c0874bf89c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 676189,
            "upload_time": "2024-03-11T16:06:03",
            "upload_time_iso_8601": "2024-03-11T16:06:03.674689Z",
            "url": "https://files.pythonhosted.org/packages/6a/8b/f28068b267d25f33c0defccffca8c2cce76a1efe48264a4416d3e028c08b/libipld-1.2.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4924f08e0377962a26469ce6bfdd941bf0ef9fd221078ae18f73e3312d3ef725",
                "md5": "9a2af830b2393fd7f8c65f9a974acdf3",
                "sha256": "60bf92a77af67a6de1beddd8fb9814a696526831643979d56e3c2c054bfabf6b"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "9a2af830b2393fd7f8c65f9a974acdf3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 689733,
            "upload_time": "2024-03-11T16:06:43",
            "upload_time_iso_8601": "2024-03-11T16:06:43.163644Z",
            "url": "https://files.pythonhosted.org/packages/49/24/f08e0377962a26469ce6bfdd941bf0ef9fd221078ae18f73e3312d3ef725/libipld-1.2.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "942d23028805d81967b858e7f2d7cff915ce5515c25be4b964d16baa76dd42c2",
                "md5": "730e212f439a2d58da0f24c40106c703",
                "sha256": "b86dc7d26f88e1db905e1daccade1787e5b9561c02040c820b3f3319c6434e44"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "730e212f439a2d58da0f24c40106c703",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 851158,
            "upload_time": "2024-03-11T16:06:17",
            "upload_time_iso_8601": "2024-03-11T16:06:17.718657Z",
            "url": "https://files.pythonhosted.org/packages/94/2d/23028805d81967b858e7f2d7cff915ce5515c25be4b964d16baa76dd42c2/libipld-1.2.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6e98b6204096457554fa9774576835d14fbb4bde78d2d5cd1518aba239dd5d3",
                "md5": "81151765ddea5cd18c438424b4b5300f",
                "sha256": "79e07a1a2bfec60394e435216386c3440a8b12c6fa846fbf7431b915fb2d570b"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "81151765ddea5cd18c438424b4b5300f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 841358,
            "upload_time": "2024-03-11T16:07:20",
            "upload_time_iso_8601": "2024-03-11T16:07:20.147155Z",
            "url": "https://files.pythonhosted.org/packages/d6/e9/8b6204096457554fa9774576835d14fbb4bde78d2d5cd1518aba239dd5d3/libipld-1.2.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c05cfa4925f588171662db1e919a28c044ead16a445b47b17d8210b9a8e4b87a",
                "md5": "014799b0dcc44493068c25dba8849a1d",
                "sha256": "55c71ea4d210c1c178d20a9998ec069ad8efec4db86340c00e13e4c00795388d"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "014799b0dcc44493068c25dba8849a1d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 316938,
            "upload_time": "2024-03-11T16:05:49",
            "upload_time_iso_8601": "2024-03-11T16:05:49.683464Z",
            "url": "https://files.pythonhosted.org/packages/c0/5c/fa4925f588171662db1e919a28c044ead16a445b47b17d8210b9a8e4b87a/libipld-1.2.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "acec12d2f9d31bc70a21c7f0c7b030c7d7db55ac0a0155ab4e8b32120f3c277e",
                "md5": "0e55081659171d356d5370bc1c1ab16c",
                "sha256": "75a79178614b3f0920b2824c4b27a71aee19f6b6cc929ec740ba491482cfd259"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0e55081659171d356d5370bc1c1ab16c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 304815,
            "upload_time": "2024-03-11T16:05:45",
            "upload_time_iso_8601": "2024-03-11T16:05:45.746237Z",
            "url": "https://files.pythonhosted.org/packages/ac/ec/12d2f9d31bc70a21c7f0c7b030c7d7db55ac0a0155ab4e8b32120f3c277e/libipld-1.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9f6ca946e7c0bb1724e0cf5132582fa6fb7948bf6b92ad8b0d61fcb2d503252",
                "md5": "279eb3b133e9d0a5d53ec4c239d20aa3",
                "sha256": "755f30c893568df168847df8f7e12d85187f31b01c7ca789d27c501c13f5f58e"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "279eb3b133e9d0a5d53ec4c239d20aa3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 676216,
            "upload_time": "2024-03-11T16:06:04",
            "upload_time_iso_8601": "2024-03-11T16:06:04.983135Z",
            "url": "https://files.pythonhosted.org/packages/d9/f6/ca946e7c0bb1724e0cf5132582fa6fb7948bf6b92ad8b0d61fcb2d503252/libipld-1.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "800eabe6006b0fd922aece96a13fa288503cfc6cddd6bbc113e729c1a98b0c4d",
                "md5": "5d747ac6d139552fa830e8e0c2f1d945",
                "sha256": "4d6ca7d76311a4e18e5ca293219f0a8838a8e903b579e304168296ae2957cfe5"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5d747ac6d139552fa830e8e0c2f1d945",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 671500,
            "upload_time": "2024-03-11T16:07:25",
            "upload_time_iso_8601": "2024-03-11T16:07:25.628415Z",
            "url": "https://files.pythonhosted.org/packages/80/0e/abe6006b0fd922aece96a13fa288503cfc6cddd6bbc113e729c1a98b0c4d/libipld-1.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf58b63ebbead70ad4f76a9e8f65c7d1f8dfb5138aa4ae9b7f6b1d7249fcf010",
                "md5": "5b598d306809773abb6585e759b9a195",
                "sha256": "be25400896f55cd39257d1d1a2e294a8b8f11cf63a02920450979780ab7ef4b6"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5b598d306809773abb6585e759b9a195",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 689659,
            "upload_time": "2024-03-11T16:06:44",
            "upload_time_iso_8601": "2024-03-11T16:06:44.568753Z",
            "url": "https://files.pythonhosted.org/packages/cf/58/b63ebbead70ad4f76a9e8f65c7d1f8dfb5138aa4ae9b7f6b1d7249fcf010/libipld-1.2.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e63afb319f609af69a83c56f2023c07d10cf857040df7371c05b4d5c9f83bf61",
                "md5": "d9a63f796a23eb72d4e9696187b4e081",
                "sha256": "b09efeb083fdec62e1d3ac6de60a8f0852e576fca0f7cbc43a89a69e19284327"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d9a63f796a23eb72d4e9696187b4e081",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 851169,
            "upload_time": "2024-03-11T16:06:19",
            "upload_time_iso_8601": "2024-03-11T16:06:19.704782Z",
            "url": "https://files.pythonhosted.org/packages/e6/3a/fb319f609af69a83c56f2023c07d10cf857040df7371c05b4d5c9f83bf61/libipld-1.2.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4886a07260950d2f9ae0c5eafaca96316a97efdadde2a0aece69da4aeaa32d5",
                "md5": "7e022be014b2b88cbf1bed96aa20628f",
                "sha256": "a2afe4582952dc31717032ac6ae807b390627a7a74a3cd0345cd95ff051ed09a"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e022be014b2b88cbf1bed96aa20628f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 841363,
            "upload_time": "2024-03-11T16:07:22",
            "upload_time_iso_8601": "2024-03-11T16:07:22.419962Z",
            "url": "https://files.pythonhosted.org/packages/d4/88/6a07260950d2f9ae0c5eafaca96316a97efdadde2a0aece69da4aeaa32d5/libipld-1.2.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51685a52b14dba017548fb72ddd27c9adc931da77eae2aedc610e210acb41da2",
                "md5": "f580eae00f19da9d49bc25ca9e29bfa2",
                "sha256": "d3600fe235261ee31be8c8d74edff24c641a157f54ed1818b408486e69c05892"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f580eae00f19da9d49bc25ca9e29bfa2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 191293,
            "upload_time": "2024-03-11T16:07:41",
            "upload_time_iso_8601": "2024-03-11T16:07:41.272352Z",
            "url": "https://files.pythonhosted.org/packages/51/68/5a52b14dba017548fb72ddd27c9adc931da77eae2aedc610e210acb41da2/libipld-1.2.3-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc444e74c25618f911468ce7ec04d090f3d33fc6b12ce400bdacbf87eba1954c",
                "md5": "5dbe185b9a8433e20ce581a82c67d750",
                "sha256": "bc4abb3084606d35f1b7be6750301ab1404f4f4e815507ae422a3f1e9d3399ed"
            },
            "downloads": -1,
            "filename": "libipld-1.2.3.tar.gz",
            "has_sig": false,
            "md5_digest": "5dbe185b9a8433e20ce581a82c67d750",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 4325341,
            "upload_time": "2024-03-11T16:09:34",
            "upload_time_iso_8601": "2024-03-11T16:09:34.316256Z",
            "url": "https://files.pythonhosted.org/packages/fc/44/4e74c25618f911468ce7ec04d090f3d33fc6b12ce400bdacbf87eba1954c/libipld-1.2.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-11 16:09:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "MarshalX",
    "github_project": "python-libipld",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "libipld"
}
        
Elapsed time: 0.20409s