Skip to main content

py-smoldot-light

Python bindings for the smoldot_light Rust crate using PyO3. The goal is to run a lightweight Polkadot client in Python and connect it to py-polkadot-sdk.

Overview

  • Rust core: smoldot_light provides the light client implementation.
  • Python API: SmoldotClient exposes JSON-RPC request/response plumbing.
  • Build system: maturin builds and installs the extension module.

Quick Start

Build and install into your active virtualenv:

maturin develop

Example Usage (Python)

from smoldot_light import SmoldotClient

client = SmoldotClient()

# Load a chain spec JSON string (Polkadot, Kusama, or a local chain).
with open("polkadot.json", "r", encoding="utf-8") as f:
    chain_spec = f.read()

relay_chain_id = client.add_chain(chain_spec)

# If you are connecting a parachain, pass the relay chain id(s).
# asset_hub_id = client.add_chain(asset_hub_spec, relay_chain_ids=[relay_chain_id])

# Send a JSON-RPC request.
client.json_rpc_request(relay_chain_id, '{"id":1,"jsonrpc":"2.0","method":"system_name","params":[]}')

# Drain any available responses (non-blocking).
responses = client.drain_responses(relay_chain_id, max=10)
for msg in responses:
    print(msg)

Getting a Substrate Chain Spec

You can fetch a live Substrate chain spec JSON from a running node:

from substrateinterface import SubstrateInterface

substrate = SubstrateInterface(
    url="ws://127.0.0.1:9944"
)

response = substrate.rpc_request(method="sync_state_genSyncSpec", params=[False])

Notes

  • JSON-RPC requests are queued; responses are drained via drain_responses.
  • Chain specs are standard Substrate JSON spec files.

Release files for smoldot-light 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for smoldot-light 0.1.0
File Size Uploaded
smoldot_light-0.1.0.tar.gz 3.3 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for smoldot-light 0.1.0
File
smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le Details
smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-32 Details
smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Details
smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
smoldot_light-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
smoldot_light-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64 Details
smoldot_light-0.1.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
smoldot_light-0.1.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Details
smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-32 Details
smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
smoldot_light-0.1.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
smoldot_light-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64 Details
smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le Details
smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-32 Details
smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l Details
smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Details
smoldot_light-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64 Details
smoldot_light-0.1.0-cp313-cp313t-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 free-threading macOS 10.12+ x86-64 Details
smoldot_light-0.1.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
smoldot_light-0.1.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
smoldot_light-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
smoldot_light-0.1.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
smoldot_light-0.1.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
smoldot_light-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
smoldot_light-0.1.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
smoldot_light-0.1.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
smoldot_light-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
smoldot_light-0.1.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
smoldot_light-0.1.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
smoldot_light-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
smoldot_light-0.1.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
smoldot_light-0.1.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
smoldot_light-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details
smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
smoldot_light-0.1.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
smoldot_light-0.1.0-cp38-cp38-macosx_10_12_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.12+ x86-64 Details

Total release size: 587.4 MB

Release files / smoldot_light-0.1.0.tar.gz

Download URL smoldot_light-0.1.0.tar.gz
Size 3.3 MB
Tags Source
SHA-256 checksum
How to use checksums
b2e562e458d6e5ca5c1612115fb3729497480cfdd98ee7b98a39dc206b22ebde
BLAKE2b-256 checksum
How to use checksums
effaeb7715935762581fe3082ee215b38f82a5ace0a6e6bd414bde6a8a46c19a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f10a77912e05bf8f90edec684449bc2a01b2bcce219541fad7f2ec12e97830fc
BLAKE2b-256 checksum
How to use checksums
37d898abe1a0d0ddcf46d18f246d382c76e2c4e7218281922c67e620dfacfb75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 5.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4d661fd6e346e4f831a0ca14dc49e5ffc19e09dbf21b99237db442ede76a7be8
BLAKE2b-256 checksum
How to use checksums
d1371921e1ae83448b1213250467141fc17e7415b6fb6b3940e1748a4655917d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
1e3fee7e40983878a62ebc02d55b3c64edf426a0df602b6806aa46d705dbdfcd
BLAKE2b-256 checksum
How to use checksums
7b7d1cd2799596926f76d0c1fa5ebb92741d7f1340fac71a3c608173046f3f0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 4.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
6c0f3d7058014194895ca8830544f838a4be54004f31a6434f5856c1cb147570
BLAKE2b-256 checksum
How to use checksums
86c554f80ebe63e51598ae6f7199f5c28e4c26dc6f91d43ff22ee9c68bd16e40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL smoldot_light-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.0 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9b9347c258b453e38dd8d980f9ef0c12f7958e24f7ef02e16e60ef612079b549
BLAKE2b-256 checksum
How to use checksums
2f79c7b8a238bf094739ebf1e55c75f436f460100d64020c1065f9ae42e63787
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL smoldot_light-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 4.3 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2eefea25756c7ce0ed5afee3d77105423a6c6328d88305edce183676d065c835
BLAKE2b-256 checksum
How to use checksums
3de7e5e0dba4b3cb8da60101e434a768b868241fa9a1cf4ccd26f13748add0bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl

Download URL smoldot_light-0.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
Size 8.2 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f6866811c3adab7bd95900140de4fbfda59a9216bb8e360f9d9b8c77f6c6da42
BLAKE2b-256 checksum
How to use checksums
157bb341e5debdfe5c56b41830ed7872784825d2dfc1edc2b0d8ffa7f94a9d75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-win_amd64.whl

Download URL smoldot_light-0.1.0-cp314-cp314-win_amd64.whl
Size 7.5 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
5fee9bae7bc3f2c98e8575482bc03d135624b210a477ff22c024d143823f250c
BLAKE2b-256 checksum
How to use checksums
d627d91c5584e782df2fd048031e40a5dcb21498e3ed99ff5953d4876f0c10b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-win32.whl

Download URL smoldot_light-0.1.0-cp314-cp314-win32.whl
Size 3.9 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
68fde41f9e9ef692fb15211d806a3cc4dd6132290ae56959a540fc522fafff77
BLAKE2b-256 checksum
How to use checksums
0e4b693e184b6355375262c7d56909f519d5a8c9ecf48b2d0ebad79dd0df4400
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 4.9 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
29c7ad3e19621bc65d200b867822899fac987bbc0c51c4b43afdf57247412f0c
BLAKE2b-256 checksum
How to use checksums
56e3f7e1f858880f6edf68bdfe252fbbc32fd795c0a9e82f45ca0388fabb5f99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_i686.whl

Download URL smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
Size 5.1 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
1e34f6b9a4fb64fcee25663e56e8e020b441e1fc0f1479523dab6c03f31394ab
BLAKE2b-256 checksum
How to use checksums
7bf1d24bb8b002f1a9b4a8d191543d9f36d5b6544dd17c362ccb49ceb0b4b80a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Size 4.9 MB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
ecd5b58cb33b28d30767761f26151e36685415ac44ef9afe68bc90729e6b04dc
BLAKE2b-256 checksum
How to use checksums
bf527dc3cde16e567332a8f8b681684885c1278c03983d69343627542753611c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL smoldot_light-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 4.8 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c8b1c3554997f862fe3e46cfbf604ae2dd95fa64e274344fd1fc4ba391583117
BLAKE2b-256 checksum
How to use checksums
63d4d11d28751929067d356faae8241394680c5dde3ca9d205f46ce372920418
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.6 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
8df901221b28007ba8f4663cb0b9bfa5210db6abd14de5e50190ed84b8feb8d5
BLAKE2b-256 checksum
How to use checksums
fd3e319834bd36215bbbdbf97ab7673a5c96147fb337aadf556d2916095cf3f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 5.1 MB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f152f785ca7fc40e4971bba2dcfc5ad80fac123a9d6c83b0124250f0261c81de
BLAKE2b-256 checksum
How to use checksums
cf8c38bdc8bbe3d35bacba01bb132c295aeeb67daaaddf725488cef5a1844dd2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
50a2a1f2ff5a23693c44c2b87971a6e6e6f1931f3bf4c0c436e00255a7ff1cb8
BLAKE2b-256 checksum
How to use checksums
5b399599b0c7943ae316af77142f3e00dd651f048b79d79b1b48be4116be34e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 4.7 MB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
215e0ff9b184d359b1b2e75d530db3015954a96d6fd402498155a55cd4126d4b
BLAKE2b-256 checksum
How to use checksums
d8f3ce83f714b0cd478b533b87b155c1ec70dfaa1315d1798afcb6b6c73d31ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL smoldot_light-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.0 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9cfe959813d5e5f31d0435b1a7f87a0a9bc07302116bf16529393b30ddc5f5aa
BLAKE2b-256 checksum
How to use checksums
93aa8e70fabeacb46a1df552479b9202307851126ab7906f6fb87f4a7b158a64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL smoldot_light-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Size 4.3 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
516f1cac31ce7143d1728d1b86d7c53fa44b1b07a7b755d07c87b3852b534eec
BLAKE2b-256 checksum
How to use checksums
ebb61ef1224a0edab0ca7651385f98fd1dff787d7e0e334fdc6c830ac59b71c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl

Download URL smoldot_light-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Size 8.2 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8b8980fcb5d020fa10849ed29c1ce866e20e97e56ad7933d81335a9f7202bf9e
BLAKE2b-256 checksum
How to use checksums
cd90c7927debe823f73df9dcf1ddfe12f2df66f46ca2557730f9332eb6b81865
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.6 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fbc0346a2fbb192fd7544f52a3792e452f92e20291a0933a262520335e6ac367
BLAKE2b-256 checksum
How to use checksums
f9077c467fdadadfe028a6110631af668defb0ec452c55d006187efce0b04ab1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 5.1 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
24290dc5ab478834e693ef2256c581597260c1a57cfb8db46067bf432be6e7f4
BLAKE2b-256 checksum
How to use checksums
8b9c774cd1cffe8f309877c6f73aae6fa182a1db807f49a7187b43cf68d8e0c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
568b68a7e02412f1a85ec7015a7e69b288c26d2d149c2ea8d8c5f436ec15ad62
BLAKE2b-256 checksum
How to use checksums
c227bcda9ad86659e2fbc822b61c50d1274b41d654d82543bab50c09631c7e6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 4.7 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
305e416190dc5662259b6913010b9c828e5530ebbf266a54ee0fe4bc7a5bb0e6
BLAKE2b-256 checksum
How to use checksums
2afb6c77b41c525a5ce8593d0dda726a3c9aad17ae56cda7103f02335cd129f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL smoldot_light-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.0 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
22a7b267558a752d367962157d45f0010de819be4535f933f7e06e19a5345492
BLAKE2b-256 checksum
How to use checksums
9081dbfb70b472cb085cfafa734999b0ac9f3d1d04b192d2565f0c4368f48b07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl

Download URL smoldot_light-0.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Size 4.3 MB
Tags CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
52724c4e4ab43f7a680dfe3dab3a2afcbdbafbbc38afe9e569046849d5486358
BLAKE2b-256 checksum
How to use checksums
9507103c6c1e9abcf07741d18fab1d084b1facdef9658954fa3c29b96eee413c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313t-macosx_10_12_x86_64.whl

Download URL smoldot_light-0.1.0-cp313-cp313t-macosx_10_12_x86_64.whl
Size 8.2 MB
Tags CPython 3.13 CPython 3.13 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f9ccc8b2c9c611c8e82f6419b72843bc2345544161d5c4d0eec578190e721241
BLAKE2b-256 checksum
How to use checksums
13d37dc606c2134de918b674c8b80934d11a8669835d209d4f48057a4cf4d169
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-win_amd64.whl

Download URL smoldot_light-0.1.0-cp313-cp313-win_amd64.whl
Size 7.5 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
62f8b461e660017f263570f466fcc61e52e79b2010b735f61046a866063ed884
BLAKE2b-256 checksum
How to use checksums
07731694c53d81a3b9f61a059024139e541b5003d8783edce8ba2a7d555ced3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 4.9 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ef81679e11fab89f30670d181bf75ba4e9d754bfc22d48662fe02acec70d3be6
BLAKE2b-256 checksum
How to use checksums
1373b912dd95e84ef287ddf12aef267088a5c301e3e0a46ca4f905ed280c2425
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Size 5.1 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d3d3fc21474b869b57df1673e08a4cbd0df14ac9de9c4a05908dde1bb91bcf39
BLAKE2b-256 checksum
How to use checksums
b9fbb0ddc45c31256668d1feafb3c3543e016e4af93ef49b660f8c22b2d719a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Size 4.9 MB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
e11a2e744ff1b5e8f551fd6d14531f7f217fb65020d8fd41df477b7f837af364
BLAKE2b-256 checksum
How to use checksums
3321bf6598baef5e57661db88b874b7011fe6f687c80562d745ab7a502c2d866
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL smoldot_light-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 4.8 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
391e1d987efe90e626aec46841edb5d61d5a4c8a91522417b077ad695a5d1919
BLAKE2b-256 checksum
How to use checksums
96cb9fd82ea78316649bec06c9441ed669f37fb880fbfe75717567a999da25b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.6 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
532dd6223abca07c5a0dfc3af6bac3bb9068551fcb496fecd48dabf47af01145
BLAKE2b-256 checksum
How to use checksums
8efc42ab55a8cd244189c76770a6e14598c03024d305bb845cff464d76197228
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 5.1 MB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
098d28daec6d3baf1c839a9438ce09a1b01622019b673567bf2887a10736d2f5
BLAKE2b-256 checksum
How to use checksums
adaeb40c8420c7c65b860931de0bcd03479d17c6c98f0806bfabd0a11e607d5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
1e4fec476129e901316c13c4c9bdd0c771a2621f045e7978d2f9b49e4b29f0d2
BLAKE2b-256 checksum
How to use checksums
425439a2baae4ba4eb3b009469933dd9562d11179d0c78d5262505d679a14f89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 4.7 MB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
c5315e6ceed119b5c4f2bf662847875f5e27e9de98eea1cae8f6be93528e2b19
BLAKE2b-256 checksum
How to use checksums
e1cb053a0e3825a5157d84bc77da406088e9abaa4ca7d59c3667763769e1bc6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL smoldot_light-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.0 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
65344b92341c186cb97141cb3f2c33bf6a00ca73cd40f5a9b55a12e6621464a9
BLAKE2b-256 checksum
How to use checksums
42aa87926fc95ec06569df06953ff4b4adb19156d690c121807db46dad901605
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL smoldot_light-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Size 4.3 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
16f66a73c0fa4b61973d507d38649733d40d06f06242310ae98808d4908b5d08
BLAKE2b-256 checksum
How to use checksums
234e1948e032afd46250e17f34eb8ce946a48468012d8382bbb7cf6dbed5de0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl

Download URL smoldot_light-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Size 8.2 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
90ee9bb257eeb9cd5f3f8d0bd0c10f21feef8ded9849a8ba522df574a32ae507
BLAKE2b-256 checksum
How to use checksums
ca46b8eac0687e682448dfbb6b8967e0e6038eaaaef33259e8bd3981f42c7eb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-win_amd64.whl

Download URL smoldot_light-0.1.0-cp312-cp312-win_amd64.whl
Size 7.5 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
85d8e3a320de2aa8fea999166e88176355f8529dfcf3d43835434d71733b8115
BLAKE2b-256 checksum
How to use checksums
ad59ec554c930e7e065ac80beeb3d28748e4aede51ed035852617f86bc9ec15f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 4.9 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1f029a28435997e3997a2779d6164b0efda189ba851a9ca03808a83b50aef9bb
BLAKE2b-256 checksum
How to use checksums
48509d17badffa6533657d0f42dcde5dc881856396ecc57468fb7eb7c02689a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Size 5.1 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
6037e44bdeedca2d0f762fc1425d5d28a4ba5d28e7858481fbc5afb8641fbb17
BLAKE2b-256 checksum
How to use checksums
fd94f34bc682e3ccfa0bbc5d1104d7308ba0da06972a569b68284cdae90d2899
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Size 4.9 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
e8919334111ace1bd23a1d4af72ffb3b245ebc5d28276a99934f7f0c802b1afe
BLAKE2b-256 checksum
How to use checksums
68d637c9934e7677cb9f199553db3ace343576f0c6f51a80038bff3eb52b70bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL smoldot_light-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 4.8 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0ace3ac191c2a6e73a4d10fad899c3d6691cb29ec230e7e81c01d13bc6817b96
BLAKE2b-256 checksum
How to use checksums
9f242d011f813942b15976c293d0c5676706df0d02dfd3c54ede9547294f8c98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.6 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5580bacd6ca1d0980ec9bfa1e1d28ae4ed5c991c00da18063643034dbc470e61
BLAKE2b-256 checksum
How to use checksums
e103328dd5a20a22aa01bf9eea1394ca0c8ce39a33f21539cfe87304d30a62a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 5.1 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
292ef91c86e15fe064ad8fef2acf330b09c9964ed750b88e572ee7629d91b045
BLAKE2b-256 checksum
How to use checksums
35c085e6af4a86c08326a6e115eff612810fbd2e74ed335a3942eadee8ab3edf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
b2b8c40fd16f9595cfbfc1c9d412f1df942c6ed95b81d1d71d77f40337143026
BLAKE2b-256 checksum
How to use checksums
8a9b50fd548183a61d76b41f9436e5f12ed3fb0699b631182ec9342ff3238e75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 4.7 MB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
242f1853393009876ab834d3662d3d3c23d5ed289d56000fac80408416979cbc
BLAKE2b-256 checksum
How to use checksums
68f8b228182db0642844131dcb4a4e25301f995110fc5c0764fae0ac7c83ea5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL smoldot_light-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.0 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7c39fc756a6c0a977dab23be098d0d226dfb48c8b185a3a82b2a323aac227fff
BLAKE2b-256 checksum
How to use checksums
5b0646b28f6ed012890c6e9bf090b2c4399123c2ae05636bfd42e83d2f932f0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL smoldot_light-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Size 4.3 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
15c28869cda7321e1d67c546fa918fb6805a5eaa530ea3998e173860bec3ac67
BLAKE2b-256 checksum
How to use checksums
94b47e116d93b8c74a979aee4237fe88ca412f3d8265c4ba5d247d05a92d67be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL smoldot_light-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 8.2 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
19b3fbd6476aeb65a49f30875a66a4fbebd691f634e0b717aa02c8603e0f4d3a
BLAKE2b-256 checksum
How to use checksums
088b2a28aa942650e04c9f12fa2a04a17406bd7f44abc95089aea8fb20812e23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-win_amd64.whl

Download URL smoldot_light-0.1.0-cp311-cp311-win_amd64.whl
Size 7.5 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
603125a169241526cf36fded45faf0c2e7153fea4a653bb52d472d33de1ccb27
BLAKE2b-256 checksum
How to use checksums
b5cf4af0d1924c88f5b7866e2c5d5920a14bb545cb07b0cdd823dcd27f994a84
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 5.0 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
149538aa7cd533a8aebc9b1d0656ea65ea0eccf3811d79923d260824f5164c56
BLAKE2b-256 checksum
How to use checksums
0801cee7ecf508f5ec126a44d7f13a19843fd70db8e5a3ea5363b563ea0995a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Size 5.1 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
76c8123b4f54ada795581352013d4ea5ba1c7911e58e05223f1a7b5b14ef750c
BLAKE2b-256 checksum
How to use checksums
17d0efd7153526936ffde13413a7227c3147e7a732196fbdcf00868296b7f4ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Size 4.9 MB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
8bccbeff499367cc830864f2cb9ba2d101855c0deb3cef03ae9a55b9a3d22bfc
BLAKE2b-256 checksum
How to use checksums
e4ccd61f72d08c5b1c1dba09d60711de2f174d6bb21937b8c14e570af4e6b1cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL smoldot_light-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 4.8 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0ef2ab97016a115d2033e2a5a2bff123881f0a8edff7ed0128fec0136f50eeff
BLAKE2b-256 checksum
How to use checksums
f02ae8d341059ea2744757fb20e09f2190f5d7932a90847e77049a5f663d726b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.6 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
865e881ff356f0ea3c23535300d05fc2848b296a6fa312b8c077f166d96c8c2e
BLAKE2b-256 checksum
How to use checksums
5a9f794912d276e947f4ef54e3506945d4dfd54125969824c7a793f34e18970f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 5.1 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f9a9b8e569c5bcf63243b3c592c3eabbd617eb5c540b7388b34120722aa81f99
BLAKE2b-256 checksum
How to use checksums
849e3250c9be09cde10773b7f3346e7e532c5f05229d5c8b0ccd06bfc6bd20c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
553f2f9cad3166227a64ceaabade71d724cb7036249050ee8112b74efb5f3263
BLAKE2b-256 checksum
How to use checksums
18f74666ebba8d036fd2ceb9a9ff4290d2f7f64fd433fb516a9294ef4cc08089
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 4.7 MB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
4d24846657718e60511fb0a613df0b08d52a60317deaff1b3755140e9a922d17
BLAKE2b-256 checksum
How to use checksums
42c918a5b4397d618711fbcdcdc563a92d0acc63cc5fc312b0738e5403979250
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL smoldot_light-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.0 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b2f837328482870157f65635b61fdaf4d3641d6e6d15417f37e0a1a253da3aa8
BLAKE2b-256 checksum
How to use checksums
4087caa9769df456c5debfa51838aebf466f02a447c3f83fbdc0dcb93ad5e816
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL smoldot_light-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Size 4.4 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4dc4e40e67711ebb900740ab5351d0d228d8c4e23e5890da81c5e546544b15b2
BLAKE2b-256 checksum
How to use checksums
3d5092a90ae103fd1ddcd312048b114b37bdec56ec3d9e7bfb238b55ee2de7f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL smoldot_light-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 8.2 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
08d7106eec085abf8e698c2d5f20a21f008987800a23765fa6970c0bef745b52
BLAKE2b-256 checksum
How to use checksums
09e60e788a045d8cf0339d9e9d364ebde7f114175332b182eb230e141011b8b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-win_amd64.whl

Download URL smoldot_light-0.1.0-cp310-cp310-win_amd64.whl
Size 7.5 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
21158045d4a895b45f19f00b23840210bcfc75a46d6c3467cc339619ac3d0b18
BLAKE2b-256 checksum
How to use checksums
440089550b89ff0f1d2d186711ad7955069a6ea584cc9d059e9da15b22593635
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 5.0 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2d40487eb4cfaa738b2f603e7f6228c4cbf0a4cf3a99db52633fc4d0ba1ebf09
BLAKE2b-256 checksum
How to use checksums
462867d58fb39bace76a010301b5661eb0c5201fe544d6ddffd6c7608ae5b067
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_i686.whl

Download URL smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Size 5.1 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
15a696868f398914c2bc65e0dd6d905d9a1186aef7c4d73dcd42554ce067a4e8
BLAKE2b-256 checksum
How to use checksums
d9ec16fa642285102a808ca0b078638fadaaaf341c252fbc3d05ba5e782895de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Size 4.9 MB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
94626807bf871a5b531df533d74d8fda241ec6331385536a60f918a1a0227138
BLAKE2b-256 checksum
How to use checksums
6ecad91789e03e06e76dda1f153f51e423e29be6413da4e1f48a3b8d46e742eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL smoldot_light-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 4.8 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6458d9dd94e4355dc03af81c9f610f69998f4e19eba4b42162e07e547d59fb93
BLAKE2b-256 checksum
How to use checksums
18f0882c963ff539e6649ab9da55f9bbe02ba57d3359b75a651a5deb85a65b07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.6 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
038c8f0e04eb0ad38fd20f411247659b161af85feaef555b882dca5a8b8ab12c
BLAKE2b-256 checksum
How to use checksums
492ce4506780aec52bfb09c8579dbe40c271f68a78f6b8f37c49673f6d229d58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 5.1 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
da5b1d44c784b8d2bb2b8a5b9de5b22980c8c302e4aca26358972b5844fbfff9
BLAKE2b-256 checksum
How to use checksums
657f1b3ee7a243416dd3a498481fc67ecc5d88fd9a7ee1a147f422badfb8152a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
e711f7638449685876f05025c7fded9ebb884a10b150ab7ee99698720202b698
BLAKE2b-256 checksum
How to use checksums
f01c3bb03d09bae6ee25eaa7ec26e13e2228e1e3795345cd486210108137371e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 4.7 MB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
73d787c78e58d2c6e838029e4c0c02c4e5a9b9936bd5fc308d12756a1a62b9f7
BLAKE2b-256 checksum
How to use checksums
e68e0d104492cb535468187df761276a662fc2b1c7a3575f7cd09238e2236a03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL smoldot_light-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.0 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
be2d0557a2facd1a77b4fca91da04e9b731c4d728d192bdc3f59eebb07fba042
BLAKE2b-256 checksum
How to use checksums
f8ecf5fba1280900cbd5aa1783bf032ed20e2da92623855a4b5b2cee199637fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL smoldot_light-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Size 4.4 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
46ec1f503ce456a9e3d6d23dc5de549cc8f5fce5d4956da507ca5479a92d5134
BLAKE2b-256 checksum
How to use checksums
8e148085e4c344a16b44c9af1e9400eda4342ced2024d0bf45ce76c53274455f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl

Download URL smoldot_light-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 8.2 MB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
d65dc6204fe4287091a3829c54271604dae8f16a615b39714024796f9f8fe129
BLAKE2b-256 checksum
How to use checksums
392b2af20fdeecb7451f4661ff7aca0a3e56c6fe9af8cabbee64e0bbd2f477c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-win_amd64.whl

Download URL smoldot_light-0.1.0-cp39-cp39-win_amd64.whl
Size 7.5 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
5e219868a2c51350ae9d975f26e4d993a4ed350d43d49d7a9a2528ee5933282f
BLAKE2b-256 checksum
How to use checksums
076bf34824eece645f37ccaeb8dec7c4cae5ce676dcb401120a019294165a7ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 5.0 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
89faafa20076ef116986f325b93046f949330cd276ab5ff95da814b0fae39bb1
BLAKE2b-256 checksum
How to use checksums
40d9dd28fe8758ad43dbe3f6f792049c0de935494bb0f78b984fa59bcfb32da4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_i686.whl

Download URL smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Size 5.1 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
935f5f89e743b93f405d509d6ce3100f9f7f38095d4b9650505deb28f000e457
BLAKE2b-256 checksum
How to use checksums
e41a2d842b8103060d44064bb6d07f1c64bd49f4d6b6d814532097ea421f7a05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Size 5.0 MB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
ff2825b7402c7d681032034edf76d54cd1d6b266c32b2a05c0d9979c21d7ec7d
BLAKE2b-256 checksum
How to use checksums
c9c4c6c14d4cbd88513e4412ab11b25b01de3770357d5e053ee1a666174b0013
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL smoldot_light-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 4.8 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8978f71e3b27dd862e57d0332dd6e4168b408f1aace643c5c1af431ab7075c11
BLAKE2b-256 checksum
How to use checksums
758eaeb72c28e6b1fde3743a4e2b6bd4b8973b1997ca66386a636df009b49cc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.6 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
43ef43d3b7b0fd12870c8e8dde3d528458ba23181a6b869aca3d225e23f7f7b3
BLAKE2b-256 checksum
How to use checksums
158748fe04e431a7009cf9965a224083340a63ae3fcc2955c110e90987566f10
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 5.1 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e6cd10cf7f5f1e4c82e4fa1406c7fe9ff9eb628f988441aea3827d734b0548c9
BLAKE2b-256 checksum
How to use checksums
4cb43b843b967998aa18d74af023a6e952053bec8c85e0b79b9e0faab2f0abc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
410c51d317816da67bd5a342fd7aade79b046fdee8e62bda0c65e1be2ebd57e4
BLAKE2b-256 checksum
How to use checksums
fd1cebb563d3a9d84d09c3fa28b74b66d45c42a29b55cf697cd9ff9c67b2587f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 4.7 MB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
658e3bb648b88e0ba9dca8cd5aed2cef1a3b9b5d510417304a0cd63a32c54923
BLAKE2b-256 checksum
How to use checksums
739ede5eb11b3b73cdfddc20c66551cb9712e7cac332c2afb37abf9e22a14117
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL smoldot_light-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.0 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b1287c679aec6b550db47db1689d67c23db2106ecdf828d0b6491b61616a7fc9
BLAKE2b-256 checksum
How to use checksums
5dc5a6ffe919c7acdc542c5add763896fde2f1e6edb10169fcd2f02ab3c10282
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL smoldot_light-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Size 4.4 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
227fe57deae9fa275b558086dc159e2aee62e5eda6d77d8063c92ddf14a9ec5c
BLAKE2b-256 checksum
How to use checksums
e2233ceb1fcb03abdc96c1681d4fa124e3e33ef0a9b57efb45438d6079b596c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl

Download URL smoldot_light-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Size 8.3 MB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
03f7a16e310712003cbf518624789ff8f6458d338653be67aa81c1a753b351f2
BLAKE2b-256 checksum
How to use checksums
9eef0a055817e82d62b8fd2368128b45c53bacc78444c341bc16b624e204e10a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Size 5.0 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0a4e448410ae802e0c78fedde0d7e92b0ab7b70fc086920ec7d076868c6ca08b
BLAKE2b-256 checksum
How to use checksums
8bbefde0d0a725ec4835f592f6cf6f94a5f6c28a97e78f89217f8f131642c53c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_i686.whl

Download URL smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Size 5.1 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
f7dca5c1405e79175912491056db4868f1244fc1b7e892bd91b7ed45c73ddd6e
BLAKE2b-256 checksum
How to use checksums
4c0b67f9c29e1b31615cf2ebb332df9887a55ba8522b05b407853918a961b681
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl

Download URL smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Size 4.9 MB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
63fdd9202f7a3eaf9deca27f2d702f540518e67d8889e4972d33d3052ddee9c2
BLAKE2b-256 checksum
How to use checksums
2b304189aac5d1db9a046938ae6f42f5620742fd6e94a2f5822032c136365f7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL smoldot_light-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Size 4.8 MB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7dff978e1ed906cb21ce18f87f1021fe7736c7289c97d78f0bf85374e8530a9d
BLAKE2b-256 checksum
How to use checksums
4070e1813a0480f865086e9d659651201b33c1d1f322d280e3f5c497fd9bd2a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.6 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
38bb9c675ca9473ba9633f0c25b656e27e81ddd84053e87770040591ce653a6b
BLAKE2b-256 checksum
How to use checksums
04bd44601b7cfaa9c00c356aba377ee4f68da632925e628cffc7a2f9ade64239
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 5.1 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
21363a67cfb3e697b7c166e69777947cf31e7dd45234e670bf64a7a3b0a0b71a
BLAKE2b-256 checksum
How to use checksums
64188c8dfb6a3885a76f3934368876ad98b2581a67b9fc14274f52e41cea96fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 5.1 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
f36511781a3a3cd1edfcb6528b56b4c3c87c0a7e2fcc75de946eb4e7f529ffcb
BLAKE2b-256 checksum
How to use checksums
bdb68f72a114dfbc92ee52e9c7fdf2dfa1728cf5d20e3c9c943446bc14a66955
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 4.7 MB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
eefa9992dbce160b371a30c3712a27edb1eea10b3dc06f3dd8c5f03b68cd0452
BLAKE2b-256 checksum
How to use checksums
0927b603b1fd508e2562db69b5a52723bb366792942e0100250e642c073d5955
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL smoldot_light-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 8.0 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
e46981276c1a570108892581c425a1b4443dee95af8c1e9422a71af382066ed5
BLAKE2b-256 checksum
How to use checksums
90e48dd1d6bf148055375d28d40171a2d51629c3eebe9d93c76d493f1813e21d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL smoldot_light-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
Size 4.4 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
38e4f48f23e9bca3e84663e2383981bb473bf6b8dc2466210772aaabfb00b8f3
BLAKE2b-256 checksum
How to use checksums
1fbd523816bb43f348d5cfbf82e81db1c116c315c804ed658d6fad16dc2bc79d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release files / smoldot_light-0.1.0-cp38-cp38-macosx_10_12_x86_64.whl

Download URL smoldot_light-0.1.0-cp38-cp38-macosx_10_12_x86_64.whl
Size 8.3 MB
Tags CPython 3.8 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
57c6367cabc71b7ae0e8e8a20d58f811e5ebd065d001678620dc2e582f1c7ef3
BLAKE2b-256 checksum
How to use checksums
7a9ba4c335286024a1c35d19eb9a164b556f0cf049eaa16e3e866b88b9e8fd1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.11.5

Release history Release notifications | RSS feed

This release

0.1.0 This release

99 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page