## 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/d4/ad/b440c64e2d1ee84f2933979175399ff09bd0ba7b1b07c6bc20ba585825cd/libipld-3.0.1.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.1",
"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": "95b1d8c0f30c45e3213ee262b3dca6ea620a11d49d349e8a65422d5eb1bbb3ca",
"md5": "2e9bf9bc80c51c0c77f7ce8f078b3d08",
"sha256": "2130a8a0a673a336d1e557884f40ce78b17224a53f2fe56ceb7c55a4c640ca02"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "2e9bf9bc80c51c0c77f7ce8f078b3d08",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 310351,
"upload_time": "2025-02-18T11:17:28",
"upload_time_iso_8601": "2025-02-18T11:17:28.390681Z",
"url": "https://files.pythonhosted.org/packages/95/b1/d8c0f30c45e3213ee262b3dca6ea620a11d49d349e8a65422d5eb1bbb3ca/libipld-3.0.1-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "92a770d2319c0cd57cc98a6588e1f01cb5d48bcc354f26cb9db4b72fcbd590a6",
"md5": "200f084a2ad589766dc92ad0bebeaccf",
"sha256": "3f50ba309f4023cf5e80a063e74f6ea36b36ad8904aec7d97067df0b41d0f77e"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "200f084a2ad589766dc92ad0bebeaccf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 297876,
"upload_time": "2025-02-18T11:17:32",
"upload_time_iso_8601": "2025-02-18T11:17:32.251642Z",
"url": "https://files.pythonhosted.org/packages/92/a7/70d2319c0cd57cc98a6588e1f01cb5d48bcc354f26cb9db4b72fcbd590a6/libipld-3.0.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "bc63eb6b7dc240d3ab1dd8d142fbda647179c908ed1a6fbe7c668c88d7c28586",
"md5": "b1ccd58b44ccd8e49db7a2e8c5834560",
"sha256": "d2f237a567c666d998315e9377320d369b6c2069444cad9ce39f0650d45c4c52"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b1ccd58b44ccd8e49db7a2e8c5834560",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 676846,
"upload_time": "2025-02-18T11:17:35",
"upload_time_iso_8601": "2025-02-18T11:17:35.202419Z",
"url": "https://files.pythonhosted.org/packages/bc/63/eb6b7dc240d3ab1dd8d142fbda647179c908ed1a6fbe7c668c88d7c28586/libipld-3.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aaad797d0020eb3be893564445682025766d805e9c8912a58063cd9488b5cc3e",
"md5": "ac65d8afa90e805cfef3517d9ba85ca5",
"sha256": "bfed66e7754d4cdb66263fe22c24757ae6f8c3c9458fb185ae5aaf78bee96092"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "ac65d8afa90e805cfef3517d9ba85ca5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 682522,
"upload_time": "2025-02-18T11:17:37",
"upload_time_iso_8601": "2025-02-18T11:17:37.297591Z",
"url": "https://files.pythonhosted.org/packages/aa/ad/797d0020eb3be893564445682025766d805e9c8912a58063cd9488b5cc3e/libipld-3.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c38096811aa748a4369dd3b82661e8fae69e5cb0796b83169eb6dad7049370c8",
"md5": "82b64ec24cc6f1af5d377f359fb1cfbe",
"sha256": "d830f6023649f29711498a96f77e6221223103d6982355ac12c075401f67ffd7"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "82b64ec24cc6f1af5d377f359fb1cfbe",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 687392,
"upload_time": "2025-02-18T11:17:39",
"upload_time_iso_8601": "2025-02-18T11:17:39.186462Z",
"url": "https://files.pythonhosted.org/packages/c3/80/96811aa748a4369dd3b82661e8fae69e5cb0796b83169eb6dad7049370c8/libipld-3.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1f90000410af2772253156dba49f3c9141127f1fa596c3c7668e1e69506d7f01",
"md5": "b4f1cfe99e8ab9a99c6d26a05e5c948a",
"sha256": "3ae1b59149e5b6715b32a152bbddfcc97bf5c04a5fb6f4cf18a4e47e85abe2a0"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b4f1cfe99e8ab9a99c6d26a05e5c948a",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 822808,
"upload_time": "2025-02-18T11:17:40",
"upload_time_iso_8601": "2025-02-18T11:17:40.391823Z",
"url": "https://files.pythonhosted.org/packages/1f/90/000410af2772253156dba49f3c9141127f1fa596c3c7668e1e69506d7f01/libipld-3.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e6d94f6182dec4e00a55bc0b016953d959248eba8516b5ac85f0c729066be2e4",
"md5": "924df307f7f5c4d5f126b4e1b5314ae4",
"sha256": "6ab9c1b7ee42ce1c7c61c12325c95b5651ebacd1e44327e194457eae6fd64a55"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "924df307f7f5c4d5f126b4e1b5314ae4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 682729,
"upload_time": "2025-02-18T11:17:42",
"upload_time_iso_8601": "2025-02-18T11:17:42.530305Z",
"url": "https://files.pythonhosted.org/packages/e6/d9/4f6182dec4e00a55bc0b016953d959248eba8516b5ac85f0c729066be2e4/libipld-3.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ff7bfe12c6550d075552911726eb44ff469551d600125f4b3fb3e5e244458d45",
"md5": "ae1a8c38d655a3c28e389ab7136ec1b5",
"sha256": "5a2b0a688be3292d94c306dd6a3aa1c80aa2c7368876c9b2bc6eb39ccf5a4967"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "ae1a8c38d655a3c28e389ab7136ec1b5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 692782,
"upload_time": "2025-02-18T11:17:44",
"upload_time_iso_8601": "2025-02-18T11:17:44.293322Z",
"url": "https://files.pythonhosted.org/packages/ff/7b/fe12c6550d075552911726eb44ff469551d600125f4b3fb3e5e244458d45/libipld-3.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "47ca99cccd25451396e32eb0fd7273211238ac50a244d5d64ad3688a58f2c9ec",
"md5": "bd17f64e88495baf345d7110cda846ff",
"sha256": "d50174121cc282ba66f84bc5982eb8ea6c165adad237ebc1764a92ccf121385d"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "bd17f64e88495baf345d7110cda846ff",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 850543,
"upload_time": "2025-02-18T11:17:46",
"upload_time_iso_8601": "2025-02-18T11:17:46.682766Z",
"url": "https://files.pythonhosted.org/packages/47/ca/99cccd25451396e32eb0fd7273211238ac50a244d5d64ad3688a58f2c9ec/libipld-3.0.1-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "94dc5db588dc49af2a440f3e1ed4837df700352bae50f72d2017277a9f3dbadf",
"md5": "a053516b2adaf23f849d87b1e58ceb94",
"sha256": "fc943116a43c77446d286a03b7b9359b14f640cc93c820a4c755a635549a93b6"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a053516b2adaf23f849d87b1e58ceb94",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 842547,
"upload_time": "2025-02-18T11:17:48",
"upload_time_iso_8601": "2025-02-18T11:17:48.105487Z",
"url": "https://files.pythonhosted.org/packages/94/dc/5db588dc49af2a440f3e1ed4837df700352bae50f72d2017277a9f3dbadf/libipld-3.0.1-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a374eef38202a9ebfcd18398736d814988f29815dd240c8f3e47afd03a77fd1e",
"md5": "9f40d8d7eccf63978ad88fbfab6606af",
"sha256": "a50f4a124c9f07c21b81263edccda6ec28dcf321ad29f385ab992bcbe3a0b335"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "9f40d8d7eccf63978ad88fbfab6606af",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 182788,
"upload_time": "2025-02-18T11:17:50",
"upload_time_iso_8601": "2025-02-18T11:17:50.130160Z",
"url": "https://files.pythonhosted.org/packages/a3/74/eef38202a9ebfcd18398736d814988f29815dd240c8f3e47afd03a77fd1e/libipld-3.0.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "10d95c640abc9a9da839ce1918af8da5ee13c17d1c81cadb37cf52248d44bcd3",
"md5": "47413838b9e5fcbfe55c800a50da388d",
"sha256": "58b28f5d37432c943575e14a44927d762705dc9b47ae9469170073e9a04b377c"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "47413838b9e5fcbfe55c800a50da388d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 198445,
"upload_time": "2025-02-18T11:17:51",
"upload_time_iso_8601": "2025-02-18T11:17:51.212839Z",
"url": "https://files.pythonhosted.org/packages/10/d9/5c640abc9a9da839ce1918af8da5ee13c17d1c81cadb37cf52248d44bcd3/libipld-3.0.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "4875b194d63fec7550d6b5c6f9d90e127535572faaa9b91d21c20ba02d32dc63",
"md5": "f30a27945aa979c2329a59ac64d3ce4a",
"sha256": "3f9bf02d065c4833936c274417282e52bf626924dd4f943a3c97095a5571d400"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "f30a27945aa979c2329a59ac64d3ce4a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 307654,
"upload_time": "2025-02-18T11:17:53",
"upload_time_iso_8601": "2025-02-18T11:17:53.042868Z",
"url": "https://files.pythonhosted.org/packages/48/75/b194d63fec7550d6b5c6f9d90e127535572faaa9b91d21c20ba02d32dc63/libipld-3.0.1-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "617e11e1d8cdc86fd363036158927ce338711d185234aca99b55887b65e49db0",
"md5": "6dd599a2ac044aa9c7e9122dfd03e88d",
"sha256": "2049735348bf827818a3856e9ca9e0e2d5a961018a29c7369363cd06252156ad"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "6dd599a2ac044aa9c7e9122dfd03e88d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 297250,
"upload_time": "2025-02-18T11:17:54",
"upload_time_iso_8601": "2025-02-18T11:17:54.124243Z",
"url": "https://files.pythonhosted.org/packages/61/7e/11e1d8cdc86fd363036158927ce338711d185234aca99b55887b65e49db0/libipld-3.0.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cfe1db2abe3ccded9690b63e4de35094952a269d18e2f7bb803bbdc3452d73a1",
"md5": "4d6241d6f57612fc9e448d99ea202d5b",
"sha256": "05c7b666ea6ac9b63bd8148051a560e5c1e7352d48e334299b1a03ed0d7c3749"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4d6241d6f57612fc9e448d99ea202d5b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 676256,
"upload_time": "2025-02-18T11:17:55",
"upload_time_iso_8601": "2025-02-18T11:17:55.259208Z",
"url": "https://files.pythonhosted.org/packages/cf/e1/db2abe3ccded9690b63e4de35094952a269d18e2f7bb803bbdc3452d73a1/libipld-3.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cbac8d71a856c70f0a6de674e238ac4a2ec1f004ac545f8236f5ca28397ff514",
"md5": "9516d2d1c4c8c19e531d982451691d53",
"sha256": "8ae0334e5dbb93d6e56f7eed66f24e46e7066553ec9c55cd229848b7b15d6b30"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9516d2d1c4c8c19e531d982451691d53",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 682252,
"upload_time": "2025-02-18T11:17:58",
"upload_time_iso_8601": "2025-02-18T11:17:58.340689Z",
"url": "https://files.pythonhosted.org/packages/cb/ac/8d71a856c70f0a6de674e238ac4a2ec1f004ac545f8236f5ca28397ff514/libipld-3.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "74ac418d6afe0161629c6cab7b4de0b360100dd68ca46d4e21413506ddf59519",
"md5": "7d3ef9443deac7c325ef1c7d56297f7b",
"sha256": "edc249291665665a38c4d25afa279082ff2da9d0bbbd0e9f865df6a02580a74a"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "7d3ef9443deac7c325ef1c7d56297f7b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 686578,
"upload_time": "2025-02-18T11:18:00",
"upload_time_iso_8601": "2025-02-18T11:18:00.329538Z",
"url": "https://files.pythonhosted.org/packages/74/ac/418d6afe0161629c6cab7b4de0b360100dd68ca46d4e21413506ddf59519/libipld-3.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "324199812af0d299cdc643031c727b677b6f2059d1cd5449dc2bd83b388c9672",
"md5": "b37d4fa9dac1140d8bf7cf7326caf9f6",
"sha256": "1bca61abec0ea8d6044a06c044c31f23f3acf44d9ced0c35650c31824255344e"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b37d4fa9dac1140d8bf7cf7326caf9f6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 822351,
"upload_time": "2025-02-18T11:18:01",
"upload_time_iso_8601": "2025-02-18T11:18:01.679115Z",
"url": "https://files.pythonhosted.org/packages/32/41/99812af0d299cdc643031c727b677b6f2059d1cd5449dc2bd83b388c9672/libipld-3.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "06463c4b9955439528248b74e614cd9ffdcb98f15c8499c8e5e59bdece98924c",
"md5": "f31a3d92e3b6446435bb663624cd664d",
"sha256": "b45f04c8426e08d5be9f648cc3c8c4625e9de66d7d9bbb191ff477ebf87f2921"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f31a3d92e3b6446435bb663624cd664d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 682391,
"upload_time": "2025-02-18T11:18:02",
"upload_time_iso_8601": "2025-02-18T11:18:02.846203Z",
"url": "https://files.pythonhosted.org/packages/06/46/3c4b9955439528248b74e614cd9ffdcb98f15c8499c8e5e59bdece98924c/libipld-3.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "973d4a8f33b94e66f96aebc8b5801bd7390647838497f52c5c3d8dfc2a823bbd",
"md5": "b9f4478074bbf7eea45b909a21699801",
"sha256": "7a39bb7db97c7335c77c16723d7cac69e128b0d9792c5dd61101b65e3a084d1f"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "b9f4478074bbf7eea45b909a21699801",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 692317,
"upload_time": "2025-02-18T11:18:04",
"upload_time_iso_8601": "2025-02-18T11:18:04.039302Z",
"url": "https://files.pythonhosted.org/packages/97/3d/4a8f33b94e66f96aebc8b5801bd7390647838497f52c5c3d8dfc2a823bbd/libipld-3.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2389760fb06603d9c98b31d76a916bf46cd82bcb9c02bc1fd30c371cc907e95d",
"md5": "f407a5ac370fc97c097a40bc09171445",
"sha256": "cd93e321bdc50253a817d39d5777f999b0f08733cd4feee70116a2b0f55dc1f4"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f407a5ac370fc97c097a40bc09171445",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 849931,
"upload_time": "2025-02-18T11:18:06",
"upload_time_iso_8601": "2025-02-18T11:18:06.007530Z",
"url": "https://files.pythonhosted.org/packages/23/89/760fb06603d9c98b31d76a916bf46cd82bcb9c02bc1fd30c371cc907e95d/libipld-3.0.1-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e77522c466dabafe64a893b662519329d6b2ff8fb490e0c3d5cff37f5014d626",
"md5": "ce0216b65a53cf1c75340d3071e152c7",
"sha256": "cb7862704ff71d1fd359ffef6f795eb83463a58c904237ef447206e4772d5412"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ce0216b65a53cf1c75340d3071e152c7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 842209,
"upload_time": "2025-02-18T11:18:08",
"upload_time_iso_8601": "2025-02-18T11:18:08.281539Z",
"url": "https://files.pythonhosted.org/packages/e7/75/22c466dabafe64a893b662519329d6b2ff8fb490e0c3d5cff37f5014d626/libipld-3.0.1-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c904b172171fd33281ef8f7ead9fb5cbb3b6027069c23fbc54f8f4aa08ab90f1",
"md5": "177ff743983d9656293af09a00ebbdf6",
"sha256": "7a6122fad76d604c277f5690a4d41509a5b3c71f0c7d9fd0cc7c80672aa34402"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "177ff743983d9656293af09a00ebbdf6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 182300,
"upload_time": "2025-02-18T11:18:09",
"upload_time_iso_8601": "2025-02-18T11:18:09.595255Z",
"url": "https://files.pythonhosted.org/packages/c9/04/b172171fd33281ef8f7ead9fb5cbb3b6027069c23fbc54f8f4aa08ab90f1/libipld-3.0.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d098edbbe92a22845f35c359c0b3dc96cc693437c807fd088ae8cf2c10feb039",
"md5": "5670ee9ef7aa7e913287b38a575f0f51",
"sha256": "8773a3e359d345dc5f96df8812da0e83fba37e7edec630e1836f78ac02c6c613"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "5670ee9ef7aa7e913287b38a575f0f51",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 197186,
"upload_time": "2025-02-18T11:18:11",
"upload_time_iso_8601": "2025-02-18T11:18:11.395581Z",
"url": "https://files.pythonhosted.org/packages/d0/98/edbbe92a22845f35c359c0b3dc96cc693437c807fd088ae8cf2c10feb039/libipld-3.0.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1ca9ec5934d5d025a8af6a6bdc4bb8ba1aa63faa6be596577a4c4a5d3f576b85",
"md5": "6e2bb1789e0a8b57b3dfe734bc80375a",
"sha256": "9701d770111b0b64949b957d432df693c9a7b2a4a348c0627e4db43ade60e3aa"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp311-cp311-win_arm64.whl",
"has_sig": false,
"md5_digest": "6e2bb1789e0a8b57b3dfe734bc80375a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 177692,
"upload_time": "2025-02-18T11:18:12",
"upload_time_iso_8601": "2025-02-18T11:18:12.465313Z",
"url": "https://files.pythonhosted.org/packages/1c/a9/ec5934d5d025a8af6a6bdc4bb8ba1aa63faa6be596577a4c4a5d3f576b85/libipld-3.0.1-cp311-cp311-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b86b87c3b3222a1ebc9b8654a2ec168d177e85c993a679b698f53f199b367e37",
"md5": "580c19a7891dcb20ae7722c714a81164",
"sha256": "27313adb70ca9ecfaaa34f1ca6e45ee0569935b7ba9802f78c2f37f7a633a7dd"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "580c19a7891dcb20ae7722c714a81164",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 307914,
"upload_time": "2025-02-18T11:18:13",
"upload_time_iso_8601": "2025-02-18T11:18:13.449524Z",
"url": "https://files.pythonhosted.org/packages/b8/6b/87c3b3222a1ebc9b8654a2ec168d177e85c993a679b698f53f199b367e37/libipld-3.0.1-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "62fc9cd90e1bf5e50fa31ced3a9e4eced8b386a509f693d915ff483c320f8556",
"md5": "f5f07b5ea1bfb0f06f1cc8c89605ef7f",
"sha256": "bf5a14647350aa6779d634b7dc0f6967296fe52e9ca1d6132e24aa388c77c68e"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f5f07b5ea1bfb0f06f1cc8c89605ef7f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 295778,
"upload_time": "2025-02-18T11:18:15",
"upload_time_iso_8601": "2025-02-18T11:18:15.223731Z",
"url": "https://files.pythonhosted.org/packages/62/fc/9cd90e1bf5e50fa31ced3a9e4eced8b386a509f693d915ff483c320f8556/libipld-3.0.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b17c4ee7f38d43d513935179706011aa8fa5ef70d223626477de05ae301f4ae",
"md5": "9ba580477cbcfb5f9da52204684d0854",
"sha256": "3d9e619573d500eb4a4ab4a8ef90882305fba43a5a405eb80fcc0afe5d6e9dcd"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9ba580477cbcfb5f9da52204684d0854",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 675489,
"upload_time": "2025-02-18T11:18:16",
"upload_time_iso_8601": "2025-02-18T11:18:16.808279Z",
"url": "https://files.pythonhosted.org/packages/9b/17/c4ee7f38d43d513935179706011aa8fa5ef70d223626477de05ae301f4ae/libipld-3.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8f93f7ba7d2ce896a774634f3a279a0d7900ea2b76e0d93c335727b01c564fd6",
"md5": "8d0a7ed9a9e8763571eef285210ea38b",
"sha256": "a2fbfaed3fc98c95cd412e61e960cd41633fc880de24327613b0cb0b974d277b"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8d0a7ed9a9e8763571eef285210ea38b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 681145,
"upload_time": "2025-02-18T11:18:18",
"upload_time_iso_8601": "2025-02-18T11:18:18.835635Z",
"url": "https://files.pythonhosted.org/packages/8f/93/f7ba7d2ce896a774634f3a279a0d7900ea2b76e0d93c335727b01c564fd6/libipld-3.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9216c247088ec2194bfc5b5ed71059c468d1f16987696905fe9b5aaaac336521",
"md5": "85fe96a9c5f373d94e3242ab9a66f445",
"sha256": "b36044476920455a26d30df75728eab069201c42c0af3e3610a30fd62b96ab55"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "85fe96a9c5f373d94e3242ab9a66f445",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 685159,
"upload_time": "2025-02-18T11:18:20",
"upload_time_iso_8601": "2025-02-18T11:18:20.172520Z",
"url": "https://files.pythonhosted.org/packages/92/16/c247088ec2194bfc5b5ed71059c468d1f16987696905fe9b5aaaac336521/libipld-3.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e1f33d0442d0bd92f2bbc5bc7259569c2886bd1398a6f090ea30cd19e8c45f00",
"md5": "b2b8e140e09c2d92cbbc6833fa0e8903",
"sha256": "4586a3442f12065a64a36ae56d80c71d05a87413fbf17bae330c42793c8ecfac"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "b2b8e140e09c2d92cbbc6833fa0e8903",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 820381,
"upload_time": "2025-02-18T11:18:22",
"upload_time_iso_8601": "2025-02-18T11:18:22.398039Z",
"url": "https://files.pythonhosted.org/packages/e1/f3/3d0442d0bd92f2bbc5bc7259569c2886bd1398a6f090ea30cd19e8c45f00/libipld-3.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c7a763998349b924f0d2225ed194497d24bf088fad34fc02085fd97c4777164c",
"md5": "bddca8cbdbeb2adde545b8ccb1974c4d",
"sha256": "d243ca7dea89e1579fd95f95ff612a7b56a980743c25e2a0b1a39cae7b67e55e"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bddca8cbdbeb2adde545b8ccb1974c4d",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 681046,
"upload_time": "2025-02-18T11:18:23",
"upload_time_iso_8601": "2025-02-18T11:18:23.954084Z",
"url": "https://files.pythonhosted.org/packages/c7/a7/63998349b924f0d2225ed194497d24bf088fad34fc02085fd97c4777164c/libipld-3.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0b5abdbadafe5cb3c5ae1b4e7fd1517a436d7bda8b63621f3d39af92622d905e",
"md5": "49ecc3e42eda927ffccb1ee1edc90009",
"sha256": "1525c07363abb20e8cd416df7ca316ddfc4f592ed2da694b02e0e4a4af1b9418"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "49ecc3e42eda927ffccb1ee1edc90009",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 689931,
"upload_time": "2025-02-18T11:18:26",
"upload_time_iso_8601": "2025-02-18T11:18:26.868765Z",
"url": "https://files.pythonhosted.org/packages/0b/5a/bdbadafe5cb3c5ae1b4e7fd1517a436d7bda8b63621f3d39af92622d905e/libipld-3.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "b13c759fcc3f12e41485ef374fab202b7ba84e9f001ca821d3811ff8cd030fdf",
"md5": "6beced2fcf93a15fab6944f743ff2ce5",
"sha256": "372768df5540867962c3c16fe80976f8b162a9771e8fe1b2175f18dabf23b9ce"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "6beced2fcf93a15fab6944f743ff2ce5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 849420,
"upload_time": "2025-02-18T11:18:28",
"upload_time_iso_8601": "2025-02-18T11:18:28.847112Z",
"url": "https://files.pythonhosted.org/packages/b1/3c/759fcc3f12e41485ef374fab202b7ba84e9f001ca821d3811ff8cd030fdf/libipld-3.0.1-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c4acd697be6d9f20c5176d11193edbac70d55bdeaa70cd110a156ac87aaecaae",
"md5": "7769331ad71dc627b7008b9292c53ef0",
"sha256": "47bf15f9fc5890ff4807c0c5cb0ff99d625bcea3cd222aaa500d57466da529bd"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "7769331ad71dc627b7008b9292c53ef0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 841270,
"upload_time": "2025-02-18T11:18:30",
"upload_time_iso_8601": "2025-02-18T11:18:30.588079Z",
"url": "https://files.pythonhosted.org/packages/c4/ac/d697be6d9f20c5176d11193edbac70d55bdeaa70cd110a156ac87aaecaae/libipld-3.0.1-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6e915c64cd11e2daee21c968baa6a0669a0f402ead5fc99ad78b92e06a42e4e5",
"md5": "2022552e78e79f5351b17b004e37ef06",
"sha256": "989d37ae0cb31380e6b76391e0272342de830adad2821c2de7b925b360fc45f3"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "2022552e78e79f5351b17b004e37ef06",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 182583,
"upload_time": "2025-02-18T11:18:31",
"upload_time_iso_8601": "2025-02-18T11:18:31.775319Z",
"url": "https://files.pythonhosted.org/packages/6e/91/5c64cd11e2daee21c968baa6a0669a0f402ead5fc99ad78b92e06a42e4e5/libipld-3.0.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "84b737f88ada4e6fb762a71e93366c320f58995022cf8f67c4ad91d4b9a4568d",
"md5": "8f0b21b0b27b3f4b85d0001508f2d34e",
"sha256": "4557f20d4b8e61ac6c89ab4cea04f3a518a266f3c3d7348cf4cc8ac9b02c89dc"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "8f0b21b0b27b3f4b85d0001508f2d34e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 197643,
"upload_time": "2025-02-18T11:18:32",
"upload_time_iso_8601": "2025-02-18T11:18:32.860721Z",
"url": "https://files.pythonhosted.org/packages/84/b7/37f88ada4e6fb762a71e93366c320f58995022cf8f67c4ad91d4b9a4568d/libipld-3.0.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3a23184f246a3ef1f6fe9775ad27851091a3779c14657e5591f6bdbe910bfe88",
"md5": "ebae76985a3b95c9f79512b5c2bebdfb",
"sha256": "92ec97dac2e978f09343ebb64b0bb9bed9c294e8a224490552cfc200e9101f5c"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp312-cp312-win_arm64.whl",
"has_sig": false,
"md5_digest": "ebae76985a3b95c9f79512b5c2bebdfb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 176991,
"upload_time": "2025-02-18T11:18:34",
"upload_time_iso_8601": "2025-02-18T11:18:34.147135Z",
"url": "https://files.pythonhosted.org/packages/3a/23/184f246a3ef1f6fe9775ad27851091a3779c14657e5591f6bdbe910bfe88/libipld-3.0.1-cp312-cp312-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9da228c89265a107f9e92e32e308084edd7669e3fe40acb5e21b9e5af231f627",
"md5": "d4d30b3856896123e222bbb075ecbee2",
"sha256": "2cc452e533b7af10a66134aa33a064b40e05fe51fa4a509a969342768543953f"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "d4d30b3856896123e222bbb075ecbee2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 305678,
"upload_time": "2025-02-18T11:18:36",
"upload_time_iso_8601": "2025-02-18T11:18:36.125233Z",
"url": "https://files.pythonhosted.org/packages/9d/a2/28c89265a107f9e92e32e308084edd7669e3fe40acb5e21b9e5af231f627/libipld-3.0.1-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0541ccb2251240547e0903a55f84bcab0de3b766297f5112c9a3519ce0c66dee",
"md5": "e525da418d9c0d8a30ef04f4a0cd188e",
"sha256": "6cd8e21c0c7ee87831dc262794637cf6c47b55c55689bc917d2c3d2518221048"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e525da418d9c0d8a30ef04f4a0cd188e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 295909,
"upload_time": "2025-02-18T11:18:37",
"upload_time_iso_8601": "2025-02-18T11:18:37.246241Z",
"url": "https://files.pythonhosted.org/packages/05/41/ccb2251240547e0903a55f84bcab0de3b766297f5112c9a3519ce0c66dee/libipld-3.0.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9b0193f4e7f751eaafb6e7ba2a5c2dc859eda743837f3edbd06b712a5e92e63e",
"md5": "b12702288f261e9608af334526147d7b",
"sha256": "9de6425fc8ba0e9072c77826e66ece2dcb1d161f933cc35f2ad94470d5a304fb"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b12702288f261e9608af334526147d7b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 675461,
"upload_time": "2025-02-18T11:18:38",
"upload_time_iso_8601": "2025-02-18T11:18:38.328779Z",
"url": "https://files.pythonhosted.org/packages/9b/01/93f4e7f751eaafb6e7ba2a5c2dc859eda743837f3edbd06b712a5e92e63e/libipld-3.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5ea7d1ff7b19e48f814f4fc908bd0a9160d80539a0128fe9b51285af09f65625",
"md5": "a5d156363eb0d75116cbfbfa28f0ddb2",
"sha256": "23c84465181ed30760ba9483e3ae71027573903cfbadf173be9fdd44bd83d8bd"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "a5d156363eb0d75116cbfbfa28f0ddb2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 681427,
"upload_time": "2025-02-18T11:18:39",
"upload_time_iso_8601": "2025-02-18T11:18:39.638205Z",
"url": "https://files.pythonhosted.org/packages/5e/a7/d1ff7b19e48f814f4fc908bd0a9160d80539a0128fe9b51285af09f65625/libipld-3.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e2427c3b45b9186f7f67015b0d717feeaa920ea215c51df675e27419f598ffb2",
"md5": "8b401e356563f7f212f3359964a47447",
"sha256": "45052b7f9b6a61a425318ff611b115571965d00e42c2ca66dfd0c56a4f3002b4"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8b401e356563f7f212f3359964a47447",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 684988,
"upload_time": "2025-02-18T11:18:42",
"upload_time_iso_8601": "2025-02-18T11:18:42.021274Z",
"url": "https://files.pythonhosted.org/packages/e2/42/7c3b45b9186f7f67015b0d717feeaa920ea215c51df675e27419f598ffb2/libipld-3.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3302dd30f423e8e74ba830dff5bbbd2d7f68c474e5df1d3b56fce5e59bc08a1e",
"md5": "dc9a4eea3df811000d7998d959b31c9e",
"sha256": "6d183c2543db326d9a4e21819ba5674ae4f1e69dcfd853c654fba471cfbbaa88"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "dc9a4eea3df811000d7998d959b31c9e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 820272,
"upload_time": "2025-02-18T11:18:46",
"upload_time_iso_8601": "2025-02-18T11:18:46.181647Z",
"url": "https://files.pythonhosted.org/packages/33/02/dd30f423e8e74ba830dff5bbbd2d7f68c474e5df1d3b56fce5e59bc08a1e/libipld-3.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "80cdbdd10568306ed1d71d24440e08b526ae69b93405d75a5289e0d54cf7b961",
"md5": "60c04570c2256965ffeb7a271f0b575a",
"sha256": "ceb82681b6985e34609636186ac00b51105816d310ed510de1169cd65f903622"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "60c04570c2256965ffeb7a271f0b575a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 680986,
"upload_time": "2025-02-18T11:18:48",
"upload_time_iso_8601": "2025-02-18T11:18:48.285973Z",
"url": "https://files.pythonhosted.org/packages/80/cd/bdd10568306ed1d71d24440e08b526ae69b93405d75a5289e0d54cf7b961/libipld-3.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0a20d03eddce8c41f1f928efb37268424e336d97d2aca829bd267b1f12851759",
"md5": "142bbab485c5662e036a449f741bb6aa",
"sha256": "e3c71ffe0b9c182664bac3a2386e6c6580744f5aa46513d0d6823e671ab71d82"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "142bbab485c5662e036a449f741bb6aa",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 689783,
"upload_time": "2025-02-18T11:18:49",
"upload_time_iso_8601": "2025-02-18T11:18:49.501682Z",
"url": "https://files.pythonhosted.org/packages/0a/20/d03eddce8c41f1f928efb37268424e336d97d2aca829bd267b1f12851759/libipld-3.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2717fdfcb6d0b0d7120eb3ad9361173cc6d5c24814b6ea2e7b135b3bb8d6920e",
"md5": "061a6517659ee69d89dc112784807c9d",
"sha256": "6ed68ff00bb8d63e18bf823eb89ec86e9f30b997c6d152a35ec6c4c8502ea080"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "061a6517659ee69d89dc112784807c9d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 849382,
"upload_time": "2025-02-18T11:18:51",
"upload_time_iso_8601": "2025-02-18T11:18:51.183956Z",
"url": "https://files.pythonhosted.org/packages/27/17/fdfcb6d0b0d7120eb3ad9361173cc6d5c24814b6ea2e7b135b3bb8d6920e/libipld-3.0.1-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6c99237d618fa6707300a60b8b4b859855e4e34dadb00233dc1e92d911166ae2",
"md5": "ce283f821d1bf1777916e1bdff606e06",
"sha256": "8d517c69b8f29acca27b0ced0ecb78f6e54f70952a35bc8f3060b628069c63ec"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "ce283f821d1bf1777916e1bdff606e06",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 841299,
"upload_time": "2025-02-18T11:18:53",
"upload_time_iso_8601": "2025-02-18T11:18:53.398081Z",
"url": "https://files.pythonhosted.org/packages/6c/99/237d618fa6707300a60b8b4b859855e4e34dadb00233dc1e92d911166ae2/libipld-3.0.1-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "934932c73fd530fab341bebc4e400657f5c2189a8d4d627bcdeb774eb37dd90f",
"md5": "896d2dface161a1283a6b6b4c19335fb",
"sha256": "21989622e02a3bd8be16e97c412af4f48b5ddf3b32f9b0da9d7c6b0724d01e91"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "896d2dface161a1283a6b6b4c19335fb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 182567,
"upload_time": "2025-02-18T11:18:54",
"upload_time_iso_8601": "2025-02-18T11:18:54.635802Z",
"url": "https://files.pythonhosted.org/packages/93/49/32c73fd530fab341bebc4e400657f5c2189a8d4d627bcdeb774eb37dd90f/libipld-3.0.1-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7f1eea73ea525d716ce836367daa212d4d0b1c25a89ffa281c9fee535cb99840",
"md5": "c98cf2bab6bde52e11a001dede665541",
"sha256": "da81784d00597a0c9ac0a133ac820aaea60599b077778046dde4726e1a08685c"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "c98cf2bab6bde52e11a001dede665541",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 196204,
"upload_time": "2025-02-18T11:18:55",
"upload_time_iso_8601": "2025-02-18T11:18:55.706783Z",
"url": "https://files.pythonhosted.org/packages/7f/1e/ea73ea525d716ce836367daa212d4d0b1c25a89ffa281c9fee535cb99840/libipld-3.0.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e2ba56e9082bdd997c41b3e58d3afb9d40cf08725cbd486f7e334538a41bc2a8",
"md5": "317fd60cc67f76296d2aba97cc4d006f",
"sha256": "d670dea8a76188e2977b5c3d780a6393bb270b0d04976436ce3afbc2cf4da516"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp313-cp313-win_arm64.whl",
"has_sig": false,
"md5_digest": "317fd60cc67f76296d2aba97cc4d006f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 177044,
"upload_time": "2025-02-18T11:18:56",
"upload_time_iso_8601": "2025-02-18T11:18:56.786175Z",
"url": "https://files.pythonhosted.org/packages/e2/ba/56e9082bdd997c41b3e58d3afb9d40cf08725cbd486f7e334538a41bc2a8/libipld-3.0.1-cp313-cp313-win_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3730e4bcef4be920fddfd8f2a7c989f550c77e4a1be946e934418040a9ff0def",
"md5": "22f717b32134d05b88f79d23d4be4ca7",
"sha256": "5c79c5d2e914569081538d41b27ebb86fe20deb3e6344a42d6d4ee17523b693d"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "22f717b32134d05b88f79d23d4be4ca7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 306720,
"upload_time": "2025-02-18T11:18:58",
"upload_time_iso_8601": "2025-02-18T11:18:58.612388Z",
"url": "https://files.pythonhosted.org/packages/37/30/e4bcef4be920fddfd8f2a7c989f550c77e4a1be946e934418040a9ff0def/libipld-3.0.1-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e05a9526758ec480c19e50f556a440c759191a3c1a952c70f20b8da0e4e58cdf",
"md5": "2d653457c93eb1f0f3f86bde3e9303c9",
"sha256": "705976719193ca6f569c3417a46d47bf68323d47bf63adc1a8178d8456615d22"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "2d653457c93eb1f0f3f86bde3e9303c9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 283870,
"upload_time": "2025-02-18T11:19:00",
"upload_time_iso_8601": "2025-02-18T11:19:00.747488Z",
"url": "https://files.pythonhosted.org/packages/e0/5a/9526758ec480c19e50f556a440c759191a3c1a952c70f20b8da0e4e58cdf/libipld-3.0.1-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7e0b2751ce7411f34b061e49965065aaa95bb9402194e8168b00e37b5f66e0a6",
"md5": "80c9efdb2689b4af92bf85015b2bcff6",
"sha256": "27522ab9643c417929f5c3408e07ded370e05454d11cb649fcb3da3f7743035f"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "80c9efdb2689b4af92bf85015b2bcff6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 676714,
"upload_time": "2025-02-18T11:19:01",
"upload_time_iso_8601": "2025-02-18T11:19:01.927066Z",
"url": "https://files.pythonhosted.org/packages/7e/0b/2751ce7411f34b061e49965065aaa95bb9402194e8168b00e37b5f66e0a6/libipld-3.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ab3a7fed8bb96626ba2fe75ecd9a4d463505f22f2e9ea1880e94ac45bfedf606",
"md5": "b90fb5b5d3de9ec8003e452248ebc615",
"sha256": "a93e753cf6e77136dda2600e96cf9057a345bc50daa0442ecc89c56ae3bc7582"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "b90fb5b5d3de9ec8003e452248ebc615",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 682640,
"upload_time": "2025-02-18T11:19:03",
"upload_time_iso_8601": "2025-02-18T11:19:03.397125Z",
"url": "https://files.pythonhosted.org/packages/ab/3a/7fed8bb96626ba2fe75ecd9a4d463505f22f2e9ea1880e94ac45bfedf606/libipld-3.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "85b9870ba29a8898ca2e43cf86b67a1fda16f7f983ef6cc876af8113043c68a3",
"md5": "8c0fed99ddf8fc907909362497ca83b2",
"sha256": "b0651df20706b5667cb417f8b2edf61b90d85a299a3bb93c8d6a8de992fcf496"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8c0fed99ddf8fc907909362497ca83b2",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 687100,
"upload_time": "2025-02-18T11:19:04",
"upload_time_iso_8601": "2025-02-18T11:19:04.574473Z",
"url": "https://files.pythonhosted.org/packages/85/b9/870ba29a8898ca2e43cf86b67a1fda16f7f983ef6cc876af8113043c68a3/libipld-3.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a7aefadc3af738e1f5cffc91f96a7da75cf4a1f2dcc06d1f7cdd5c620f5f8646",
"md5": "99f200028c4eea4beab605eaa084d951",
"sha256": "a2c64769a9756ed90ab3e7a6bd14f7a3ea39c69f09295dda0b74059f12afb77d"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "99f200028c4eea4beab605eaa084d951",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 822901,
"upload_time": "2025-02-18T11:19:06",
"upload_time_iso_8601": "2025-02-18T11:19:06.069279Z",
"url": "https://files.pythonhosted.org/packages/a7/ae/fadc3af738e1f5cffc91f96a7da75cf4a1f2dcc06d1f7cdd5c620f5f8646/libipld-3.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9c0493867b968c6f9f03ee5bcf55025fef904b1655d66ca33f5d064c87db56dd",
"md5": "110aec92aa0cffb583c0eba6d3f9512a",
"sha256": "d89ca3db0f2a3a3f9821819c033c7eea3cd5ecc7026e4d903b41132385a6f103"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "110aec92aa0cffb583c0eba6d3f9512a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 682836,
"upload_time": "2025-02-18T11:19:07",
"upload_time_iso_8601": "2025-02-18T11:19:07.233404Z",
"url": "https://files.pythonhosted.org/packages/9c/04/93867b968c6f9f03ee5bcf55025fef904b1655d66ca33f5d064c87db56dd/libipld-3.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1543c75b1390af2d3c18f48faa5412d291708fd4f5415ae79fb540e78ca2ab3e",
"md5": "04802243b0c9d11485bcd2ec7a6afea4",
"sha256": "fb12530d1cd3845bea4eec98df6c155b09b2deaf07b783cba90661dd91efaa99"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "04802243b0c9d11485bcd2ec7a6afea4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 692486,
"upload_time": "2025-02-18T11:19:08",
"upload_time_iso_8601": "2025-02-18T11:19:08.564383Z",
"url": "https://files.pythonhosted.org/packages/15/43/c75b1390af2d3c18f48faa5412d291708fd4f5415ae79fb540e78ca2ab3e/libipld-3.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ee3fcfed017f99a341b3b84a135af6325dd2a3e8411fe74bc640944175f336f",
"md5": "9c12b40c35c84c1c387646dd75f7c448",
"sha256": "25a44a11a5f3c3c1ffb4618c5b64dfa8945cad639b8ccaa0aaf883ddd119a07b"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "9c12b40c35c84c1c387646dd75f7c448",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 850609,
"upload_time": "2025-02-18T11:19:09",
"upload_time_iso_8601": "2025-02-18T11:19:09.796746Z",
"url": "https://files.pythonhosted.org/packages/8e/e3/fcfed017f99a341b3b84a135af6325dd2a3e8411fe74bc640944175f336f/libipld-3.0.1-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ec7b54c6eebc21f81b4e4d0354a910afde09fe7073f93552184a5f129e1d8700",
"md5": "f6ad298b781a4cbeb7e9c4a5f0fb0351",
"sha256": "c164f006ec4880181ab0c6fb13a4aab6a9ab987fd7b371664a18e878c60bb346"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f6ad298b781a4cbeb7e9c4a5f0fb0351",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 842617,
"upload_time": "2025-02-18T11:19:11",
"upload_time_iso_8601": "2025-02-18T11:19:11.004526Z",
"url": "https://files.pythonhosted.org/packages/ec/7b/54c6eebc21f81b4e4d0354a910afde09fe7073f93552184a5f129e1d8700/libipld-3.0.1-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cd5f69e725532784663d378c5ea0a2c364f0ee70b1bcce65af8814d4077d9e15",
"md5": "6c992098c975df1b5c87e116c219c3c3",
"sha256": "0ba57da925d622345a7f29058e7aba6c18dd6e97998a3fef19f8f7839ad9bc88"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "6c992098c975df1b5c87e116c219c3c3",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 182679,
"upload_time": "2025-02-18T11:19:13",
"upload_time_iso_8601": "2025-02-18T11:19:13.472602Z",
"url": "https://files.pythonhosted.org/packages/cd/5f/69e725532784663d378c5ea0a2c364f0ee70b1bcce65af8814d4077d9e15/libipld-3.0.1-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1b9cadfc6c640cbeb5bf07097c5025ce1a81d5b9db28f4540aec334d07f4d550",
"md5": "cd4adf057342e89347872bfa880d9335",
"sha256": "c3e4892bfbf6543e13818c49d1ac7ae865aab7e5a71030c812022ab83df72460"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "cd4adf057342e89347872bfa880d9335",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 197363,
"upload_time": "2025-02-18T11:19:14",
"upload_time_iso_8601": "2025-02-18T11:19:14.505429Z",
"url": "https://files.pythonhosted.org/packages/1b/9c/adfc6c640cbeb5bf07097c5025ce1a81d5b9db28f4540aec334d07f4d550/libipld-3.0.1-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8c41628a493471d11b8a30bb52b549bca2c11bf77289a9118ea5b1fb41996326",
"md5": "20d540d94b52eb9677856140e8768c55",
"sha256": "90efb6507d974689dce2f6e71fce9781f5e0b2b11cb8057972f4c8aece186b36"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "20d540d94b52eb9677856140e8768c55",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 310190,
"upload_time": "2025-02-18T11:19:15",
"upload_time_iso_8601": "2025-02-18T11:19:15.672992Z",
"url": "https://files.pythonhosted.org/packages/8c/41/628a493471d11b8a30bb52b549bca2c11bf77289a9118ea5b1fb41996326/libipld-3.0.1-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "fce93dac1e975e8ec69a8a92b97786123a7ff2e2dac6f4ee7ace79f141a11034",
"md5": "ad36a7b8a7a78b48ecd044eb73d5c527",
"sha256": "0ac12b5a9e27ee4bb9ba0209711b797036c0ffd935868d20a12353b9b2e03246"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ad36a7b8a7a78b48ecd044eb73d5c527",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 284140,
"upload_time": "2025-02-18T11:19:16",
"upload_time_iso_8601": "2025-02-18T11:19:16.896862Z",
"url": "https://files.pythonhosted.org/packages/fc/e9/3dac1e975e8ec69a8a92b97786123a7ff2e2dac6f4ee7ace79f141a11034/libipld-3.0.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "02fd55b46c851cd4434445adabb8e0711270f3519ded31361e701dc3749309b0",
"md5": "31a728a2882f636c41009dd65e1f34ea",
"sha256": "efeddf54a5df217ec589b64d5ab595fb8c7d6182d56fdca05da063df1151a5ef"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "31a728a2882f636c41009dd65e1f34ea",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 677198,
"upload_time": "2025-02-18T11:19:18",
"upload_time_iso_8601": "2025-02-18T11:19:18.129434Z",
"url": "https://files.pythonhosted.org/packages/02/fd/55b46c851cd4434445adabb8e0711270f3519ded31361e701dc3749309b0/libipld-3.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da8f737af80e790bdccac18577ed901752e3b46c88e00381104edb69cdd8ef04",
"md5": "f64365b052bcb24ee71ea2f92377680f",
"sha256": "e68f5ff1b52a6c01ad190487af40839fe2ec77083a98a833312c41a51b4a9ba5"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "f64365b052bcb24ee71ea2f92377680f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 682810,
"upload_time": "2025-02-18T11:19:19",
"upload_time_iso_8601": "2025-02-18T11:19:19.539589Z",
"url": "https://files.pythonhosted.org/packages/da/8f/737af80e790bdccac18577ed901752e3b46c88e00381104edb69cdd8ef04/libipld-3.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8b23771c422db454ff8d3daf9399db81f0f6263deec3cce2225caf61584c25a5",
"md5": "9dce6f64f15a65ec8bf39e44b0267cb6",
"sha256": "2e27b70f42f146fffd32a9e0b475908668d26cb524240a94587bbcef78d528ae"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9dce6f64f15a65ec8bf39e44b0267cb6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 687539,
"upload_time": "2025-02-18T11:19:20",
"upload_time_iso_8601": "2025-02-18T11:19:20.796709Z",
"url": "https://files.pythonhosted.org/packages/8b/23/771c422db454ff8d3daf9399db81f0f6263deec3cce2225caf61584c25a5/libipld-3.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf6df28ea5d12c4533b122e79324f465b18b673d9e6e7758b34e7fcb679d0561",
"md5": "f5b4b32c88f3c9caa2d46be8bc621ebb",
"sha256": "02b76a9abed05aed2c5bc599c67f4cf1bef1f2b6a2e5c38223cbabc8a6b1bc2a"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "f5b4b32c88f3c9caa2d46be8bc621ebb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 822862,
"upload_time": "2025-02-18T11:19:22",
"upload_time_iso_8601": "2025-02-18T11:19:22.033958Z",
"url": "https://files.pythonhosted.org/packages/cf/6d/f28ea5d12c4533b122e79324f465b18b673d9e6e7758b34e7fcb679d0561/libipld-3.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9d7e95e77bfe83a6bbf2363a49e6baf4c9a3026af7d25864ed452f70a9296d67",
"md5": "0d6cd6bd92f1626ecfa35869a65bb8d9",
"sha256": "eea00d8649dd7411d03f75f9e4624f0b8e9ef0db92784077d22612e0ead7059a"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0d6cd6bd92f1626ecfa35869a65bb8d9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 682903,
"upload_time": "2025-02-18T11:19:23",
"upload_time_iso_8601": "2025-02-18T11:19:23.297331Z",
"url": "https://files.pythonhosted.org/packages/9d/7e/95e77bfe83a6bbf2363a49e6baf4c9a3026af7d25864ed452f70a9296d67/libipld-3.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "22ce20aa8fa6aa7292990c691fb8c7e9166799c74bdd62546f40f38e6f74c329",
"md5": "3b59fa34bb6c55e5fcf75302f8736582",
"sha256": "fc946f4a90890f796a3ec6b41cf01e4a42770f18cef21a67e406812f2395ccb5"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "3b59fa34bb6c55e5fcf75302f8736582",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 692958,
"upload_time": "2025-02-18T11:19:24",
"upload_time_iso_8601": "2025-02-18T11:19:24.502063Z",
"url": "https://files.pythonhosted.org/packages/22/ce/20aa8fa6aa7292990c691fb8c7e9166799c74bdd62546f40f38e6f74c329/libipld-3.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8355df518e6ec028fd31b1ca85f33f08f7d2fc9ba2d90fc5205cfa7e3217c954",
"md5": "6cc20ed198cf47fc6c3c65e78e281a11",
"sha256": "79e9c1d94de6e8d93b7296a4b1df673bea45a633a2dbeafea1d0238326c48193"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "6cc20ed198cf47fc6c3c65e78e281a11",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 850665,
"upload_time": "2025-02-18T11:19:25",
"upload_time_iso_8601": "2025-02-18T11:19:25.720723Z",
"url": "https://files.pythonhosted.org/packages/83/55/df518e6ec028fd31b1ca85f33f08f7d2fc9ba2d90fc5205cfa7e3217c954/libipld-3.0.1-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41bfd69c526805b7aac74107f8c8b63cc9d7a27241fd920cdcf9940150b9b2e5",
"md5": "4c7324d7780fc249455e37fc686edc21",
"sha256": "e23cc622cb5617430ee442356455fe3430d45c64a7230595616ddd6d19f171f4"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "4c7324d7780fc249455e37fc686edc21",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 842787,
"upload_time": "2025-02-18T11:19:27",
"upload_time_iso_8601": "2025-02-18T11:19:27.034994Z",
"url": "https://files.pythonhosted.org/packages/41/bf/d69c526805b7aac74107f8c8b63cc9d7a27241fd920cdcf9940150b9b2e5/libipld-3.0.1-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a7dfc47c66594ad78944ae864667e4b2834e2c066d45a3799c23464023f7cb7",
"md5": "5b6de9a3475eb45f599909327ae16dc7",
"sha256": "2e9550b2548872b35c2e81e2cbecf836d7abcae77cfefe48cde45ef2ee1d413f"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "5b6de9a3475eb45f599909327ae16dc7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 182963,
"upload_time": "2025-02-18T11:19:28",
"upload_time_iso_8601": "2025-02-18T11:19:28.239693Z",
"url": "https://files.pythonhosted.org/packages/5a/7d/fc47c66594ad78944ae864667e4b2834e2c066d45a3799c23464023f7cb7/libipld-3.0.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0aa40145715b22f40b07f772a73c2e701e61fa6f2988e76e60f2c1c9297701ec",
"md5": "ef6b51cc3fdab3189275ca95c98d5f68",
"sha256": "d82eab147616f5c5571fb4e7f3aa7dc550a44e674299478ba0b9ad6bcba5404d"
},
"downloads": -1,
"filename": "libipld-3.0.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "ef6b51cc3fdab3189275ca95c98d5f68",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 198710,
"upload_time": "2025-02-18T11:19:29",
"upload_time_iso_8601": "2025-02-18T11:19:29.986213Z",
"url": "https://files.pythonhosted.org/packages/0a/a4/0145715b22f40b07f772a73c2e701e61fa6f2988e76e60f2c1c9297701ec/libipld-3.0.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5400b0c82e054ec9bedd3c39f1e13ae17ce5e8f0790a8eb6f00a62766ca57fcc",
"md5": "797a01bddff33488cf7b64b45e87f58d",
"sha256": "6360f1c8ed18f8dda2089343428cfac836806e53915ec8f387020600c7895608"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "797a01bddff33488cf7b64b45e87f58d",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 298354,
"upload_time": "2025-02-18T11:19:32",
"upload_time_iso_8601": "2025-02-18T11:19:32.047045Z",
"url": "https://files.pythonhosted.org/packages/54/00/b0c82e054ec9bedd3c39f1e13ae17ce5e8f0790a8eb6f00a62766ca57fcc/libipld-3.0.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c8fe6d753f500d840410e49f0bb93915a7a51115dce4a330f33207d8893e2d7",
"md5": "c69903fcb30474512a12b829dc8c480b",
"sha256": "ae63d93bbadcf56627344d323e6e0a498b3fd35c3a30acfa693ff1045ebc877a"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c69903fcb30474512a12b829dc8c480b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 285225,
"upload_time": "2025-02-18T11:19:33",
"upload_time_iso_8601": "2025-02-18T11:19:33.330462Z",
"url": "https://files.pythonhosted.org/packages/2c/8f/e6d753f500d840410e49f0bb93915a7a51115dce4a330f33207d8893e2d7/libipld-3.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "7a9538670bb745dc208f2aaeafd918856fa5b6277361828563e8d66d851bdcd4",
"md5": "6fe058c0b81ce2c3a7a8057b01c22fbe",
"sha256": "cd47f297f6c3ee9dc529733e5710a0ab9c2dd3baaf504dec990ad2b0360dc2de"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "6fe058c0b81ce2c3a7a8057b01c22fbe",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 678424,
"upload_time": "2025-02-18T11:19:37",
"upload_time_iso_8601": "2025-02-18T11:19:37.216332Z",
"url": "https://files.pythonhosted.org/packages/7a/95/38670bb745dc208f2aaeafd918856fa5b6277361828563e8d66d851bdcd4/libipld-3.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f1b4e65d6a2def8929ba71b96101a620227f1d6b9de053de08d5cab649144b6b",
"md5": "8cf91f9725b46846595cf3f51160b5a8",
"sha256": "a921da6e699bd0aec3f3a0dd586b25eb7d3ed807be691b7f9a56419aa5077590"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8cf91f9725b46846595cf3f51160b5a8",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 674823,
"upload_time": "2025-02-18T11:19:38",
"upload_time_iso_8601": "2025-02-18T11:19:38.530435Z",
"url": "https://files.pythonhosted.org/packages/f1/b4/e65d6a2def8929ba71b96101a620227f1d6b9de053de08d5cab649144b6b/libipld-3.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6093862ae615e660da7c728f637104dbf4a112a0078864b6e5e3b7baf2713826",
"md5": "4ff9a52606125cbd7d436b8a72a6a2e0",
"sha256": "fd5771ddf3c727ee95994fbf632d9262821fe736d87fd38f91dcd1ed0261d370"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "4ff9a52606125cbd7d436b8a72a6a2e0",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 694488,
"upload_time": "2025-02-18T11:19:40",
"upload_time_iso_8601": "2025-02-18T11:19:40.328960Z",
"url": "https://files.pythonhosted.org/packages/60/93/862ae615e660da7c728f637104dbf4a112a0078864b6e5e3b7baf2713826/libipld-3.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5b3ea34b21831d6b4b5287252507cdcc13ad871684b68e8a77d432e017246c63",
"md5": "ce79116034189d066df801a725d1699b",
"sha256": "daa2a7e47d9019b7872edb3b8d42cd03764de195e61b8f22351b6034e7559d5c"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "ce79116034189d066df801a725d1699b",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 851989,
"upload_time": "2025-02-18T11:19:42",
"upload_time_iso_8601": "2025-02-18T11:19:42.444135Z",
"url": "https://files.pythonhosted.org/packages/5b/3e/a34b21831d6b4b5287252507cdcc13ad871684b68e8a77d432e017246c63/libipld-3.0.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "0d7b9a101f13a13c1773734a0868e5ce0ba23c365c03aa420ebd0e352dd08800",
"md5": "d808298056aec51870d1e1bd9bad5a85",
"sha256": "55e90aa2c41a2dca6e75502ef8e8e7e08423733810280d98497d99ab7d4bbd2d"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d808298056aec51870d1e1bd9bad5a85",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 843892,
"upload_time": "2025-02-18T11:19:44",
"upload_time_iso_8601": "2025-02-18T11:19:44.596250Z",
"url": "https://files.pythonhosted.org/packages/0d/7b/9a101f13a13c1773734a0868e5ce0ba23c365c03aa420ebd0e352dd08800/libipld-3.0.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "9efb6e66e2ff008a719289070b2d2fb49142fe93d694caf79f758016e1959531",
"md5": "bf797160f003db429fe5ed8aa16c9bca",
"sha256": "ad1cb3934ef6d6681ee9c8917c2ab4f360907d20db4ccb84b1abdf219cfefee1"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp310-pypy310_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "bf797160f003db429fe5ed8aa16c9bca",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 190467,
"upload_time": "2025-02-18T11:19:45",
"upload_time_iso_8601": "2025-02-18T11:19:45.899900Z",
"url": "https://files.pythonhosted.org/packages/9e/fb/6e66e2ff008a719289070b2d2fb49142fe93d694caf79f758016e1959531/libipld-3.0.1-pp310-pypy310_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f675b04f33d84906af904b3aa227a270fd0b31427a7a332193dc20531d69bce8",
"md5": "c9e7b8c7dd537516029a4662c735a400",
"sha256": "9a85b51d3f205afe63f84cb44afa3f93fb41f0195827b52cf6f31c65823460f5"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "c9e7b8c7dd537516029a4662c735a400",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 298790,
"upload_time": "2025-02-18T11:19:47",
"upload_time_iso_8601": "2025-02-18T11:19:47.843282Z",
"url": "https://files.pythonhosted.org/packages/f6/75/b04f33d84906af904b3aa227a270fd0b31427a7a332193dc20531d69bce8/libipld-3.0.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "cf9e56ef6e1ab837f42f6b943ca58283f3d8e40b2e987ce39fb6903c1508699e",
"md5": "98c2fc7c30979491ccf7e36ba37d61b2",
"sha256": "1324353b84108dcde76ba7e11bbcdc5e749595d2c6d2ec2055f76e475f89d0bd"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "98c2fc7c30979491ccf7e36ba37d61b2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 285538,
"upload_time": "2025-02-18T11:19:49",
"upload_time_iso_8601": "2025-02-18T11:19:49.053196Z",
"url": "https://files.pythonhosted.org/packages/cf/9e/56ef6e1ab837f42f6b943ca58283f3d8e40b2e987ce39fb6903c1508699e/libipld-3.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "63a9041f18a34ddb57c4118355c311abb1e478ee307fef0ec29af17b9c9bbc60",
"md5": "8d1982d1bb07ca80cbc26850cacad6e6",
"sha256": "92ec526fc8e375e5ef443097e992047b51dbaa298852021cfe1980990f56f93b"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8d1982d1bb07ca80cbc26850cacad6e6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 678680,
"upload_time": "2025-02-18T11:19:50",
"upload_time_iso_8601": "2025-02-18T11:19:50.297926Z",
"url": "https://files.pythonhosted.org/packages/63/a9/041f18a34ddb57c4118355c311abb1e478ee307fef0ec29af17b9c9bbc60/libipld-3.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "32412b602705d59f13dbe8967c20ff085dc069417c8bfdd3ec5af281c234f085",
"md5": "e3f6f9d41514d027da50cf17968bc0b1",
"sha256": "c7d5e36c5218afa0569b581c312ea682ca2fe0baaa3510253da25c49a607fe6a"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e3f6f9d41514d027da50cf17968bc0b1",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 675134,
"upload_time": "2025-02-18T11:19:52",
"upload_time_iso_8601": "2025-02-18T11:19:52.592415Z",
"url": "https://files.pythonhosted.org/packages/32/41/2b602705d59f13dbe8967c20ff085dc069417c8bfdd3ec5af281c234f085/libipld-3.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c8ed0d51c22a52221d236d35d5fddc20b064ea86153ec2b1fbf8b4ea149a6402",
"md5": "6dd4503f762e8f0dad904133f1b4b643",
"sha256": "fa4a7c37a807086d8ac608ece1988a294df52c3d2e2613e175efffad3b49fc31"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"has_sig": false,
"md5_digest": "6dd4503f762e8f0dad904133f1b4b643",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 694723,
"upload_time": "2025-02-18T11:19:53",
"upload_time_iso_8601": "2025-02-18T11:19:53.981532Z",
"url": "https://files.pythonhosted.org/packages/c8/ed/0d51c22a52221d236d35d5fddc20b064ea86153ec2b1fbf8b4ea149a6402/libipld-3.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f14fb63b19b5ebad21912939b101a5e2f92936a88be8a43fca03a41bd1b589b9",
"md5": "3484971fb8d77e537803d7c40f7ae6f2",
"sha256": "b473efa4efc6a8914986653f4548ef42c272b68e3b7bde6e0b64bc8cd8c4212c"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "3484971fb8d77e537803d7c40f7ae6f2",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 852251,
"upload_time": "2025-02-18T11:19:55",
"upload_time_iso_8601": "2025-02-18T11:19:55.885948Z",
"url": "https://files.pythonhosted.org/packages/f1/4f/b63b19b5ebad21912939b101a5e2f92936a88be8a43fca03a41bd1b589b9/libipld-3.0.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "29d55c403e48430f3604a1cb90bf36fbfb4f03ce2ee392e7dc22658786dc0ffb",
"md5": "292f1137b7a2e49cef8c2faf114c1841",
"sha256": "ac30c72a16a79c477de0cc72cfd58f3f8f3578cb8e3ce8de9fe64bb0520efc0d"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "292f1137b7a2e49cef8c2faf114c1841",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 844036,
"upload_time": "2025-02-18T11:19:57",
"upload_time_iso_8601": "2025-02-18T11:19:57.214606Z",
"url": "https://files.pythonhosted.org/packages/29/d5/5c403e48430f3604a1cb90bf36fbfb4f03ce2ee392e7dc22658786dc0ffb/libipld-3.0.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "502e82c5b4ca357f1ea8348e63770f6d45e6133f2db6127b0924b2dbe5a31a00",
"md5": "c3233c2119d5cb9140a623b1ea56897e",
"sha256": "8504ec3ccc18fceb78e6048ff2fccfa0219240e78a68b2e27c14b3a02df3e68e"
},
"downloads": -1,
"filename": "libipld-3.0.1-pp39-pypy39_pp73-win_amd64.whl",
"has_sig": false,
"md5_digest": "c3233c2119d5cb9140a623b1ea56897e",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 190759,
"upload_time": "2025-02-18T11:19:58",
"upload_time_iso_8601": "2025-02-18T11:19:58.496409Z",
"url": "https://files.pythonhosted.org/packages/50/2e/82c5b4ca357f1ea8348e63770f6d45e6133f2db6127b0924b2dbe5a31a00/libipld-3.0.1-pp39-pypy39_pp73-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d4adb440c64e2d1ee84f2933979175399ff09bd0ba7b1b07c6bc20ba585825cd",
"md5": "e44854bb6586190b8bf9d5f53bc32bde",
"sha256": "2970752de70e5fdcac4646900cdefaa0dca08db9b5d59c40b5496d99e3bffa64"
},
"downloads": -1,
"filename": "libipld-3.0.1.tar.gz",
"has_sig": false,
"md5_digest": "e44854bb6586190b8bf9d5f53bc32bde",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 4359070,
"upload_time": "2025-02-18T11:19:59",
"upload_time_iso_8601": "2025-02-18T11:19:59.924871Z",
"url": "https://files.pythonhosted.org/packages/d4/ad/b440c64e2d1ee84f2933979175399ff09bd0ba7b1b07c6bc20ba585825cd/libipld-3.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-02-18 11:19:59",
"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"
}