libipld


Namelibipld JSON
Version 3.0.0 PyPI version JSON
download
home_pageNone
SummaryPython binding to the Rust IPLD library
upload_time2024-10-24 12:01:57
maintainerNone
docs_urlNone
authorIlya (Marshal) <ilya@marshal.dev>
requires_python>=3.8
licenseMIT
keywords library lib ipld cid multibase multihash dag cbor json pb dag-cbor dag-json
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

# 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}
print(libipld.encode_cid(b'\x01q\x12 \xb6\x81\x1a\x1d\x7f\x8c\x17\x91\xdam\x1bO\x13m\xc0\xe2&y\xea\xfe\xaaX\xd6M~/\xaa\xd5\x89\x0e\x9d\x9c'))
# Output: bafyreifwqenb274mc6i5u3i3j4jw3qhcez46v7vkldle27rpvlkysdu5tq

# 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 | bytes) -> dict`). Accepts CID stringified form or CID raw byte form.
- Encode CID (`encode_cid(bytes) -> str`). Encodes CID raw byte form to stringified form.
- Decode Multibase (`decode_multibase(str) -> tuple[str, bytes]`). Returns base and data.
- Encode Multibase (`encode_multibase(str, bytes) -> str`). Accepts base and data.
- Decode CAR (`decode_car(bytes) -> tuple[dict, dict[bytes, dict]]`). Returns a header and blocks mapped by CID. CIDs in raw byte form.

Note: a stub file will be provided in the future.

## Requirements

- Python 3.8 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": null,
    "name": "libipld",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "library, lib, ipld, cid, multibase, multihash, dag, cbor, json, pb, dag-cbor, dag-json",
    "author": "Ilya (Marshal) <ilya@marshal.dev>",
    "author_email": "\"Ilya (Marshal)\" <ilya@marshal.dev>",
    "download_url": "https://files.pythonhosted.org/packages/7c/19/ed20af9e7807c5648ad9db97bf638da4a4face0538af7ae697bc2513407d/libipld-3.0.0.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# 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}\nprint(libipld.encode_cid(b'\\x01q\\x12 \\xb6\\x81\\x1a\\x1d\\x7f\\x8c\\x17\\x91\\xdam\\x1bO\\x13m\\xc0\\xe2&y\\xea\\xfe\\xaaX\\xd6M~/\\xaa\\xd5\\x89\\x0e\\x9d\\x9c'))\n# Output: bafyreifwqenb274mc6i5u3i3j4jw3qhcez46v7vkldle27rpvlkysdu5tq\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 | bytes) -> dict`). Accepts CID stringified form or CID raw byte form.\n- Encode CID (`encode_cid(bytes) -> str`). Encodes CID raw byte form to stringified form.\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- Decode CAR (`decode_car(bytes) -> tuple[dict, dict[bytes, dict]]`). Returns a header and blocks mapped by CID. CIDs in raw byte form.\n\nNote: a stub file will be provided in the future.\n\n## Requirements\n\n- Python 3.8 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": "3.0.0",
    "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"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "107fe31751e6c5abed10ca170bff59dc27624696b3b6a8cc7c065da335681983",
                "md5": "d663e26ae02ddc46eb8c6760e2c36934",
                "sha256": "ee6954887c42e2605f87cc89a2b37a3229b7bff7ca56be74d6b1383bf2d74eaa"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d663e26ae02ddc46eb8c6760e2c36934",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 321972,
            "upload_time": "2024-10-24T11:59:27",
            "upload_time_iso_8601": "2024-10-24T11:59:27.349263Z",
            "url": "https://files.pythonhosted.org/packages/10/7f/e31751e6c5abed10ca170bff59dc27624696b3b6a8cc7c065da335681983/libipld-3.0.0-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d1076f58c36ecc4876934e7ce7ea70fe65b43f6b0d033077bd1bd78d7ec36d04",
                "md5": "29ba2dc75675d10fe6f96eba8140bcdb",
                "sha256": "8ac7e5cf9a7629de511f93e833fd7e641a589c24a94df140dc8807b7b2097ed4"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "29ba2dc75675d10fe6f96eba8140bcdb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 292128,
            "upload_time": "2024-10-24T11:59:29",
            "upload_time_iso_8601": "2024-10-24T11:59:29.113953Z",
            "url": "https://files.pythonhosted.org/packages/d1/07/6f58c36ecc4876934e7ce7ea70fe65b43f6b0d033077bd1bd78d7ec36d04/libipld-3.0.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf3560b450bad874cf1d21bcc16ad3dd28e31443a149971b201f15782d4677c0",
                "md5": "ff7253886a4a6cbe784f8f6e65e4f2af",
                "sha256": "2870e5cb2aca7dcd6d78503a16151c71c5cb88a2c77a4c9db5d009ed81f4586b"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ff7253886a4a6cbe784f8f6e65e4f2af",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 666380,
            "upload_time": "2024-10-24T11:59:31",
            "upload_time_iso_8601": "2024-10-24T11:59:31.098022Z",
            "url": "https://files.pythonhosted.org/packages/cf/35/60b450bad874cf1d21bcc16ad3dd28e31443a149971b201f15782d4677c0/libipld-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b7a13424b6e181f06c81ca18d6f52d6853be11cd6572d39bf37a3786a971536",
                "md5": "7142a1c547835fbda00cd02ac9a14394",
                "sha256": "b65bde47d6428be4dc88c805bce80dd457916b1859dfe1c5911102bdd33006d4"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7142a1c547835fbda00cd02ac9a14394",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 673531,
            "upload_time": "2024-10-24T11:59:33",
            "upload_time_iso_8601": "2024-10-24T11:59:33.016539Z",
            "url": "https://files.pythonhosted.org/packages/9b/7a/13424b6e181f06c81ca18d6f52d6853be11cd6572d39bf37a3786a971536/libipld-3.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f143fb824113fe7b34dc5ef780887ac89f1527e67d947074889833ac2fcf7d6",
                "md5": "df36825f6ead27da0b351ebca86dba0a",
                "sha256": "fe8cc29733aaf3422671c1c12946ee5d36ca6bdb66e92ee67ac7dfea50d5f5b9"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "df36825f6ead27da0b351ebca86dba0a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 673656,
            "upload_time": "2024-10-24T11:59:34",
            "upload_time_iso_8601": "2024-10-24T11:59:34.752418Z",
            "url": "https://files.pythonhosted.org/packages/8f/14/3fb824113fe7b34dc5ef780887ac89f1527e67d947074889833ac2fcf7d6/libipld-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dbc75b31353c1f1672b16c8c6a1fbc7b9850e14b58360099db7864e7e27e221d",
                "md5": "fa7c1e724ee0ba6f76170624e052db1f",
                "sha256": "3c14754e6c85c8050d6febcde01c43254ac207946150839cc291ee1ab3fe468a"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fa7c1e724ee0ba6f76170624e052db1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 836325,
            "upload_time": "2024-10-24T11:59:36",
            "upload_time_iso_8601": "2024-10-24T11:59:36.199277Z",
            "url": "https://files.pythonhosted.org/packages/db/c7/5b31353c1f1672b16c8c6a1fbc7b9850e14b58360099db7864e7e27e221d/libipld-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ca413d124b588c99e41350fa2030b4a436d3cc9038821a1de017e7977987516c",
                "md5": "b443f8010e76a47fb6d80580061b2594",
                "sha256": "c15bfb4f675e59e720387dd79c8082f645526247577be78c423f84e2d3de87b3"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b443f8010e76a47fb6d80580061b2594",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 671905,
            "upload_time": "2024-10-24T11:59:37",
            "upload_time_iso_8601": "2024-10-24T11:59:37.934235Z",
            "url": "https://files.pythonhosted.org/packages/ca/41/3d124b588c99e41350fa2030b4a436d3cc9038821a1de017e7977987516c/libipld-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a50265de2e667d2615f5b0cb52d89c356b9458d10a3fd1e7811ce47618726d5b",
                "md5": "1696eb1e404d61be843528bca984205c",
                "sha256": "6abb1848f1252687003130e8886367b0859413a40e9a950846c1377172c43048"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1696eb1e404d61be843528bca984205c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 678732,
            "upload_time": "2024-10-24T11:59:39",
            "upload_time_iso_8601": "2024-10-24T11:59:39.600205Z",
            "url": "https://files.pythonhosted.org/packages/a5/02/65de2e667d2615f5b0cb52d89c356b9458d10a3fd1e7811ce47618726d5b/libipld-3.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c59c1a5088828c23c55ba4afdb621e906a864368056de66a419beafe16ce1f4d",
                "md5": "e339f013f5f307077758481f1ef50e82",
                "sha256": "cbfed5776d974f211ca6b58e2b55b2388e6fd4fda0ace7d629e90244780c9311"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e339f013f5f307077758481f1ef50e82",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 839949,
            "upload_time": "2024-10-24T11:59:41",
            "upload_time_iso_8601": "2024-10-24T11:59:41.376905Z",
            "url": "https://files.pythonhosted.org/packages/c5/9c/1a5088828c23c55ba4afdb621e906a864368056de66a419beafe16ce1f4d/libipld-3.0.0-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2fe1398dbc58d4e49ce05d759df9ce6fd1dcd31fcf9f861965d4209d8da856a1",
                "md5": "dfe2750bd3f143d18a8846123ca6d332",
                "sha256": "6ce57265cebc90521001d478f1a82478fe3a0af615f6978c8d6656220a10b475"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfe2750bd3f143d18a8846123ca6d332",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 836057,
            "upload_time": "2024-10-24T11:59:43",
            "upload_time_iso_8601": "2024-10-24T11:59:43.000298Z",
            "url": "https://files.pythonhosted.org/packages/2f/e1/398dbc58d4e49ce05d759df9ce6fd1dcd31fcf9f861965d4209d8da856a1/libipld-3.0.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "66774ee6a890257ee9a84e3062c0246ef3778ac8ef91aa32c0e6e5cfed3a9422",
                "md5": "558ceda87e518a9052edc4d9a5e3096c",
                "sha256": "a3ae61424a80d382ae487dd09f4e0507b7af2d040191cfef7495af633b354ef3"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "558ceda87e518a9052edc4d9a5e3096c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 175850,
            "upload_time": "2024-10-24T11:59:44",
            "upload_time_iso_8601": "2024-10-24T11:59:44.440931Z",
            "url": "https://files.pythonhosted.org/packages/66/77/4ee6a890257ee9a84e3062c0246ef3778ac8ef91aa32c0e6e5cfed3a9422/libipld-3.0.0-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4df209fdcc18483ba3bca5d42acd320f0edd47c03e057518284694c863917e75",
                "md5": "323034d55258b41d3470740a5bfb26b4",
                "sha256": "3f9a0a4618a97cfc8607642b2f07bf8d066d3dd61686b7d7696a3e597adcec4a"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "323034d55258b41d3470740a5bfb26b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 192940,
            "upload_time": "2024-10-24T11:59:45",
            "upload_time_iso_8601": "2024-10-24T11:59:45.691045Z",
            "url": "https://files.pythonhosted.org/packages/4d/f2/09fdcc18483ba3bca5d42acd320f0edd47c03e057518284694c863917e75/libipld-3.0.0-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b85231b700b599cc1a1448a9c5341c7db4276498d131200fe489daee6c04096",
                "md5": "7843c92d6a36e7923e1b2590c3c504af",
                "sha256": "8b37a662fe10a2a1ce3188a9959d2cb739dae15d87692a54c8c9a610718fbaab"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7843c92d6a36e7923e1b2590c3c504af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 318666,
            "upload_time": "2024-10-24T11:59:46",
            "upload_time_iso_8601": "2024-10-24T11:59:46.855156Z",
            "url": "https://files.pythonhosted.org/packages/8b/85/231b700b599cc1a1448a9c5341c7db4276498d131200fe489daee6c04096/libipld-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ad064dcb43da7dcb00fe3c137f0d1816a7c0ceea56e5f7e9b53d9c9f61e1060",
                "md5": "77b81c879520301470dafb34f801494d",
                "sha256": "625011e93ffcf7c35049b2bc6ca85c6706c409f0c65887b14168ca52ca10d89e"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "77b81c879520301470dafb34f801494d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 289049,
            "upload_time": "2024-10-24T11:59:48",
            "upload_time_iso_8601": "2024-10-24T11:59:48.312905Z",
            "url": "https://files.pythonhosted.org/packages/4a/d0/64dcb43da7dcb00fe3c137f0d1816a7c0ceea56e5f7e9b53d9c9f61e1060/libipld-3.0.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f8aa685d182012c6071c865eb6e915b0b3662e1aeb633415458d72920a66000",
                "md5": "6413b5177d984180cd8478e90f4d3cf1",
                "sha256": "c207df0bfe4305e33daa1a334f5ea2dff79c31ea30caec91f92cc27154e7d44c"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6413b5177d984180cd8478e90f4d3cf1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 666256,
            "upload_time": "2024-10-24T11:59:49",
            "upload_time_iso_8601": "2024-10-24T11:59:49.486710Z",
            "url": "https://files.pythonhosted.org/packages/8f/8a/a685d182012c6071c865eb6e915b0b3662e1aeb633415458d72920a66000/libipld-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee7e07816528997c8c09947b0ff123fc784c4f363e6510855c288efde1108aeb",
                "md5": "13b4a92d84910830914f08cb46a39f91",
                "sha256": "dd054a194ee9035f5ed1cd29f7ace8d70e34a0cae7d3a7d0309e4cd40058aace"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "13b4a92d84910830914f08cb46a39f91",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 673489,
            "upload_time": "2024-10-24T11:59:50",
            "upload_time_iso_8601": "2024-10-24T11:59:50.735308Z",
            "url": "https://files.pythonhosted.org/packages/ee/7e/07816528997c8c09947b0ff123fc784c4f363e6510855c288efde1108aeb/libipld-3.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a29b15bf7af9cd01d7a1204ea6483b5fd463847c6aa5b482480074efa1df03c",
                "md5": "5987aa67b9a13f1627f2431bcd2640d0",
                "sha256": "f1be9bf059ee59c4291211d6f0a13cd528595a92029bcb7806fb44c62c9f6bc3"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5987aa67b9a13f1627f2431bcd2640d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 673524,
            "upload_time": "2024-10-24T11:59:52",
            "upload_time_iso_8601": "2024-10-24T11:59:52.485206Z",
            "url": "https://files.pythonhosted.org/packages/3a/29/b15bf7af9cd01d7a1204ea6483b5fd463847c6aa5b482480074efa1df03c/libipld-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95158891732ac6b10234018ccb51d3dbb096e92ea396b2947f43a2ee0184c5b9",
                "md5": "fed49d298c9072b3aa2321a7d8a12cb6",
                "sha256": "6f0ac01be77039b609f1d795e7f290b2801aed5e36a6956a22c68a8f91e1a2e1"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "fed49d298c9072b3aa2321a7d8a12cb6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 836569,
            "upload_time": "2024-10-24T11:59:54",
            "upload_time_iso_8601": "2024-10-24T11:59:54.177693Z",
            "url": "https://files.pythonhosted.org/packages/95/15/8891732ac6b10234018ccb51d3dbb096e92ea396b2947f43a2ee0184c5b9/libipld-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7721fa5690f0caa1af76c706ab8b612f8b5a48328346c0e749128d5cc3583c68",
                "md5": "342cebaf09ebac884e76c17512d229cf",
                "sha256": "4619b6a16387131635cc11941c50ffe472cfae6dc444b93b8c0789bc43e4183b"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "342cebaf09ebac884e76c17512d229cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 671700,
            "upload_time": "2024-10-24T11:59:55",
            "upload_time_iso_8601": "2024-10-24T11:59:55.724683Z",
            "url": "https://files.pythonhosted.org/packages/77/21/fa5690f0caa1af76c706ab8b612f8b5a48328346c0e749128d5cc3583c68/libipld-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d5cac3a4817b87a14cf8af26d66516a848af2c8ea0cd6fc8cae3f67f76a92168",
                "md5": "20e9daa84f38d2e7cf71f58ce6db8379",
                "sha256": "7783bbcece3dd7e0bb7e384c5bdfd633ab91208cccdc9d2f70909193d9a533cf"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "20e9daa84f38d2e7cf71f58ce6db8379",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 678548,
            "upload_time": "2024-10-24T11:59:56",
            "upload_time_iso_8601": "2024-10-24T11:59:56.946092Z",
            "url": "https://files.pythonhosted.org/packages/d5/ca/c3a4817b87a14cf8af26d66516a848af2c8ea0cd6fc8cae3f67f76a92168/libipld-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d98416077472d25af334d3d953eca8e3bfd1f46d8db7ce790e0ab5447824cecb",
                "md5": "e911a71bb6d6fffe1a9eaa09548e9423",
                "sha256": "9626c341302df6683a724e23c2b07938d4905df4954ca5756b5b9ddd66e585d9"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e911a71bb6d6fffe1a9eaa09548e9423",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 839682,
            "upload_time": "2024-10-24T11:59:58",
            "upload_time_iso_8601": "2024-10-24T11:59:58.665170Z",
            "url": "https://files.pythonhosted.org/packages/d9/84/16077472d25af334d3d953eca8e3bfd1f46d8db7ce790e0ab5447824cecb/libipld-3.0.0-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be3293fccf0074bd802ceea7c0b340bb291454a06382e2549f1677cdc23ea150",
                "md5": "f1a802f5a5d1bdb682bed346f4464c2d",
                "sha256": "4cb29bfec198c44dc3e1fc1de7659ecbf5be5110248ae98cd2ea1c98dbbbaaf2"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1a802f5a5d1bdb682bed346f4464c2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 835889,
            "upload_time": "2024-10-24T12:00:00",
            "upload_time_iso_8601": "2024-10-24T12:00:00.281207Z",
            "url": "https://files.pythonhosted.org/packages/be/32/93fccf0074bd802ceea7c0b340bb291454a06382e2549f1677cdc23ea150/libipld-3.0.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8b1f3ddcba5296c80f86f6f719b9e2a9f3daf5b9de2c892daa2ee98398395ca",
                "md5": "aabe9c622d175822745d4aeaa2028284",
                "sha256": "56a2c7e19327948bd5d64db2b333b22bde27de2390877606cad46c0a4eb44e59"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "aabe9c622d175822745d4aeaa2028284",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 175746,
            "upload_time": "2024-10-24T12:00:01",
            "upload_time_iso_8601": "2024-10-24T12:00:01.736916Z",
            "url": "https://files.pythonhosted.org/packages/e8/b1/f3ddcba5296c80f86f6f719b9e2a9f3daf5b9de2c892daa2ee98398395ca/libipld-3.0.0-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f259edbb8e50a42514e2cf96560a479f80f7a07251d95370c0f7149765ed2f6",
                "md5": "ca21292d8a229dac816ee7cfc3864f6a",
                "sha256": "fc8deeb7034231bf1fd2362ca6b607921b5d8f36c37751fcee180550f5abc2ba"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ca21292d8a229dac816ee7cfc3864f6a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 196336,
            "upload_time": "2024-10-24T12:00:02",
            "upload_time_iso_8601": "2024-10-24T12:00:02.884899Z",
            "url": "https://files.pythonhosted.org/packages/5f/25/9edbb8e50a42514e2cf96560a479f80f7a07251d95370c0f7149765ed2f6/libipld-3.0.0-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49c7ab65d0693ac8bd7e4f4dccfeedd2cf189f67e2e7bd3ce81a92cf3bb9502f",
                "md5": "aba1d774be6d94e89204ab59e62490bb",
                "sha256": "05245f562c3487cf7193d167e5819583c2a3f127f14ab77fbbc1875e43cd6cd1"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp311-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "aba1d774be6d94e89204ab59e62490bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 170084,
            "upload_time": "2024-10-24T12:00:03",
            "upload_time_iso_8601": "2024-10-24T12:00:03.984469Z",
            "url": "https://files.pythonhosted.org/packages/49/c7/ab65d0693ac8bd7e4f4dccfeedd2cf189f67e2e7bd3ce81a92cf3bb9502f/libipld-3.0.0-cp311-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a9f693ae7ba40bb437ac6a1dcc1e869e20c4117ca6c34ecc13a5d65b41d01629",
                "md5": "75d7564a43c8a7f744393297d80f3c74",
                "sha256": "c8eaf541962efae3dc5897500c022475d83ca819309283a2261d2fe7f6688698"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75d7564a43c8a7f744393297d80f3c74",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 320772,
            "upload_time": "2024-10-24T12:00:05",
            "upload_time_iso_8601": "2024-10-24T12:00:05.836077Z",
            "url": "https://files.pythonhosted.org/packages/a9/f6/93ae7ba40bb437ac6a1dcc1e869e20c4117ca6c34ecc13a5d65b41d01629/libipld-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1e39c72197d83032cd9f50d0fdda7f86942f17c9b38b8e3e5b70659baf9dd7b1",
                "md5": "be03c22f038e85ccdf91e3650d0980fb",
                "sha256": "d3cd050d93da3760abaf03adfdf40adca75ae42b02b8fa25d5d1e12e922ecd91"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "be03c22f038e85ccdf91e3650d0980fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 290139,
            "upload_time": "2024-10-24T12:00:07",
            "upload_time_iso_8601": "2024-10-24T12:00:07.458434Z",
            "url": "https://files.pythonhosted.org/packages/1e/39/c72197d83032cd9f50d0fdda7f86942f17c9b38b8e3e5b70659baf9dd7b1/libipld-3.0.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71c835d66d53415fe47a79123584fd087a1e29466a3f55de06e8bd30f6669820",
                "md5": "e2066c9bcfde59f33ca7d1a682b3b8f3",
                "sha256": "c3813cc177559e4c59bdd2faae9d4bcacef8ee4e3db618ad592b67627925a525"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e2066c9bcfde59f33ca7d1a682b3b8f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 666306,
            "upload_time": "2024-10-24T12:00:09",
            "upload_time_iso_8601": "2024-10-24T12:00:09.850576Z",
            "url": "https://files.pythonhosted.org/packages/71/c8/35d66d53415fe47a79123584fd087a1e29466a3f55de06e8bd30f6669820/libipld-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c2f41904e75c7a3d754cf8917002cb7a46770e33119ca9b2dc37039faeb56ed1",
                "md5": "a984ad6fd1fe51f5b04bbab83a2d26ed",
                "sha256": "0ae8167a4bb3f8b3adb36e364477796ced1ef843fb066ddccb520f51ce285d9d"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "a984ad6fd1fe51f5b04bbab83a2d26ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 673601,
            "upload_time": "2024-10-24T12:00:11",
            "upload_time_iso_8601": "2024-10-24T12:00:11.492179Z",
            "url": "https://files.pythonhosted.org/packages/c2/f4/1904e75c7a3d754cf8917002cb7a46770e33119ca9b2dc37039faeb56ed1/libipld-3.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee53f603537904e52ef4e3633a6505c9d08a0b2e9693b7a89af49a9496cae3d1",
                "md5": "6efe877e4fac5bd2da5a6d727793a7f9",
                "sha256": "f7757933386e7650bc9e7ae5ce13d7707655e7c1d0741fb1b0768586ff8832d8"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6efe877e4fac5bd2da5a6d727793a7f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 674117,
            "upload_time": "2024-10-24T12:00:13",
            "upload_time_iso_8601": "2024-10-24T12:00:13.112540Z",
            "url": "https://files.pythonhosted.org/packages/ee/53/f603537904e52ef4e3633a6505c9d08a0b2e9693b7a89af49a9496cae3d1/libipld-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f007e2a424a1d111c9fac800154f6d2b9922703955e0c1a0c1e74165b6740a71",
                "md5": "4c652c2dadf753ee663393b02441e10b",
                "sha256": "11ea6bccf67773e9cd0cedd2b6040e107664f697ad3a63b1e8e40c5f2b006aa4"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4c652c2dadf753ee663393b02441e10b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 829791,
            "upload_time": "2024-10-24T12:00:14",
            "upload_time_iso_8601": "2024-10-24T12:00:14.415989Z",
            "url": "https://files.pythonhosted.org/packages/f0/07/e2a424a1d111c9fac800154f6d2b9922703955e0c1a0c1e74165b6740a71/libipld-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf57cc5288ef8fd09f74b2dd5f61f3ee7b1cf4f86c9781b18e714cc516586796",
                "md5": "9f133850696f501d46c677f25ee0a076",
                "sha256": "3b68624365600dca3519563e997f303bbada3284a9c3b160b2199c6650c440f9"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f133850696f501d46c677f25ee0a076",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 672552,
            "upload_time": "2024-10-24T12:00:15",
            "upload_time_iso_8601": "2024-10-24T12:00:15.653297Z",
            "url": "https://files.pythonhosted.org/packages/cf/57/cc5288ef8fd09f74b2dd5f61f3ee7b1cf4f86c9781b18e714cc516586796/libipld-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a621b5558dc7b8e35946b2869df54c5610a9898a2d6b4eb467d67b91dc219ef",
                "md5": "8fc16d5bb46313a7e78722c006ce9052",
                "sha256": "6f56287fea416f813e2e69ab569e23fcb91b0b91a616132bfc83a9935cf10898"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "8fc16d5bb46313a7e78722c006ce9052",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 679945,
            "upload_time": "2024-10-24T12:00:17",
            "upload_time_iso_8601": "2024-10-24T12:00:17.331446Z",
            "url": "https://files.pythonhosted.org/packages/3a/62/1b5558dc7b8e35946b2869df54c5610a9898a2d6b4eb467d67b91dc219ef/libipld-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f493945adbc39ac684fc1a352a50a07b08d11f6ac18756daa1efe8f0a63cefc2",
                "md5": "25e7c418850a49d99ca2812ad6dca76d",
                "sha256": "2d4294f536cd2bbb2f5a793e1a344c6de5f538ddb93e288ba5a7cb632d996648"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "25e7c418850a49d99ca2812ad6dca76d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 839742,
            "upload_time": "2024-10-24T12:00:18",
            "upload_time_iso_8601": "2024-10-24T12:00:18.579362Z",
            "url": "https://files.pythonhosted.org/packages/f4/93/945adbc39ac684fc1a352a50a07b08d11f6ac18756daa1efe8f0a63cefc2/libipld-3.0.0-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4427623234c5d21c18735c5533da4397730ff4629a2516e852a7453346a4c40",
                "md5": "38e91d2db1461989de3f9807823e973c",
                "sha256": "e942a0ad90414cdb28e8753123700b836082ce33f2e5e5c75aa46f2ec29ded3c"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38e91d2db1461989de3f9807823e973c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 836192,
            "upload_time": "2024-10-24T12:00:19",
            "upload_time_iso_8601": "2024-10-24T12:00:19.914595Z",
            "url": "https://files.pythonhosted.org/packages/b4/42/7623234c5d21c18735c5533da4397730ff4629a2516e852a7453346a4c40/libipld-3.0.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4cf344ceb85902c975326684a3f555f3130aa9b0795058779adccd916f581cad",
                "md5": "b55dff30b0da3cf546b42e295e88344d",
                "sha256": "9a6e06bb053836c66880943fa01e3f5fbc339da186b4ce1f9eb9ee6136ad02f4"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b55dff30b0da3cf546b42e295e88344d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 176103,
            "upload_time": "2024-10-24T12:00:22",
            "upload_time_iso_8601": "2024-10-24T12:00:22.053652Z",
            "url": "https://files.pythonhosted.org/packages/4c/f3/44ceb85902c975326684a3f555f3130aa9b0795058779adccd916f581cad/libipld-3.0.0-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78b6fea8f48a70bf7e7f03ce1149d29d67adcf3d55d5a7cee9fd729de9f8f15f",
                "md5": "3d21e20c5aa98a2b5bf149ab9bda9829",
                "sha256": "d7994b8983a8916e913a8d6957184172e6cb9099837e4889e0a909cf6cf96ae9"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3d21e20c5aa98a2b5bf149ab9bda9829",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 192170,
            "upload_time": "2024-10-24T12:00:23",
            "upload_time_iso_8601": "2024-10-24T12:00:23.724314Z",
            "url": "https://files.pythonhosted.org/packages/78/b6/fea8f48a70bf7e7f03ce1149d29d67adcf3d55d5a7cee9fd729de9f8f15f/libipld-3.0.0-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80786e5dccfc8dfde3c61c4c88c6d577e35e12e2610620713b50169154d0a5e8",
                "md5": "0e944fc32818b6b5c75b67433bd9cbb0",
                "sha256": "a3cca281854733ddca379d92aeb5bf363ff7eac5c7c9b86eb97370237a7cac97"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp312-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "0e944fc32818b6b5c75b67433bd9cbb0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 170429,
            "upload_time": "2024-10-24T12:00:24",
            "upload_time_iso_8601": "2024-10-24T12:00:24.863086Z",
            "url": "https://files.pythonhosted.org/packages/80/78/6e5dccfc8dfde3c61c4c88c6d577e35e12e2610620713b50169154d0a5e8/libipld-3.0.0-cp312-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0ebc8a5cc06ed11ec1fbebc7c872c0837611b678a058c89955a26ce7acda82ec",
                "md5": "8ef9e35e8ff682a830912fe9c187000a",
                "sha256": "ebaea71774a73149b76fa2f80985d42185e365631a9d18b9e2310d98ebe6497f"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ef9e35e8ff682a830912fe9c187000a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 320720,
            "upload_time": "2024-10-24T12:00:26",
            "upload_time_iso_8601": "2024-10-24T12:00:26.016187Z",
            "url": "https://files.pythonhosted.org/packages/0e/bc/8a5cc06ed11ec1fbebc7c872c0837611b678a058c89955a26ce7acda82ec/libipld-3.0.0-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "885e3018004521333538133f09d142f6b2b5b32d3fa26c586b9127d0e81e9976",
                "md5": "1785f0e8b7e678532d1b73a601e33256",
                "sha256": "d8a929cdf9a3360ab1947df9d3fce5850e99da46040461d59cb332febfffcd02"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1785f0e8b7e678532d1b73a601e33256",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 290708,
            "upload_time": "2024-10-24T12:00:27",
            "upload_time_iso_8601": "2024-10-24T12:00:27.201871Z",
            "url": "https://files.pythonhosted.org/packages/88/5e/3018004521333538133f09d142f6b2b5b32d3fa26c586b9127d0e81e9976/libipld-3.0.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf972098241af651b49a6572c86a9c166086ef538387888a003b7fa7b3388f70",
                "md5": "f4befb0b879b20412bcb7c96818428e4",
                "sha256": "b78802134aebed6920ae8dae2ce6601727cc0e854378db17e295afc6856244e1"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f4befb0b879b20412bcb7c96818428e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 666350,
            "upload_time": "2024-10-24T12:00:28",
            "upload_time_iso_8601": "2024-10-24T12:00:28.412647Z",
            "url": "https://files.pythonhosted.org/packages/bf/97/2098241af651b49a6572c86a9c166086ef538387888a003b7fa7b3388f70/libipld-3.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea831ed9084caabfae2e13c4c3d85586689437aaebd9dcb2707b2e86b2203f11",
                "md5": "3ee0ac742248474d78d25484d547eea0",
                "sha256": "da07ab694405b24ae0e1eaede0853a31e92b56cd8f2fb3294224e0f74dceacbc"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3ee0ac742248474d78d25484d547eea0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 673730,
            "upload_time": "2024-10-24T12:00:30",
            "upload_time_iso_8601": "2024-10-24T12:00:30.251082Z",
            "url": "https://files.pythonhosted.org/packages/ea/83/1ed9084caabfae2e13c4c3d85586689437aaebd9dcb2707b2e86b2203f11/libipld-3.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4043e2588ce845ccf8251278bf93980f159e9ee9ee5f1d0ee818e0a378d25ba5",
                "md5": "2817a52b26e9bbd0c55089b11aa5d3db",
                "sha256": "b9d65a06ff58688f46ea12a3d57a0dbca2f7116724594e3ac2ea849287a5fb26"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2817a52b26e9bbd0c55089b11aa5d3db",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 674107,
            "upload_time": "2024-10-24T12:00:31",
            "upload_time_iso_8601": "2024-10-24T12:00:31.795912Z",
            "url": "https://files.pythonhosted.org/packages/40/43/e2588ce845ccf8251278bf93980f159e9ee9ee5f1d0ee818e0a378d25ba5/libipld-3.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "839d55f90bd7926ce2a6fc64a16b35216c40ec924480987b002bb351f18aacdb",
                "md5": "966d17903c18d6378d97a52e0f461f6e",
                "sha256": "fb77cbc92553815cc89a00f9a8776d9ab8b715f64adb87596ec251c3c6922df7"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "966d17903c18d6378d97a52e0f461f6e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 829676,
            "upload_time": "2024-10-24T12:00:33",
            "upload_time_iso_8601": "2024-10-24T12:00:33.310975Z",
            "url": "https://files.pythonhosted.org/packages/83/9d/55f90bd7926ce2a6fc64a16b35216c40ec924480987b002bb351f18aacdb/libipld-3.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f0aa8d754873688cf5a0300f5bc272da65ed8460b80afce2ed829e00dfb8747",
                "md5": "3135476fb9f5d867f3e6088b63d0e1f5",
                "sha256": "3292ba5a1a3297f84d8d17aca4d29985093ec49ff1ccd2958d00265f6a84670a"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3135476fb9f5d867f3e6088b63d0e1f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 672597,
            "upload_time": "2024-10-24T12:00:34",
            "upload_time_iso_8601": "2024-10-24T12:00:34.791343Z",
            "url": "https://files.pythonhosted.org/packages/3f/0a/a8d754873688cf5a0300f5bc272da65ed8460b80afce2ed829e00dfb8747/libipld-3.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c97f365d72933c15214635af7a89a30a1e83a79b5cdf10d926ac283c1c1163b8",
                "md5": "345aa7811034049b3719bc104c4dfb0f",
                "sha256": "d915ca0fbd7f9d5ca3404301197b6809d62dfd943fd8296e506a6e62e2b39e00"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "345aa7811034049b3719bc104c4dfb0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 679787,
            "upload_time": "2024-10-24T12:00:36",
            "upload_time_iso_8601": "2024-10-24T12:00:36.702664Z",
            "url": "https://files.pythonhosted.org/packages/c9/7f/365d72933c15214635af7a89a30a1e83a79b5cdf10d926ac283c1c1163b8/libipld-3.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5785e85526e90f0e2117a33cc23f08cdae61ad42efc88e054245ec81005e2b9d",
                "md5": "9d4b8f5a150f5ec02cbf126f165d3700",
                "sha256": "203852fa7db6eba659bcc10dc313b7454b709d54af895c714f4e2b59ca0be74d"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-cp313-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9d4b8f5a150f5ec02cbf126f165d3700",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 839905,
            "upload_time": "2024-10-24T12:00:38",
            "upload_time_iso_8601": "2024-10-24T12:00:38.239630Z",
            "url": "https://files.pythonhosted.org/packages/57/85/e85526e90f0e2117a33cc23f08cdae61ad42efc88e054245ec81005e2b9d/libipld-3.0.0-cp313-cp313-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "353657f588b93e36362166a88e61f905e3f6575f901752c348809bc3cd8e4792",
                "md5": "fdeba381585546e3f4371b68eca7a5e1",
                "sha256": "16ac1baf12c37adcd506fc6ec7aadf4495aeb8bdbd744d09c1e2629d791cec30"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-cp313-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fdeba381585546e3f4371b68eca7a5e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 836190,
            "upload_time": "2024-10-24T12:00:39",
            "upload_time_iso_8601": "2024-10-24T12:00:39.434978Z",
            "url": "https://files.pythonhosted.org/packages/35/36/57f588b93e36362166a88e61f905e3f6575f901752c348809bc3cd8e4792/libipld-3.0.0-cp313-cp313-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3410c65f7a4ca38e4d1fd5537e689901c6cae6f1eeb49c0f8ecabbf991c48135",
                "md5": "10e4af937c7219ec7a0b5fd7d05b4317",
                "sha256": "fed7d4f10a5ba37f069453e834429cdf4fb04d789cfc38a696ca069f9e401f5f"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-none-win32.whl",
            "has_sig": false,
            "md5_digest": "10e4af937c7219ec7a0b5fd7d05b4317",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 176269,
            "upload_time": "2024-10-24T12:00:40",
            "upload_time_iso_8601": "2024-10-24T12:00:40.761658Z",
            "url": "https://files.pythonhosted.org/packages/34/10/c65f7a4ca38e4d1fd5537e689901c6cae6f1eeb49c0f8ecabbf991c48135/libipld-3.0.0-cp313-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ada3199772db97f0ba8e7e7c8356bccd683537ce4fa628891f3e77648bbd92c5",
                "md5": "a395c2b489d1fa259ab7b50078c96f17",
                "sha256": "48fbff37e6f3378e45117de45f42332273bff29b227744ef6268c3406dd70bac"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a395c2b489d1fa259ab7b50078c96f17",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 193657,
            "upload_time": "2024-10-24T12:00:41",
            "upload_time_iso_8601": "2024-10-24T12:00:41.875688Z",
            "url": "https://files.pythonhosted.org/packages/ad/a3/199772db97f0ba8e7e7c8356bccd683537ce4fa628891f3e77648bbd92c5/libipld-3.0.0-cp313-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "600d30235424a2ddbe8bf47060a422792b38d6e5479133d125a4e0cd76541911",
                "md5": "8c891bb0f754aa9ab0158730d4b0bfae",
                "sha256": "79d5d38dcc93de6157ced37d47fec0a8ce03edd53de52623c7d315063306eba3"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp313-none-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "8c891bb0f754aa9ab0158730d4b0bfae",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 170574,
            "upload_time": "2024-10-24T12:00:43",
            "upload_time_iso_8601": "2024-10-24T12:00:43.021578Z",
            "url": "https://files.pythonhosted.org/packages/60/0d/30235424a2ddbe8bf47060a422792b38d6e5479133d125a4e0cd76541911/libipld-3.0.0-cp313-none-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8713ef5b9bb3220bc19fc955dc2dc6cac76aeb679981284768ae88b18c583577",
                "md5": "2f727d9bd95336971a2a3570adafbe65",
                "sha256": "ef8c5afbc880f59343057c95f9dd804fb42b88b3fdb2e8eb3b811c351eb8e551"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f727d9bd95336971a2a3570adafbe65",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 319738,
            "upload_time": "2024-10-24T12:00:44",
            "upload_time_iso_8601": "2024-10-24T12:00:44.676345Z",
            "url": "https://files.pythonhosted.org/packages/87/13/ef5b9bb3220bc19fc955dc2dc6cac76aeb679981284768ae88b18c583577/libipld-3.0.0-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f65fbb1af27683b24a611549f9cf3a70af5a65c2a80e65d89cf7349b0e90e3ab",
                "md5": "917d83b20358753278b4b7135dc86d4f",
                "sha256": "85ec23aa318bb7004d2cedc9784c07a190071c10d43d11c2ac046ff6e3c583e4"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "917d83b20358753278b4b7135dc86d4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 273948,
            "upload_time": "2024-10-24T12:00:46",
            "upload_time_iso_8601": "2024-10-24T12:00:46.628765Z",
            "url": "https://files.pythonhosted.org/packages/f6/5f/bb1af27683b24a611549f9cf3a70af5a65c2a80e65d89cf7349b0e90e3ab/libipld-3.0.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad946c8a0c7d4ab1ed79b3166f5cdb86a24e77d71d282351bd9b656c10d1d754",
                "md5": "9f7bbcbec12acf621c27fdb0ceec3afe",
                "sha256": "8aa35c9ba5df60787a0fa29899cbe8a5673b7d0685bbfb49150dad0c894ce02e"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9f7bbcbec12acf621c27fdb0ceec3afe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 666176,
            "upload_time": "2024-10-24T12:00:48",
            "upload_time_iso_8601": "2024-10-24T12:00:48.133952Z",
            "url": "https://files.pythonhosted.org/packages/ad/94/6c8a0c7d4ab1ed79b3166f5cdb86a24e77d71d282351bd9b656c10d1d754/libipld-3.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19b0eb4d415138afc05d6a3e57ea792a6f507218efde275328e1b6c0b1952d48",
                "md5": "8254c59408e2225d105d4e636144eefc",
                "sha256": "c98a0a6137d0a9f3249a1027a81404780dffee5894defbc17e5389eaaff7310d"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8254c59408e2225d105d4e636144eefc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 673295,
            "upload_time": "2024-10-24T12:00:49",
            "upload_time_iso_8601": "2024-10-24T12:00:49.388097Z",
            "url": "https://files.pythonhosted.org/packages/19/b0/eb4d415138afc05d6a3e57ea792a6f507218efde275328e1b6c0b1952d48/libipld-3.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "200c0bba0cf85b8dbab46eb353747e2065d091d00c1191d670d3a42110010b12",
                "md5": "90094978051d55001819c846d52f9033",
                "sha256": "576c63c6d4a6f50c05881bfbd3c906503d15dc0cd762e12dfd4ec8b1ff8343b1"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "90094978051d55001819c846d52f9033",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 673476,
            "upload_time": "2024-10-24T12:00:51",
            "upload_time_iso_8601": "2024-10-24T12:00:51.462038Z",
            "url": "https://files.pythonhosted.org/packages/20/0c/0bba0cf85b8dbab46eb353747e2065d091d00c1191d670d3a42110010b12/libipld-3.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "008f4e82ed83989a63507bac65c6e37034df08623f34908a0e86e556c91b466f",
                "md5": "be3d74c3028f8a04a1ec0f89f0305661",
                "sha256": "58d1cd34355f3103be9a70d203f32c25413ecdcbce30f7528374784e48a64e71"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "be3d74c3028f8a04a1ec0f89f0305661",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 836188,
            "upload_time": "2024-10-24T12:00:52",
            "upload_time_iso_8601": "2024-10-24T12:00:52.788998Z",
            "url": "https://files.pythonhosted.org/packages/00/8f/4e82ed83989a63507bac65c6e37034df08623f34908a0e86e556c91b466f/libipld-3.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad65e001115b4c28edef328cca8f8aeb26bebab30f76dbca8fdab0eaf4273210",
                "md5": "6ce77a5704a1c6e5a689f225de47fa99",
                "sha256": "f8a6038b1f710f078583a54247b4e56c20e48815f5f610e3f63886b67aebb59d"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6ce77a5704a1c6e5a689f225de47fa99",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 671796,
            "upload_time": "2024-10-24T12:00:54",
            "upload_time_iso_8601": "2024-10-24T12:00:54.055149Z",
            "url": "https://files.pythonhosted.org/packages/ad/65/e001115b4c28edef328cca8f8aeb26bebab30f76dbca8fdab0eaf4273210/libipld-3.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "24b7a40bbc40449726d640adca90e51f110da8666f41da9a8add59072f4b77af",
                "md5": "64e88e3c48adbb6ce59d660f7979aa01",
                "sha256": "d1a2118fa4ac7727f1a3144951a56bdae6adbd9978d1875f64e13805ad06b513"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "64e88e3c48adbb6ce59d660f7979aa01",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 678389,
            "upload_time": "2024-10-24T12:00:55",
            "upload_time_iso_8601": "2024-10-24T12:00:55.527622Z",
            "url": "https://files.pythonhosted.org/packages/24/b7/a40bbc40449726d640adca90e51f110da8666f41da9a8add59072f4b77af/libipld-3.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3e1f108cc9eb9039e464583bda5bd6ed593abaf1f6db26b3a98370d4b5563c8",
                "md5": "e9ee444e7c1f96586cce00bbe9250e2d",
                "sha256": "7494e1876168e43d2feabedc7178ee513bbc80179b03018c390913c8074e5dfa"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e9ee444e7c1f96586cce00bbe9250e2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 839610,
            "upload_time": "2024-10-24T12:00:56",
            "upload_time_iso_8601": "2024-10-24T12:00:56.909790Z",
            "url": "https://files.pythonhosted.org/packages/f3/e1/f108cc9eb9039e464583bda5bd6ed593abaf1f6db26b3a98370d4b5563c8/libipld-3.0.0-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "01d973e8a714a08d785510d43dd66eb3ac4009210b8158e6864006a0f61cb97e",
                "md5": "ac4524aab8f1fdf034bfa6da124bb884",
                "sha256": "d51e3100e70cfeb465ef93f1a63d91f09dbdf6bc1e0cdd3f615de4003bbbce70"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac4524aab8f1fdf034bfa6da124bb884",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 835909,
            "upload_time": "2024-10-24T12:00:59",
            "upload_time_iso_8601": "2024-10-24T12:00:59.266502Z",
            "url": "https://files.pythonhosted.org/packages/01/d9/73e8a714a08d785510d43dd66eb3ac4009210b8158e6864006a0f61cb97e/libipld-3.0.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "203eece226692413ded5f740b72b43d07a51e835c95045a5e2b2abb601431bdf",
                "md5": "9eb861bab016d44d02e85fe6f48bce33",
                "sha256": "e5d5dc6034d6c57dd82707df5d34dae43b974de82360fce2489810d4bde6ad18"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "9eb861bab016d44d02e85fe6f48bce33",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 175673,
            "upload_time": "2024-10-24T12:01:00",
            "upload_time_iso_8601": "2024-10-24T12:01:00.578974Z",
            "url": "https://files.pythonhosted.org/packages/20/3e/ece226692413ded5f740b72b43d07a51e835c95045a5e2b2abb601431bdf/libipld-3.0.0-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "db7039b007641dfd63c9f3141efbe782a5121b342cfc213ff9edf474ff975594",
                "md5": "64b70edb16fb71efe2be07fe0515720f",
                "sha256": "77075cb0f9265d0467e36d563e99f53715891e91701806458f2cdb27d37de22a"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "64b70edb16fb71efe2be07fe0515720f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 193579,
            "upload_time": "2024-10-24T12:01:02",
            "upload_time_iso_8601": "2024-10-24T12:01:02.390757Z",
            "url": "https://files.pythonhosted.org/packages/db/70/39b007641dfd63c9f3141efbe782a5121b342cfc213ff9edf474ff975594/libipld-3.0.0-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2800a6b9373c9a9884ba6c69a0983ca954c0a7ae32ce8354f6bfe09858814cf5",
                "md5": "08b5d36c3c72754e206dd85be1e12826",
                "sha256": "8d3140de7ba949b779b26f35c5449c091a33e3fb593b0d38cb7a1159369b02c3"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "08b5d36c3c72754e206dd85be1e12826",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 321962,
            "upload_time": "2024-10-24T12:01:04",
            "upload_time_iso_8601": "2024-10-24T12:01:04.342757Z",
            "url": "https://files.pythonhosted.org/packages/28/00/a6b9373c9a9884ba6c69a0983ca954c0a7ae32ce8354f6bfe09858814cf5/libipld-3.0.0-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80b8ad537b07fd7414428330e2ddaaa39db779b8c9b2449b2ddedff10a941a6d",
                "md5": "4231f3951ec4c1ce7649c4990c2ef1f3",
                "sha256": "7ce55bd77e1589459344d490ab840163f1efe56ad1cc75be982445d0706b166f"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4231f3951ec4c1ce7649c4990c2ef1f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 274013,
            "upload_time": "2024-10-24T12:01:05",
            "upload_time_iso_8601": "2024-10-24T12:01:05.624244Z",
            "url": "https://files.pythonhosted.org/packages/80/b8/ad537b07fd7414428330e2ddaaa39db779b8c9b2449b2ddedff10a941a6d/libipld-3.0.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "10dd96a038d8cf5df727725f2b7d72700e75173e542ed67059fc17f2f7b02a29",
                "md5": "2e115a5e6b121e72bc9c157d7503347c",
                "sha256": "4a70c4a8811efb94a1f7f61685f8f58a7cdc88aa1672a27d293a5e58161bfb3c"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2e115a5e6b121e72bc9c157d7503347c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 666391,
            "upload_time": "2024-10-24T12:01:07",
            "upload_time_iso_8601": "2024-10-24T12:01:07.304307Z",
            "url": "https://files.pythonhosted.org/packages/10/dd/96a038d8cf5df727725f2b7d72700e75173e542ed67059fc17f2f7b02a29/libipld-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7dd78715a14fa1a1795e7dbff6f09940902e6498389e7fb9bb1e6981758ea2b8",
                "md5": "0b8f2a88a4f84a0d91f89d0795f19e46",
                "sha256": "27cc1643536473b99407e00e08bdab3842447d4cb0a3ae7f99c5da2d73573182"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0b8f2a88a4f84a0d91f89d0795f19e46",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 673578,
            "upload_time": "2024-10-24T12:01:08",
            "upload_time_iso_8601": "2024-10-24T12:01:08.583410Z",
            "url": "https://files.pythonhosted.org/packages/7d/d7/8715a14fa1a1795e7dbff6f09940902e6498389e7fb9bb1e6981758ea2b8/libipld-3.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c6e980349f1c4e99955b744be589519b7d9e52f661800cbe04fa180f333b303",
                "md5": "6b7971fef32959c0879833c8c516631e",
                "sha256": "266d36e9802230c61bf1ed7e9b56004d3c42cacc49b275e6027830a3865301ad"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6b7971fef32959c0879833c8c516631e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 673640,
            "upload_time": "2024-10-24T12:01:10",
            "upload_time_iso_8601": "2024-10-24T12:01:10.390908Z",
            "url": "https://files.pythonhosted.org/packages/8c/6e/980349f1c4e99955b744be589519b7d9e52f661800cbe04fa180f333b303/libipld-3.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43c578b82cd608ab27b43f90f0b9a649a344c227e98e6f1aa4fb8ea872b77559",
                "md5": "98592703c1f34747b965a819f39c6503",
                "sha256": "9488511da7955cda356932e7b47d501d0cc37d4aa45a49785c0b9945f137451a"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "98592703c1f34747b965a819f39c6503",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 836279,
            "upload_time": "2024-10-24T12:01:11",
            "upload_time_iso_8601": "2024-10-24T12:01:11.791079Z",
            "url": "https://files.pythonhosted.org/packages/43/c5/78b82cd608ab27b43f90f0b9a649a344c227e98e6f1aa4fb8ea872b77559/libipld-3.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb0b63b20111e331fb106c85e37421847a89b513279376d7f82708618762e2d9",
                "md5": "36bdbb6ebccaf5330eef5a2dc30a4658",
                "sha256": "9aef99cefda92311c8e434421e5e3ccfe7d947ef8739f3fa33fcbf5703fb445c"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "36bdbb6ebccaf5330eef5a2dc30a4658",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 671957,
            "upload_time": "2024-10-24T12:01:13",
            "upload_time_iso_8601": "2024-10-24T12:01:13.417659Z",
            "url": "https://files.pythonhosted.org/packages/fb/0b/63b20111e331fb106c85e37421847a89b513279376d7f82708618762e2d9/libipld-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a1db388b3ffb9ad0e0dfc2cc9945ad17d410c3456dd3ed27bcf46455eeda507b",
                "md5": "524c29b562701db17a92a567fbbeb902",
                "sha256": "42f4ddbc96d8c290903b60f94e5eeb73a650c0a3d623b97855532b2ef408af0a"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "524c29b562701db17a92a567fbbeb902",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 678730,
            "upload_time": "2024-10-24T12:01:14",
            "upload_time_iso_8601": "2024-10-24T12:01:14.719031Z",
            "url": "https://files.pythonhosted.org/packages/a1/db/388b3ffb9ad0e0dfc2cc9945ad17d410c3456dd3ed27bcf46455eeda507b/libipld-3.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "472adc14a4c705b8c533a22155c5822363ed7a62c9d6a8be710455d4ad3f01fd",
                "md5": "7cbab6453d89467e4d4440116659e5e9",
                "sha256": "8a6567ef55a7540ae72f8cf6478a029a48c4696d5516a18d7664e215ba5d3812"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7cbab6453d89467e4d4440116659e5e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 839935,
            "upload_time": "2024-10-24T12:01:16",
            "upload_time_iso_8601": "2024-10-24T12:01:16.113700Z",
            "url": "https://files.pythonhosted.org/packages/47/2a/dc14a4c705b8c533a22155c5822363ed7a62c9d6a8be710455d4ad3f01fd/libipld-3.0.0-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "477f3744a2127c620594e640dbed478a2d34e01765b2ebe7933f5b7bd2e1752c",
                "md5": "877f39161117ae20c2b625f52c5c834b",
                "sha256": "3423c2203d852d489fc8683700b5656f4d9578ae86e9e596ba2e61c45b08e702"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "877f39161117ae20c2b625f52c5c834b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 836021,
            "upload_time": "2024-10-24T12:01:17",
            "upload_time_iso_8601": "2024-10-24T12:01:17.528924Z",
            "url": "https://files.pythonhosted.org/packages/47/7f/3744a2127c620594e640dbed478a2d34e01765b2ebe7933f5b7bd2e1752c/libipld-3.0.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d7f90ca208605f09360b10701ea8361985b71134506115ceddb098d89af67a0",
                "md5": "aadf44fbca21f2c860a3ef0373b1a671",
                "sha256": "e85f1dec6bd919bc33282d44f3157c70408d99ad243fc4cfdde4bcf33b0e62c8"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "aadf44fbca21f2c860a3ef0373b1a671",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 175853,
            "upload_time": "2024-10-24T12:01:19",
            "upload_time_iso_8601": "2024-10-24T12:01:19.267585Z",
            "url": "https://files.pythonhosted.org/packages/0d/7f/90ca208605f09360b10701ea8361985b71134506115ceddb098d89af67a0/libipld-3.0.0-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0e08f00be18c37a5427d1b32ce50c072570a38df71eae8c82eee1ae6e85dc27d",
                "md5": "8b994cf2e522b3d921f671545cd60158",
                "sha256": "0cb30f5e36fc524c6dc31feda4c9757eb3bbf5fa7ff5820e12163c73fbb3c9a8"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8b994cf2e522b3d921f671545cd60158",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 194113,
            "upload_time": "2024-10-24T12:01:20",
            "upload_time_iso_8601": "2024-10-24T12:01:20.870095Z",
            "url": "https://files.pythonhosted.org/packages/0e/08/f00be18c37a5427d1b32ce50c072570a38df71eae8c82eee1ae6e85dc27d/libipld-3.0.0-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7a6a2baca5d6bd605f61b7c1fcf7a933a1f39493d385744526fdc3d7211f2042",
                "md5": "65829960ff48c33a9bfb0dcfe5ad3936",
                "sha256": "347a161a061e9d693b42ee8892789c157dadbdda61d830e474d1380d0019bef9"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65829960ff48c33a9bfb0dcfe5ad3936",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 288393,
            "upload_time": "2024-10-24T12:01:22",
            "upload_time_iso_8601": "2024-10-24T12:01:22.254451Z",
            "url": "https://files.pythonhosted.org/packages/7a/6a/2baca5d6bd605f61b7c1fcf7a933a1f39493d385744526fdc3d7211f2042/libipld-3.0.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3b1e8014019bee676ff42f249f9bc90807b8f7ac2990faef3b8d665a4ea51284",
                "md5": "603d04d9e022e9ae420f159e6c80c48d",
                "sha256": "3e122f806b81dc6c63b6c4786077591b1b6fd443d4121f2ebb4e2dc3fa413657"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "603d04d9e022e9ae420f159e6c80c48d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 275384,
            "upload_time": "2024-10-24T12:01:23",
            "upload_time_iso_8601": "2024-10-24T12:01:23.520309Z",
            "url": "https://files.pythonhosted.org/packages/3b/1e/8014019bee676ff42f249f9bc90807b8f7ac2990faef3b8d665a4ea51284/libipld-3.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "962e2bd3b1c057d5c2097d2fdf1f2ec22873a4188942889186916bdfc4598fd1",
                "md5": "aefa21a6abf9dc8cab47ecc119bf4922",
                "sha256": "eb5974607bddd20f5be7a5af39558b86b98fb3986dcef478ec323879c7fbf930"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "aefa21a6abf9dc8cab47ecc119bf4922",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 667756,
            "upload_time": "2024-10-24T12:01:24",
            "upload_time_iso_8601": "2024-10-24T12:01:24.849262Z",
            "url": "https://files.pythonhosted.org/packages/96/2e/2bd3b1c057d5c2097d2fdf1f2ec22873a4188942889186916bdfc4598fd1/libipld-3.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7df8be854f634f90dd115e511a733eecfdca207c6409026c2ea9c07bf339b6d3",
                "md5": "6f4100f271175b4ebbf0e7caf03586da",
                "sha256": "396e29266a0adcf5137dea3ba1a36e8e373ff8d0516725b652fcb8781549a01e"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f4100f271175b4ebbf0e7caf03586da",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 665627,
            "upload_time": "2024-10-24T12:01:26",
            "upload_time_iso_8601": "2024-10-24T12:01:26.471455Z",
            "url": "https://files.pythonhosted.org/packages/7d/f8/be854f634f90dd115e511a733eecfdca207c6409026c2ea9c07bf339b6d3/libipld-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "33195ed88cdc8377e55f6ea0b8a144a90672831d566c257a21596467a64bb5fe",
                "md5": "ec226283905a9870466b57a5ad29c626",
                "sha256": "aef160cca53099ca63ba602023906cda97518301c9b3b4db5841ecc98fe974b9"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "ec226283905a9870466b57a5ad29c626",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 680428,
            "upload_time": "2024-10-24T12:01:28",
            "upload_time_iso_8601": "2024-10-24T12:01:28.127168Z",
            "url": "https://files.pythonhosted.org/packages/33/19/5ed88cdc8377e55f6ea0b8a144a90672831d566c257a21596467a64bb5fe/libipld-3.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ba1c4bcc947650bcd61f07cb3db479bd680047d8d1d2361d990cb816e6012cf",
                "md5": "4b58b13f480ac4c2ab66f72a2fa0f0da",
                "sha256": "dfa09264b95a38eb09fbbdbd9fa3bbf8807f0c367a797e2e5785485db397517c"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4b58b13f480ac4c2ab66f72a2fa0f0da",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 840927,
            "upload_time": "2024-10-24T12:01:29",
            "upload_time_iso_8601": "2024-10-24T12:01:29.602979Z",
            "url": "https://files.pythonhosted.org/packages/2b/a1/c4bcc947650bcd61f07cb3db479bd680047d8d1d2361d990cb816e6012cf/libipld-3.0.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "175ce4c7e2dc2b685e8c6baa1b3442800521cd4f55e7feaedeb36a3788f01c3c",
                "md5": "d3788d696fdaa589de68229e66dcb759",
                "sha256": "ca29cf4f8da1778302a3a65ca5a5c4d23e7a489a54bb19b85319611b6a8bb7d6"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3788d696fdaa589de68229e66dcb759",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 836949,
            "upload_time": "2024-10-24T12:01:31",
            "upload_time_iso_8601": "2024-10-24T12:01:31.020663Z",
            "url": "https://files.pythonhosted.org/packages/17/5c/e4c7e2dc2b685e8c6baa1b3442800521cd4f55e7feaedeb36a3788f01c3c/libipld-3.0.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c9a61f58bbc613c72b2e756123785047f89865119a427a0e472785cc7470f85",
                "md5": "2aa321a2b1e8dd2cbab3e453d603b5c3",
                "sha256": "6ba76ab47c4b25c6d9c8fea692952474c6446b012cac06afa15373424a7a9e16"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2aa321a2b1e8dd2cbab3e453d603b5c3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 184265,
            "upload_time": "2024-10-24T12:01:32",
            "upload_time_iso_8601": "2024-10-24T12:01:32.553677Z",
            "url": "https://files.pythonhosted.org/packages/7c/9a/61f58bbc613c72b2e756123785047f89865119a427a0e472785cc7470f85/libipld-3.0.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "392890e8a75a3a6514b2eebc4361ba4678a354f6b0b32c3ff22f4e9f4a941aa3",
                "md5": "a523faae1020d37ffd50ad7d0bc0106e",
                "sha256": "017fee879af7d76619b55a70af3fa9652c2c582e28f28e4a303556985234c63f"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a523faae1020d37ffd50ad7d0bc0106e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 288389,
            "upload_time": "2024-10-24T12:01:34",
            "upload_time_iso_8601": "2024-10-24T12:01:34.590823Z",
            "url": "https://files.pythonhosted.org/packages/39/28/90e8a75a3a6514b2eebc4361ba4678a354f6b0b32c3ff22f4e9f4a941aa3/libipld-3.0.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4ac4c75110813616a8d1c93e05211804d4df0fcb2cb0537dc853bc68dc99ae9",
                "md5": "ee6009a3d281fe8e437b5739fe834846",
                "sha256": "2c2a47ae4eebace0205350d9672d39eba051588e38722c0096b00e139663c11a"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ee6009a3d281fe8e437b5739fe834846",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 275436,
            "upload_time": "2024-10-24T12:01:36",
            "upload_time_iso_8601": "2024-10-24T12:01:36.747297Z",
            "url": "https://files.pythonhosted.org/packages/e4/ac/4c75110813616a8d1c93e05211804d4df0fcb2cb0537dc853bc68dc99ae9/libipld-3.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90e96d1f4a21d8eac841628439c6a0920e0bfda65ae56b653e2dda84bca66905",
                "md5": "0dbfa0ab57f3b35ddb46e32252407c4e",
                "sha256": "4c6ed0afb1372113c72f7fa14367f12677aa8511cc57fde825d0e08d36132e45"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0dbfa0ab57f3b35ddb46e32252407c4e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 667767,
            "upload_time": "2024-10-24T12:01:38",
            "upload_time_iso_8601": "2024-10-24T12:01:38.065734Z",
            "url": "https://files.pythonhosted.org/packages/90/e9/6d1f4a21d8eac841628439c6a0920e0bfda65ae56b653e2dda84bca66905/libipld-3.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5b384925a539633ab168bfb081385daccb47e1bbe3e5809c140588804788989",
                "md5": "4a52fa06c399672f5de710a96eb4184f",
                "sha256": "0408ca3f672fee8b20e769d2dcc177eee7c343638e3b6f6597320143ef42507e"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "4a52fa06c399672f5de710a96eb4184f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 680412,
            "upload_time": "2024-10-24T12:01:39",
            "upload_time_iso_8601": "2024-10-24T12:01:39.877105Z",
            "url": "https://files.pythonhosted.org/packages/b5/b3/84925a539633ab168bfb081385daccb47e1bbe3e5809c140588804788989/libipld-3.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eff29cd2afd420957c7762e9ca8fe000f6d11d53dddb1059493b95ab8e0efbf6",
                "md5": "7395fce312659a0a866d2069f8377b4d",
                "sha256": "c2e739427a72d05302fedf044d86d874982d0980706298793838dedf7d4c8081"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7395fce312659a0a866d2069f8377b4d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 841014,
            "upload_time": "2024-10-24T12:01:41",
            "upload_time_iso_8601": "2024-10-24T12:01:41.546085Z",
            "url": "https://files.pythonhosted.org/packages/ef/f2/9cd2afd420957c7762e9ca8fe000f6d11d53dddb1059493b95ab8e0efbf6/libipld-3.0.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1642c41c8af264c464b3dd7b0bb92ef0d00e1ccf777be021028d7251a75a2d41",
                "md5": "6f7793075c72cb9bab16395827bb2684",
                "sha256": "5e069651317beb10b2c6d50a269f74ef714433a77a70bce8a29e8ce155a39f07"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f7793075c72cb9bab16395827bb2684",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 836995,
            "upload_time": "2024-10-24T12:01:43",
            "upload_time_iso_8601": "2024-10-24T12:01:43.049330Z",
            "url": "https://files.pythonhosted.org/packages/16/42/c41c8af264c464b3dd7b0bb92ef0d00e1ccf777be021028d7251a75a2d41/libipld-3.0.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a62ab7dce0e404a93d061a69011f7a6dc470b029f0d5ba82fd9f9deda04bf342",
                "md5": "25cf4c7868b580ddeb6cd7f5eabd0289",
                "sha256": "d1b3f6fd1d5be0e3d8b0090b8eee5e1e41da7cbbfcd38a2c26abc4d7ff0184ac"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "25cf4c7868b580ddeb6cd7f5eabd0289",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 288405,
            "upload_time": "2024-10-24T12:01:44",
            "upload_time_iso_8601": "2024-10-24T12:01:44.559605Z",
            "url": "https://files.pythonhosted.org/packages/a6/2a/b7dce0e404a93d061a69011f7a6dc470b029f0d5ba82fd9f9deda04bf342/libipld-3.0.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09cbf35dee9985e977b2ad990c98642ebac9ff4a5cb614e561c0c87d5f572074",
                "md5": "92c7d0a03b6a8e4882284e53ac48f587",
                "sha256": "5c6ce8ea1a9487610906d19a299d51aa734f26d0e6fcf689ddc588fdb17a43c6"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "92c7d0a03b6a8e4882284e53ac48f587",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 275390,
            "upload_time": "2024-10-24T12:01:46",
            "upload_time_iso_8601": "2024-10-24T12:01:46.059507Z",
            "url": "https://files.pythonhosted.org/packages/09/cb/f35dee9985e977b2ad990c98642ebac9ff4a5cb614e561c0c87d5f572074/libipld-3.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50148267f97877f386f09a38e8c322344d7d48b8c4b8341e127a3d483f44ffd4",
                "md5": "71df64f983d41fa43cc16c689cf1d459",
                "sha256": "3755d9ad1ce3dc945f35a2939d2b45c16496d61a3b8a668b99f311c6f860f3d7"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "71df64f983d41fa43cc16c689cf1d459",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 667752,
            "upload_time": "2024-10-24T12:01:47",
            "upload_time_iso_8601": "2024-10-24T12:01:47.713031Z",
            "url": "https://files.pythonhosted.org/packages/50/14/8267f97877f386f09a38e8c322344d7d48b8c4b8341e127a3d483f44ffd4/libipld-3.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0b8e7a74aba64e438fa31fb8852838d087ed07c663aa02f645707083d58a9ab",
                "md5": "f43af26ad30ee7aaa1b0d31ae6c269a9",
                "sha256": "56d050684db041e5be83f45c8dbd8719636277a3e6a3974f28133518b11c89c1"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f43af26ad30ee7aaa1b0d31ae6c269a9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 665623,
            "upload_time": "2024-10-24T12:01:49",
            "upload_time_iso_8601": "2024-10-24T12:01:49.288443Z",
            "url": "https://files.pythonhosted.org/packages/d0/b8/e7a74aba64e438fa31fb8852838d087ed07c663aa02f645707083d58a9ab/libipld-3.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4eff7b7d1abe3f0f164dff1d863adeb7b49a6c75815bed125a11b38dc3f6dd4b",
                "md5": "95d0ec5b7541318d171e2eeb80bbc0bf",
                "sha256": "cea1ad3f59b658dd8680afcf676923cfbb76f4eaf62e72475207735a3a889810"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "95d0ec5b7541318d171e2eeb80bbc0bf",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 680424,
            "upload_time": "2024-10-24T12:01:50",
            "upload_time_iso_8601": "2024-10-24T12:01:50.737958Z",
            "url": "https://files.pythonhosted.org/packages/4e/ff/7b7d1abe3f0f164dff1d863adeb7b49a6c75815bed125a11b38dc3f6dd4b/libipld-3.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e9a50eed54cbe65fd653b392d9e881e9f63dbe1b86feb0b34168ef3b89b517c",
                "md5": "4481d095872de50da415cf17b78196bc",
                "sha256": "61a9474b3f9d46ee7b77e547605e2736c90cc2b172ba798ff64ed34cd6931238"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4481d095872de50da415cf17b78196bc",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 840990,
            "upload_time": "2024-10-24T12:01:52",
            "upload_time_iso_8601": "2024-10-24T12:01:52.576976Z",
            "url": "https://files.pythonhosted.org/packages/6e/9a/50eed54cbe65fd653b392d9e881e9f63dbe1b86feb0b34168ef3b89b517c/libipld-3.0.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37080da0c655db124f65ac737b1a82542041ddca6ec6c201977958a8a257d8f0",
                "md5": "e5c66b96aa9ce0819271bbad19f0119b",
                "sha256": "9cc3073cc6464c4c216b520f359718942c567da879d7e8c874a2803aa905c2bc"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5c66b96aa9ce0819271bbad19f0119b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 836944,
            "upload_time": "2024-10-24T12:01:54",
            "upload_time_iso_8601": "2024-10-24T12:01:54.646895Z",
            "url": "https://files.pythonhosted.org/packages/37/08/0da0c655db124f65ac737b1a82542041ddca6ec6c201977958a8a257d8f0/libipld-3.0.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b76f126b3612ef27221f1efc183d3898da5ca1f49a8adcab375d8845ef8613a8",
                "md5": "c0b7f0d45009b8059906753aa566a850",
                "sha256": "a88f9c54dd45f9223a19ffe856eac4762252c15f6c265e0eb53160c0e1d93d6a"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c0b7f0d45009b8059906753aa566a850",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 184272,
            "upload_time": "2024-10-24T12:01:56",
            "upload_time_iso_8601": "2024-10-24T12:01:56.097637Z",
            "url": "https://files.pythonhosted.org/packages/b7/6f/126b3612ef27221f1efc183d3898da5ca1f49a8adcab375d8845ef8613a8/libipld-3.0.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c19ed20af9e7807c5648ad9db97bf638da4a4face0538af7ae697bc2513407d",
                "md5": "91c3bd07b80bb2a40b6b4a4ccebf7b5d",
                "sha256": "c532323efb36e63df8005f075afe01d726aa170999ee0cf0738553f8e75aaad5"
            },
            "downloads": -1,
            "filename": "libipld-3.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "91c3bd07b80bb2a40b6b4a4ccebf7b5d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 4325828,
            "upload_time": "2024-10-24T12:01:57",
            "upload_time_iso_8601": "2024-10-24T12:01:57.599449Z",
            "url": "https://files.pythonhosted.org/packages/7c/19/ed20af9e7807c5648ad9db97bf638da4a4face0538af7ae697bc2513407d/libipld-3.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-24 12:01:57",
    "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.57035s