Skip to main content

Python binding to the Rust IPLD library

Project description

Python IPLD

This project aims to speed up The AT Protocol SDK by using Rust for the heavy lifting. Only atproto related parts are implemented first.

Code snippet:

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

🔗 CID (Content Identifier) Operations

  • decode_cid(data: str | bytes) -> dict - Decode CIDs from string representation (e.g., 'bafy...') or raw bytes into structured data containing version, codec, and hash information
  • encode_cid(data: str | bytes) -> str - Encode CID raw bytes to string representation, or return string CIDs as-is

📦 DAG-CBOR (Directed Acyclic Graph CBOR) Operations

  • decode_dag_cbor(data: bytes) -> Any - Decode DAG-CBOR binary data into Python objects (dicts, lists, primitives)
  • decode_dag_cbor_multi(data: bytes) -> list[Any] - Decode multiple concatenated DAG-CBOR objects from a single byte stream
  • encode_dag_cbor(data: Any) -> bytes - Encode Python objects into DAG-CBOR binary format

🌐 Multibase Operations

  • decode_multibase(data: str) -> tuple[str, bytes] - Decode multibase-encoded strings, returning the base identifier and decoded data
  • encode_multibase(code: str, data: str | bytes) -> str - Encode data using specified multibase encoding (e.g., base58btc with code 'u')

🚗 CAR (Content Addressable Archives) Operations

  • decode_car(data: bytes) -> tuple[dict, dict[bytes, dict]] - Decode CAR files into header metadata and a mapping of CID bytes to block data

Requirements

  • Python 3.8 or higher.

Installing

You can install or upgrade libipld via

pip install -U libipld

Performance

Benchmarks against cbrrr (C), py-ipld-dag (Python wrapper over Rust-backed cbor2) and dag_cbor (pure Python), measured on the four classic nativejson-benchmark fixtures (round-tripped through DAG-CBOR). Bars are operations/second relative to pure-Python dag_cbor; higher is better.

Measured on Apple M1, macOS 15 (Darwin 24.6.0), CPython 3.14.0, libipld installed from PyPI (PGO + LTO wheel).

Deserialization

deserialization

Serialization

serialization

Reproduce locally:

cd benchmark && ./run.sh

See benchmark/README.md for details.

Contributing

Contributions of all sizes are welcome. See CONTRIBUTING.md for setup, build, test, and benchmarking workflow.

License

MIT – see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

libipld-3.4.1.tar.gz (4.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

libipld-3.4.1-pp311-pypy311_pp73-win_amd64.whl (156.7 kB view details)

Uploaded PyPyWindows x86-64

libipld-3.4.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (488.1 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

libipld-3.4.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (450.4 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

libipld-3.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

libipld-3.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

libipld-3.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (300.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

libipld-3.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (248.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

libipld-3.4.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (263.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

libipld-3.4.1-cp314-cp314-win_arm64.whl (150.2 kB view details)

Uploaded CPython 3.14Windows ARM64

libipld-3.4.1-cp314-cp314-win_amd64.whl (166.1 kB view details)

Uploaded CPython 3.14Windows x86-64

libipld-3.4.1-cp314-cp314-win32.whl (156.2 kB view details)

Uploaded CPython 3.14Windows x86

libipld-3.4.1-cp314-cp314-musllinux_1_1_x86_64.whl (490.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

libipld-3.4.1-cp314-cp314-musllinux_1_1_aarch64.whl (451.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

libipld-3.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

libipld-3.4.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (319.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

libipld-3.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (308.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

libipld-3.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (282.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

libipld-3.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

libipld-3.4.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (300.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

libipld-3.4.1-cp314-cp314-macosx_11_0_arm64.whl (259.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

libipld-3.4.1-cp314-cp314-macosx_10_12_x86_64.whl (262.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

libipld-3.4.1-cp313-cp313-win_arm64.whl (150.9 kB view details)

Uploaded CPython 3.13Windows ARM64

libipld-3.4.1-cp313-cp313-win_amd64.whl (167.9 kB view details)

Uploaded CPython 3.13Windows x86-64

libipld-3.4.1-cp313-cp313-win32.whl (156.1 kB view details)

Uploaded CPython 3.13Windows x86

libipld-3.4.1-cp313-cp313-musllinux_1_1_x86_64.whl (491.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

libipld-3.4.1-cp313-cp313-musllinux_1_1_aarch64.whl (452.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

libipld-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

libipld-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (320.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

libipld-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (308.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

libipld-3.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

libipld-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

libipld-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (300.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

libipld-3.4.1-cp313-cp313-macosx_11_0_arm64.whl (259.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

libipld-3.4.1-cp313-cp313-macosx_10_12_x86_64.whl (261.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

libipld-3.4.1-cp312-cp312-win_arm64.whl (150.8 kB view details)

Uploaded CPython 3.12Windows ARM64

libipld-3.4.1-cp312-cp312-win_amd64.whl (167.8 kB view details)

Uploaded CPython 3.12Windows x86-64

libipld-3.4.1-cp312-cp312-win32.whl (155.8 kB view details)

Uploaded CPython 3.12Windows x86

libipld-3.4.1-cp312-cp312-musllinux_1_1_x86_64.whl (491.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

libipld-3.4.1-cp312-cp312-musllinux_1_1_aarch64.whl (452.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

libipld-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

libipld-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (320.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

libipld-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

libipld-3.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

libipld-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

libipld-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (300.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

libipld-3.4.1-cp312-cp312-macosx_11_0_arm64.whl (259.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

libipld-3.4.1-cp312-cp312-macosx_10_12_x86_64.whl (261.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

libipld-3.4.1-cp311-cp311-win_arm64.whl (149.5 kB view details)

Uploaded CPython 3.11Windows ARM64

libipld-3.4.1-cp311-cp311-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.11Windows x86-64

libipld-3.4.1-cp311-cp311-win32.whl (156.0 kB view details)

Uploaded CPython 3.11Windows x86

libipld-3.4.1-cp311-cp311-musllinux_1_1_x86_64.whl (488.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

libipld-3.4.1-cp311-cp311-musllinux_1_1_aarch64.whl (450.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

libipld-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

libipld-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

libipld-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

libipld-3.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

libipld-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (273.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

libipld-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (299.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

libipld-3.4.1-cp311-cp311-macosx_11_0_arm64.whl (258.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

libipld-3.4.1-cp311-cp311-macosx_10_12_x86_64.whl (262.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

libipld-3.4.1-cp310-cp310-win_amd64.whl (165.0 kB view details)

Uploaded CPython 3.10Windows x86-64

libipld-3.4.1-cp310-cp310-win32.whl (156.2 kB view details)

Uploaded CPython 3.10Windows x86

libipld-3.4.1-cp310-cp310-musllinux_1_1_x86_64.whl (488.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

libipld-3.4.1-cp310-cp310-musllinux_1_1_aarch64.whl (450.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

libipld-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

libipld-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

libipld-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

libipld-3.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

libipld-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

libipld-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (299.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

libipld-3.4.1-cp310-cp310-macosx_11_0_arm64.whl (259.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

libipld-3.4.1-cp310-cp310-macosx_10_12_x86_64.whl (263.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

libipld-3.4.1-cp39-cp39-win_amd64.whl (165.0 kB view details)

Uploaded CPython 3.9Windows x86-64

libipld-3.4.1-cp39-cp39-win32.whl (156.2 kB view details)

Uploaded CPython 3.9Windows x86

libipld-3.4.1-cp39-cp39-musllinux_1_1_x86_64.whl (488.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

libipld-3.4.1-cp39-cp39-musllinux_1_1_aarch64.whl (450.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

libipld-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

libipld-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

libipld-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

libipld-3.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

libipld-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

libipld-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (299.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

libipld-3.4.1-cp39-cp39-macosx_11_0_arm64.whl (248.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

libipld-3.4.1-cp39-cp39-macosx_10_12_x86_64.whl (263.1 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

libipld-3.4.1-cp38-cp38-win_amd64.whl (165.0 kB view details)

Uploaded CPython 3.8Windows x86-64

libipld-3.4.1-cp38-cp38-win32.whl (156.2 kB view details)

Uploaded CPython 3.8Windows x86

libipld-3.4.1-cp38-cp38-musllinux_1_1_x86_64.whl (488.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

libipld-3.4.1-cp38-cp38-musllinux_1_1_aarch64.whl (450.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

libipld-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

libipld-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

libipld-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

libipld-3.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (281.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

libipld-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

libipld-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (299.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

libipld-3.4.1-cp38-cp38-macosx_11_0_arm64.whl (248.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

libipld-3.4.1-cp38-cp38-macosx_10_12_x86_64.whl (263.1 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file libipld-3.4.1.tar.gz.

File metadata

  • Download URL: libipld-3.4.1.tar.gz
  • Upload date:
  • Size: 4.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1.tar.gz
Algorithm Hash digest
SHA256 5d34fc8f90c954320fca7fef120e5fe9af58fb674ff7235f27870364de6c106f
MD5 c079126f4c8c4c3552aa6151c0e1f104
BLAKE2b-256 9cf84ca4fe0d427481795f259045e6eb6e18d5a2d22efc91011feae5b9b6f18f

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ce33fa81517ea388a5a94aeeb54e4f86f55d642b88efb70d9773ffc84472b346
MD5 2412d762b8743dc85a75de498b5f3423
BLAKE2b-256 46972fb2f22b9879f0c7be38b86cf0741d9727a8a2a6b4a889c35ae0cc253f71

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ddcc04545cfe440bce4b937a307c1e63cc9fcd38380fd8d21e31844a76495dd1
MD5 a3f354c6a384b886ae4836de16f6b260
BLAKE2b-256 77e68efeed9599f48af9f7fc093251f604bd06c7053f2369e482897d60dc2f2a

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ffc3d07153de944aa0ce4b974a4d8c4319bd88a95435055059df57dc793a5e26
MD5 5e6c55c8869141b1c4599771b00f90b3
BLAKE2b-256 9ac49c7089b008fdcd37d2ca3ffef9923e5c6bba0c5e8c06e715089b925db832

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47c5aaaa46c9ec686909243d7366489e40a6ee410a3ee94582e04024e1ac3717
MD5 ba6b4130cff6d50429ef230642afba80
BLAKE2b-256 158db009e65d7b810b68f394b7865e400eae76fb11fd3ad28e26567c1e0cedb8

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cf31dbc409b6fb7e6a266240a7f5ddc1d655cc7de07f0b53296cd843100b561
MD5 af698fcb56a396706e0919c829d90298
BLAKE2b-256 1ebf8545a6494727aa8acee4e995126efed6eb60ade78711feed8d3452b4658e

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 601aefee3c28d953417650ad0ccfb4dc8c8d8c8ea8534223ee66f5524fd1b07b
MD5 2490f6b44f7bb48f92d932943634be27
BLAKE2b-256 322b711f1d16a3f3778bc5fda7835fed5fba41633f88b3b676aade23c9ec32f8

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a02780febce762814c90368fd04b753a7587a62e920cdfbdabda07495d051ab7
MD5 c53a97e6df662e29e9d401c6991a239c
BLAKE2b-256 5434a567c1bee7f9da927af7601fc7c88114d521f887ffbe1755031b21c8f291

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e14691723aaea8a44200c33fbcfa29f54fec2807e7bb2ba551d5622bfc1db8b2
MD5 7a54e0d4cca6b6466b70a2faf5ca6cf3
BLAKE2b-256 96255d662b0a501cbcff8b2de69f237c0915931faea6c79ea3f4d84ebf5d402d

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 150.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4f49e81ba70b43d0d55e94e71d2fdb34b97d3c62af2859c98dd385a6b884bceb
MD5 23254e4fd00867faf80e2e8643f49144
BLAKE2b-256 53be6e949dfa7245bcddce25a7ef2c73590e104403f7816f2ee3a0fe37fa2e09

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 166.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 294d076f08e13039e21a5fe8a791d60ef2798c5000ab146cbe86a06f38acb466
MD5 9a5669ba98fc12d08d4eedc15fabd586
BLAKE2b-256 d7fd091032af546c828bcd25859404534c8ac93897aa884800841a5358b3cb02

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: libipld-3.4.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 156.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6eab7b7a9279f66837c2028a072b8150635a69a28d6f9fda85b38aa8ae275b01
MD5 7893378d1ded5166ae6217aaf246b2cc
BLAKE2b-256 74691ee85b8a024e2fd2049fb20e1158b61cdd97452b1bec54169796ba99e994

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a223a8fd7a6a37259e45169d5a1bd7a0c4ee43c7377a7f8a0a77550247b531d9
MD5 3e5aa36c3e760b5affc8088ea86b2e18
BLAKE2b-256 385036ee9838774a8576120c59fb1860b222aad587156b29b36df242e4b58b08

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 03b2a76abb21960f5d2af13400a76246376e3c5bc8a2517e8e8fceb7f7e56441
MD5 49976ace79cbce8597731575283e5dc4
BLAKE2b-256 a6ca89b5d65aaab48539f5a04c0b2edb4f29f57c536e7219a4704003389b346c

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86b887423cf756c8711184d73311c9254b6a9a8007af54d6a7aa9f1fac978353
MD5 9457deac8dc34344f8503b6fcd6dda4a
BLAKE2b-256 a80204ce510e24cbc2bd1830787492e455a47c3f0a42a3d25ccccfb50b7d3eb4

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c817f590edf5dbea8d2392645ed9e05f11e696ba9cd5ed7199b3f78740e73767
MD5 2546be8fa4c17fdeab1e5cce5082255f
BLAKE2b-256 ce16a55ba44182d713b7a499fbf1f02c544384441b8b119737e2238178b38ddd

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be013921f319efbe09a7d126d419723a48176ef1ce861d7a58cf2aa73871c69b
MD5 6524b5910ff1b4e331e44b2bcfb773f2
BLAKE2b-256 23aeaea46f35b350bbd8c4ea28ca9af4645186a51346b75993d6c9e6ee80ce6f

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ba0268a158724ccb30f40b95c81edead520b9d23e38178bd671d8fe61cdf73a
MD5 10a84e07189361a52771e352625e9d40
BLAKE2b-256 d2fd18ccfadc246e0957587206b13e9ee52a6816605cedf2a71867f2c9eec842

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e30bb560954e34776367936d3f705c4339ead2e1549ad07e5b95fc389f8c368
MD5 5f1b60b0831fa53916e25fb6b0e7bae2
BLAKE2b-256 e4c3313ba9d12c6258339ef4572ba63b7c50bbeb1aa857736d0fd380e76d3763

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 663be567595acb999a61b32ad0d8755126178e9506f300939f408e17d1bcf642
MD5 b174f841808526273bc26a0d1d8c76b5
BLAKE2b-256 563f329225b873b15eb47c9d1501462993a3b87272f74945e2e423ca2dfee8f1

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f736ae265e6e5f59542fd9bc20e9df610b21a0ebf4cfe567f296a93d4196a37a
MD5 62c4532bdb330767451ba0260ddcc224
BLAKE2b-256 f8b877424fe62bbec5ca5bcac6340ac8a78c3df0b34c5a6c4c79739b732ccefb

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7bd0d5920e7ff11ede281a90a729f987209f58c42de18661a159737445c66fa3
MD5 4c740ebae7a61504e512632d5fa73666
BLAKE2b-256 78c3401f0f0c0e1c377b6dda3cabbdc1a207188cf1db4569ab67e5c0ed98a13e

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 150.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 68cfcf7583a6775109bea1009e932743b6bf042a3a44bb7dd5f4e85b2d7d52bd
MD5 a4bf8e7c2acec7bff3cb6cefe6af2605
BLAKE2b-256 110ef44c43e0e57cc8c15bf58a2520b6996608dc4547130fadd903688d7519df

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 167.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d309f6d3d971eff2256fcc7671c1b8a344007353b03e03fab7941b3aef3f8251
MD5 b68820afabf9ceaa3bf8333b5206d455
BLAKE2b-256 b965b2aec477c0c5e259ea17b212c6769f04dab40f41bc179241079c52c36a05

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: libipld-3.4.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 156.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7e1d31e68dfefcb1e0faaf7fbdddbc86c8f367d77e721bce5cfae26b45f0fcd2
MD5 40b236078258f58673e2cb2517ac92ef
BLAKE2b-256 a55654eaeec97957e3b16b8da9812a4abf0b0f07fc3147b6c8fee23e0c053f69

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e8ef51e76200842e8663bcb811467410a1f4bd5a3c73721210efbd8e885eda60
MD5 8788951d9dfdd5d0326e3ac3b292530d
BLAKE2b-256 c3cde51b8a15900d9fd0a7e27f3cff07b32ca68f6100c4733345df86feea917d

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2ed4edcac87b635a3cd30d961419a3b67586738e6963fb8ce91332b053d280fc
MD5 3793e00f7fa7664aae2300d833e29ce4
BLAKE2b-256 3a3c381e776fdb79c292107e1b31fb90e557ea6c350f6ee4b65b5741329a79c2

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff6e77dd6ae94c198c5ab941e9b4e949721d5c13b252657d32cc6732957abf5d
MD5 11945f0931798a0536acead1f3334ded
BLAKE2b-256 79bbb6618263693194fc272b3f74b371f784711e9e2752e0da457e88ef538301

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5ee37f1074c5cc5308af5950cb0b0c586dddb3957e0d39404523864aa64defa
MD5 e6108704ffaa63a4444e5e034693d840
BLAKE2b-256 24e3562d7799901bbf9b59f5a44bf1c3e3740ef616c60ee2e15ef13181d0be68

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa4c945a651355c1f954e5bf66ca94db30c64a4cdb91240de2a4ab73a63b80cc
MD5 c966890aae60836046a320111050e39d
BLAKE2b-256 06b78fe74b33820072a6a61b30a2192377573571e39350f67fd7d6c578c54af8

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f652936f779620b3a25e87c088d0347a523411dad27010204b2f3ac781d53e40
MD5 6cd9ea61a36fd17764c70b4b92f9328c
BLAKE2b-256 a82bce3c311cb4bb7e58dd60f38457f40291670e4f3336beaf8c6398d3d1052c

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dee29323c687f26ce5564b923ca8f1b88b6cbd2ad0083a2adcb7bd9ba9e5bbd8
MD5 a0f31a545d78ded3b614859ceab4cda7
BLAKE2b-256 7518423e701932edba91732ed047c748c5f62473ced4703edcb6731786b44fd0

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 766142f7cf520adb7e876ed291b5c587d4d702dfd5bec73fb452fcb208ac61b9
MD5 9fc3901d2f0563247f9e0801c2839fb7
BLAKE2b-256 16719e07389fd2dc5ef73445eab5905fd7f0d29b57307db9bf734b77cd5d9bcb

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 510e45c5202af208dfc89e165b7d622a37d17212f3b232fd61ab6aca6453d1fc
MD5 36346736faf0fb5dde816d1cd08a4932
BLAKE2b-256 0f441296bb0f55c96975e34e76a11d1edfe7789807c4baee0aca29bcf8879433

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5094363266b98d32b592427c8f5c64661c6737f11bc359a4a5dd3109b9d497eb
MD5 eab7a2f8d4b196a9357c191bed198e38
BLAKE2b-256 632843b792f0de0308e56997209bcb7c315f0c6d6389add6d30b47054e9db23b

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 150.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 268ba6cdeab5bfa66eba007990a71cc91421154857c77e7c947d48c5df37c80c
MD5 1248bced0bf262fc0ec19a9e42d6abea
BLAKE2b-256 4ea363fde6d2646f755c9ba44a06df7e1b3b8fdc33c263bd2c7d7699e8f35ec3

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 167.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f0cf4f2f8852e7d3e636ef7c88102402af6353f3c02f875c45315a9c0de8afa8
MD5 54f51391ce990afb205df276a2008b33
BLAKE2b-256 b331379b6a3bea73c6da55cad1c827d497cf288c9d8fed9cf8fe7a40cafdcbc0

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: libipld-3.4.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 155.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 46334789bff6e7b3bee11a19d34f387a1b215e775e914ae4aefc75da5c451d85
MD5 3d50980935b74e980e067ceed7df0f06
BLAKE2b-256 7ce53e20b933be7b2350d3f61da938d4068429f2c55d519f9b40e59a329c94f0

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9230238689decc265c6524e8535d08427bb37f61231606189d9922618cac5191
MD5 f85f65b25f62ac6bf043178053071597
BLAKE2b-256 ed336f0984d1a34694f7d3370068eb78e90ae21d1387991592dc1e44d939adbf

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 293796b9e0156a9cc6b24ce93383ada5946da5df62cf502878c5f924b374579f
MD5 ae9fb88ac5e8ab5b19bdae03048c95a6
BLAKE2b-256 d6390d461b23d7339352dcc77236665dae6ebc7afdcd07595d1905f88cc20a64

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8ab5bbf4ee79f9522911c8f273f7f0195a4443c1b247349033af93725b5e09f
MD5 4318f8874a5f84f3f1eb5e8d2f516017
BLAKE2b-256 9e3ba2010c2eeae1d3fd6b3ac2344a1e235948e1d8bd50bef61df862069ace58

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ccf11de686391752631891ce22addcd32fe0b888a17ac9e0500e1d043f8fca4
MD5 5ee663b85a80cf2ec285303787cf6ab7
BLAKE2b-256 ea6a1da80cc9291b44a526b8ee3688699dc20bc9bd82e0cdfdf25da9323173b4

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad6be5ef82c57bd7aa6e0e8f6511f40cac92344cc36675639482466dddc29c45
MD5 c4e096d251f2493a88ea7cbd45219a86
BLAKE2b-256 4349c3be93272aa1af84e3f8fb6e2f3d559e8a9b51b9eb09f3cb15b53ed48b17

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a90cdf7d072b15b0d3eb8ac17e59b92718131b15026ae8740e77aa23a329d787
MD5 23ed0ae29fbe34de37b943ed3a6c8c75
BLAKE2b-256 1fef1851ec486c8830ea82bedb94f164bedf8899d8220c36ef8b22e3100fc32d

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e89653a4bfb4b526dd72a481d1c1015bdc49a8eb80b366bc7ce24bcd8440ec51
MD5 726606b06b57e35dfa4f87610eb6ea51
BLAKE2b-256 c6807f782cb5eed106d7106c79d130c8accd3e8ce52408563cdaba44f0ff4f76

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d120b3b7a95b7570700b3da5953fd4f8460793c5cb938258dfa3fa924f3e52a8
MD5 186d54a3e0e3fb92fe3a37540af0b723
BLAKE2b-256 c517f182ca99eb262ac09b66c3fc08f84268f75b82463b5e41879bcf016ddd59

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dacbedcf27b2aa8b50e5de50f924850c16fe9ea612df870705f2d4e1c808ac74
MD5 9d540df2fa7b3c1de79d48ccbd6762db
BLAKE2b-256 7c9fb30b0aba5a2b30e071e01a8a384e60336780848286ade3f4936e9aa9ecf2

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b337a206b4c8055919ce9fdbb2d9821de0ce828c9dfb6ec1fd468f57dbacd4fc
MD5 5633c7ec9b557c3914a289fb9a9ef9b1
BLAKE2b-256 29952310c72d177e06711aeb4a6b48f1e3335b1f7fba17be4783d276670c3d9b

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 149.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f3363537b6372f4dcc82dbb275d56ffca33514ef42dcaf8fc0aff2a72c1710fa
MD5 0c6803438c3d1bc01bef98a905ba2e16
BLAKE2b-256 8a44552e83105609c08b4308683bb7208a0a8200f9cc8ced8e67db4467743677

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 164.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9d40cba499438d1307188c1d6777ba8fbc049be636a61bf57fdb9614ac57efb9
MD5 18725d98874a67b44b1c59cc88ab3e9d
BLAKE2b-256 a21eb7afd95b5e29675ac5713a6820ef4cb09c5051e2cbc135f1d4d3e86457ec

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: libipld-3.4.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 156.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 155c0e31134c14ed3287c3bc3ffa2816f02a10106d9db3808305494199b9f938
MD5 406267804877ea19f8de85b794768115
BLAKE2b-256 d9e4c4da06ad8a32e49b4358017e884610a4c9b697734a1499c850843e3aa981

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ea110d3a41d7bb515de61ba29658853fd0aca82971b73a8718d6f7083408c285
MD5 6f2f14d2b13d11c9d164c0915fb34b7e
BLAKE2b-256 be4b646c5dcd1bc6bbde251f0e5237a7ec2d1a523f01ecd6a82c370543a3b269

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e3c676c464fa681d8da00a14179d0115231efc9beaa51611382ddc63e26de558
MD5 28e30e7954df3f802d762d2f4250f288
BLAKE2b-256 2f4d7c3cb0c8d90f42c88155947e997c34a02e91f3193f14feb016730630e150

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e6c8a9b7a9e2b9ebbaabb465db05e8ee055d989a66dd05fc37778e3fec7d0c7
MD5 eae9b54e50ef80f277b35e2392d86e4d
BLAKE2b-256 50aa4acbda0ac871672ec8c34e02e96bb4d34baaa5b3a3c52002f67788afd746

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e683049be2391f3574a6a37c182f40adcabec32a53257d6db46ac263fc328bce
MD5 43196cab95c67f7b231a02bb6e8d4703
BLAKE2b-256 9abb14aaedc8d6341676b9124648254b64323b36ff19c3e8a3c89064114d960c

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62f8130bcb917e0158b6eb51f8a7809a9a6a7e2d9321ccb0cc1a1338c34d5e2f
MD5 dd1680f9ae183cf78a0904af9189ceaf
BLAKE2b-256 2edd3e4cdfff3711faf646f10f2cd54561fb34ebb6f9f87d7948e084f345e164

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fe09e403198b4146b8d3714d0786ad94669954f16fe6dc1178f1dee7ad304deb
MD5 e2cae15e96ed652c777e22e8a747c5cc
BLAKE2b-256 cb03d8c812009474d8b844d2d6808cfa813760125b11a8e1e4fad21660ff8d19

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daa4072c954a3ec8d10b091f56df9e08510f3fc714750f93c50c898a33cec6bf
MD5 468862f5ee0c4b23b468265a3140cc72
BLAKE2b-256 df8492243d76b3598259f67d0c630a8eb223e1dd0424efab99803595710cf021

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33df152128049a14ec97feb3daffaaae991357d46f60a3d704707bb6251c5c21
MD5 2c5de07ca065b0843b67bd747691e361
BLAKE2b-256 23fc7f4a4739bf2fb2a77e6b11907336a7e6f67d46f4532c33d299c8c8b5097d

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 823d06fa9adce3dfcf40a3c94459037b269fc49badf431e147698d8adbbb8b90
MD5 918f5ff9151640ef0b45f27dacba98b7
BLAKE2b-256 856e08aca092f39cc09144efb6267cc71f4bb70f942fe040e635b9ede9d5e651

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 149af6f0d3168bafc7406f828b843a0d2e148098b7126c385a4eb7a1416cb709
MD5 e4acdc647761d6d5acaa7fa0462da097
BLAKE2b-256 9e9bb9b42be4de70753517640364e3e9227cdf29b5eca581e86f2772b90edf67

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 165.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 536a188e1efb97effc8891f0740667a4b1529abd65f85c8d4b218a4a23c1274c
MD5 d89451f9ed876e41b9aea43671fff970
BLAKE2b-256 35d0137a463e8c2344e7ff38c53c2b7a15421b1450902418b3ec89921ed30d4a

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: libipld-3.4.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 156.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 72acbcb0a672c0b57584c8309691c8c805c0e9e56b95e6c9ab29423162d52604
MD5 c48d279ce51ee090af678f4f1718c578
BLAKE2b-256 f0e7065664a33d843292a24ff0086042f94b117186429e7792d562ba405d9590

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23861f6d32d85288e9f4030689eb9369c7d8d8b86056a42e14e27b7044fbcc33
MD5 307fef5fd6fbe8e8ab52b9be0194465a
BLAKE2b-256 a3f0d20ad539b8cb8f82299b5dbc0f91ea4638e00552b5098bfa0a3c964fd682

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 493360adb3fbce2e1fa2dcfba12d9e4c6713a5b015ce63149a691b533ba0efe4
MD5 ae11e7af4c959b7359de0084d2c314fd
BLAKE2b-256 a7fb1a2a8fe1b9e82d28b0d5197ce3837d000b39969231fa272170f0d95364ac

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb07e9c9020796d93a292f093c572e294c3fdaae84acce6f597ab6ab9fde8f1b
MD5 aa145a256aca40908188e4e659d12d15
BLAKE2b-256 d493e668e70ae5dd0cb7c79c7f498ee5e9e52a1235c20f5f0bbfbb0454249d90

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd07f94932a2dd14b44f68f00738117550c32393f93fbbb438d569fd5c336726
MD5 17c4337d0f23c1706d526e68e4235eeb
BLAKE2b-256 5cd782793d8c40aa3748847a04c5c352c4cdecefb7402c0f2390c223a7bc0776

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f7071c7ec195cbed9220798086b4d5216187ee49276b63496b50672dfa8bacc
MD5 926608e430e62530979b1fbfd955499e
BLAKE2b-256 bba61d5f93662df2636f22b65ea19ccc7d95d1f8d681b183a7e73e3bb9ef2040

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a5ef567175bed695e04e83a1ee50840b447463a45daad0f20edf7be3526b3bb
MD5 e9151bef7c02bb166f2cb3e2c5a802a6
BLAKE2b-256 0129178914c6efccbb028b1f7181bd0640db793c723c9df248c164b90a0ce26e

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d4a3ba6c46d59c9ef0cce8c66c3bc8bf873e48725b8aebfef80ce1961caadf5
MD5 079d693b7e21d5098faf40f3e869d698
BLAKE2b-256 af5aa33d4bf79c7db4cd6174d08fb514a276df9b0d1d03117b476099e2a57d84

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aba31e90d1a093f849824677962e0531694a2ffa64123e9d5d421d78bf787a03
MD5 b064e1781c985519dced31e183acfe73
BLAKE2b-256 11da11858836e6c2f22f9497f2694af15a80a84ff9dd05bb9bfb317d4df55a0c

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7db9dc2b56fa79ff2d61fcde1cd3e407b5cf44acf55458ecf17b27ad184323b
MD5 9534427ec76255f57f0cf4c94e847dad
BLAKE2b-256 303ac09c2bdc04561e9665bbdb4620a56cc44cb39f9c073bbdf9884a65291a63

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 382d911fd4a3d35aac94905410975433d2979bc1f962c1b9063876a41b960cbc
MD5 ced7953da3e07f02d5e78ee0109ee8be
BLAKE2b-256 9069f88a377c52df302d579f08bfa81a480197dd22b96c3cf97e1fb335d252a1

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 165.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e288312c418cdf7b9627705931975483152fe7f795ab55b4d389154aa6526cea
MD5 cd455736b80608a14e0a7f9b7ff60c64
BLAKE2b-256 cdc6fa43c833ec3a90d9af911d5abcdd13ccf3b8ed1987e5006e119d6b5204f1

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: libipld-3.4.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 156.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2bade518da222a9d1d8551c48715677f2b760ef8529375678e09ff0149cdb2fe
MD5 6c8069c013febe38cc1fd087556ab442
BLAKE2b-256 fd33be5c6f6a541f36e031fb61cca79d4294b9ad33727436713fefbc89fb4002

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9580ebbbe42818c5654047dc4f58cd72ed0e81387e8fa820c3d6673d906249bd
MD5 e58b81804d52383656dc33a0f6ae5ccb
BLAKE2b-256 af4a8ea4d60e9854ec07441ca26ce171b9facfa12a2551eee79bcb2b3ecc1ee9

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e931a1267769edc90ecd7f2521187711cb9ac4126354fb72e2f8589d311bfc70
MD5 ec21e23fcead2b8170b7328cd879185e
BLAKE2b-256 8da1e6ef3ed16138697bf4e65b3d218b795bec58ae6a6a93bd71b91c912224f4

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29333fb468d2389fa791e31d17ebc21466eaf16c67e95de0960181aceb941f36
MD5 66affb3757af9845f28a9cc02d82d640
BLAKE2b-256 c19bfc8d8743d197cea779710cbdcb1687c70d05bae3d0faa98207f4fef4a2b5

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e10b0172362da454ee1e725eb7f17ecc97bb3581c6b95eba5adb90877ab314e6
MD5 f35032dd2c994ce7a2353b83bc3a8c76
BLAKE2b-256 f95e2e6ca92a5ed92b27a6393a4fe117838ab2ddf1c5e4cbcbb5efe0dc860dd9

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8177add76c5efdfd0f94c37489e3935fb8e453a7e55c56f3d705a83671b3c166
MD5 6912d08beb43ac2662dacedb69f68367
BLAKE2b-256 2b1b61278d3f82e26b3d9ea8ab6de7e84f81db007da69fbaf1d5c5a47cf6ea45

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cdadcf387ac03cab417fafc7175afd0bcba7eb6566270cf4aaa465bd18ccdee0
MD5 7685e439f473420dfb3eb30e842fbe7d
BLAKE2b-256 9b5462e57c66819cd8d681bd4498488d3bbe28c2ad14db8667bbb40dbc9a85a0

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53110e9b1ee40ae92b98304a89f3e8c08a6bf02f4ea3260d28072c32f29be096
MD5 9d1c3eafd20228225d3c3828d4abdc2a
BLAKE2b-256 c3ff9aa3157cf1fa7b4f2cae39e2da3ae77bcdb48d4fc896b9e7075cf8e3bedb

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 748703927bb5ea713d15512c93bf8279d9c337450b8346920ee08603d184ce2e
MD5 3f0140a5d0fc39a70aa197d63dd931a9
BLAKE2b-256 805d743cec40b5f9b368e6cd4d607150aac5e82a986eb6561967fd129704a9cf

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa20f15575f32621d6df991696a7c2f37f98bb0b66d968a9de9a927ad98d35c
MD5 6bf83d230ee5870ee7480726a1d0b356
BLAKE2b-256 d7940a7c39520b027347159ed2aee7acecf06094bb5ab4be9b5ae85712fc9210

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2dca3a8919afca5940e21bc577824ddbd93e2f7cd71786f3af6b729cd59e8fe0
MD5 33bfc5ec22fe86bde3a02567a3353f5b
BLAKE2b-256 af27dd88ac155ea91735d417ba3190f18ebef7babc2db6873032906a06ce78a7

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: libipld-3.4.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 165.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 83d7f019f1a172a71c17fae27a2ab7cf863e16225ad2c861c53bf190946a8ee3
MD5 ace6f3188921306a5f554b46f11f1baf
BLAKE2b-256 151267c2aa8871430c85b588f844b19a8ee22c5b0277cfa230161217603c802c

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: libipld-3.4.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 156.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.3

File hashes

Hashes for libipld-3.4.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7b961fc9e195a30a553957beb5f9621a3a27f5666d3764000f9ba590a5c0c430
MD5 fbefc259f72d56d0cb074c855285f7df
BLAKE2b-256 63bdb0228a47c7d996302676a57ce5025db6d0054f16fa7fbe6401eead00c983

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 929f6247ed4dc86695451acacf7765749b4f390f420d3bcdca2d096f870be5e9
MD5 f040d2b7ecc1a33155c25435f3343ca9
BLAKE2b-256 7be4bb290cfa92c9c5e6d677d833ef7ee3deb216b606eec3975d238e7f8f9d80

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 af16e49808ed5c08d5f44f3492ef7561ad47b7189cce2dc4b74ce870c4f48185
MD5 bae17aed872b4d1ab6c78f60034178a9
BLAKE2b-256 0e315d09a905d04365fc44b5a56454800cf764059ce609adad414935cf950d86

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f99fe323e17cd619895f16cb3e04571881b43913375e635cf250c471ae099860
MD5 493fe599d8bbef79d29d5c0df6a31348
BLAKE2b-256 559bba68f982a6d4b9cc5d8002c8c1c1d0b88929944dd9802d51c640f59942e8

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91f75f2d414ad3934e1491382d5c7b1bae6f85cf2145bb06e880ad5c07b12dde
MD5 e8cc0879c83067352e4eb553d1ca745c
BLAKE2b-256 05109258c77ede5b44b07be9ebd08d25b11e366c693ab7073415b4494bf4c656

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a79c795553163b3cbe7a7728cc4cf9cd2b32fc8dee507c5ffd275d39fd2ae7db
MD5 f464e1342429895237b8e8254c613e68
BLAKE2b-256 a661741b654392c44dd1fe3a0a480658fcc57452281daf5590cbba337416abf6

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40d81d142a586a34a8912c9159bdb2a23d2e72b7744db0e9834ab3c34bc4f86b
MD5 b455bcbaed431b3fb75cb5f8bd98b6f3
BLAKE2b-256 17e9876d1131289b06f5549e556f1112598f213f9043a93ca1f3faf85e070a28

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53d4f59867794abf5502e511eec6316b9296fd4b39baeecbe9bdf6ddc0c64edb
MD5 98d67474dbfae0d83812e77b20d0d264
BLAKE2b-256 39d592c53c09d3a9570aa492d5b915f4717eeca3f0cbdc16c4cdc86568fc272b

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7396daed4121e77e93b6519f5a7e8c943e9152ba996d162128bdc60bba9cfcaf
MD5 d00f641435598c34e39d9ce4d42dc9b0
BLAKE2b-256 d17fe1ea61bca266e8094fff8dbe1ac82961475b4d749fecd4aec999e187262f

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64a7a032099f3bd85403090fa22321186774414f59442053baae9dbf870ac4dc
MD5 3f23f29d0b25717b6d556e5b39735367
BLAKE2b-256 18366f4533c40e4cf813477e3bb90e944c3b578d10059162cde6bbe159b00445

See more details on using hashes here.

File details

Details for the file libipld-3.4.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for libipld-3.4.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 735a80fa1971cf74eb692b4bbf73b11f3653de3fa41c2084289c789bf90a4990
MD5 e9a663ab2ed5f05a4ccbc290af1688d8
BLAKE2b-256 5f65741ccd7398854acc8a17ae7e4a6077ba4259fe7de22ad39ad47465e63556

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page