Nukez

§ docs · pynukez

Python SDK

python · v0.7.2

Python

PyNukez.

The SDK is the canonical Python surface. It handles envelope signing, hash verification, merkle walks, and Switchboard comparison — all in-process, all typed.

Install

$ pip install nukez
# async by default · supports python 3.10+

Store and verify

from nukez import Client

async with Client.from_env() as nkz:
    locker = await nkz.locker.create(provider="storj")
    receipt = await nkz.store(locker.id, b"hello nukez")
    ok = await nkz.verify(receipt.id)
    assert ok.anchored_on_solana
    assert ok.signer in ("ed25519", "secp256k1")

Framework adapters

PyNukez ships with adapters for LangChain and LlamaIndex. Both expose a NukezStore that implements each framework's storage protocol while retaining the verification guarantees of the underlying SDK.

§ next