Skip to main content

recordstore

tests PyPI license

A versioned key→record store over a content-addressed bytes store — a thin database kernel between an immutable blob store (such as Ethereum Swarm) and an application that wants to think in records and versions rather than blobs and references.

from recordstore import RecordStore, MemoryBytesStore

blobs = MemoryBytesStore()
store = RecordStore(blobs)
store.put("users/alice", {"name": "Alice", "role": "admin"})
store.put("users/bob", {"name": "Bob"})
root = store.commit()          # one reference identifies this entire version

store.get("users/alice")       # {'name': 'Alice', 'role': 'admin'}
list(store.keys("users/"))     # ['users/alice', 'users/bob']

snapshot = RecordStore.at(root, blobs)   # frozen view of that version

A store remembers the versions it has been through, so undo needs no diff replay — a root is the state, and going back is pointing back:

from recordstore import DirBytesStore, FilePointer

store = RecordStore(DirBytesStore("blobs"), pointer=FilePointer("root"))
store.put("users/alice", {"name": "Alice"}); store.commit(message="add alice")
store.put("users/bob", {"name": "Bob"});     store.commit(message="add bob")

for v in store.history():      # newest first, `*`-style current flag included
    print(v.root[:12], v.at, v.message, v.current)

store.undo()                   # back to the version without bob
store.redo()                   # forward again

Concurrent writers converge without a lock server — if the shared pointer moved under a commit, it three-way merges and retries:

from recordstore import MemoryPointer

pointer = MemoryPointer(root)                  # a shared "latest version" name
a = RecordStore(blobs, pointer=pointer)        # two writers open the same version
b = RecordStore(blobs, pointer=pointer)
a.put("users/carol", {"name": "Carol"}); a.commit(reconcile=True)
b.put("users/dave",  {"name": "Dave"});  b.commit(reconcile=True)   # folds in a's change
# the pointer now names a version containing both carol and dave

Why

Content-addressed stores give you immutable put(bytes) → ref / get(ref) → bytes and nothing else: no keys, no typed records, no transactions, no snapshots. recordstore adds exactly that missing layer and nothing more:

  • Records instead of raw bytes — values are any JSON-compatible object, stored under string keys.
  • Atomic, versioned commits — mutations are staged in memory; commit() lands all of them as one new root reference. A reader either sees all of a commit or none of it.
  • Snapshot isolationRecordStore.at(root, blobs) pins one root and sees a frozen, self-consistent dataset for arbitrarily long reads, with no locking: the whole dataset-at-a-version is one reference.
  • Canonical roots — encodings are deterministic, so equal content produces an equal root reference, regardless of the insertion/deletion history that produced it. Versions are content-addressable, comparable with a string equality check, and cheap to diff.
  • Three-way mergeRecordStore.merge(base, ours, theirs) reconciles two divergent versions; canonicity makes unchanged subtrees merge for free and equal edits conflict-free, with conflicts raised or settled by a resolver(key, base, ours, theirs) you supply. The diff is O(divergence), not O(dataset).
  • Verifiable proofsstore.prove(key) produces a small, JSON-ready inclusion or absence proof against the committed root (absence is provable because the canonical encoding gives a key exactly one possible location); verify_proof(proof, root) checks it with no store access at all — hold the 32-byte root, verify any claim about the dataset.
  • Version comparisonstore.diff(other_root) answers "what changed between these two published versions?" directly: (key, mine, theirs) per differing key, the same O(divergence) structural walk, so equal roots read nothing at all.
  • Undo, redo, and a version log — a pointer remembers where it has been, so history() lists the states this replica has held (newest first, with the optional commit(message=…) label), undo()/redo() step along that line, checkout(root) jumps to one, and status() says what is possible. No diff is replayed and nothing is recovered: a root is the state, so going back is pointing back. Editor semantics — a commit after an undo abandons the redo tail — with a local-first store's journal as the deeper audit (this timeline is the branch, the journal is the reflog). A message labels a transition and is never part of the content, so equal content still commits to equal roots.
  • Local-firstlocal_first_store(path, api_url) stops the choice between disk and Swarm: commits land on local disk instantly (offline is the normal mode), a background worker pushes them to Swarm and confirms arrival peer-to-peer, sync() is the certainty barrier, and local disk is a budgeted working set — unpushed data is pinned, only Swarm-confirmed blobs evict, evicted reads heal by verified re-fetch. Shape the working set with pin(name, prefix) / fetch(prefix); collapse local history with squash_history(); a key whose bytes are temporarily unreachable raises RecordUnavailable, never a false KeyError.
  • Multi-writer, no lock servercommit(reconcile=True) makes concurrent writers converge: if the pointer moved under you it three-way merges and retries instead of overwriting. Race-free in-process; best-effort across processes over a Swarm feed. A commutative resolver keeps 3+ writers order-independent.
  • Structural sharing — versions are stored as a persistent (copy-on-write) compacted radix trie; a commit writes only the blobs along the changed paths, and unchanged subtrees are shared between versions.
  • Concurrent I/Oitems() (bulk read), get_many/put_many, and a pooled keep-alive HTTP session let BeeBytesStore parallelise round trips instead of paying one per record — the difference between usable and not on a high-latency link.

Install

pip install recordstore

# with the Bee (Swarm) bytes backend's HTTP dependency:
pip install "recordstore[bee]"

# with the Swarm feed pointer (adds swarm-bee for SOC/secp256k1 signing):
pip install "recordstore[feeds]"

# with postage_batch_id="auto" and batch-health reporting (adds swarmfs):
pip install "recordstore[stamps]"

# the whole store directly ON Swarm — everything swarm_store() needs:
pip install "recordstore[swarm-only]"

# disk now, Swarm in the background — everything local_first_store() needs:
pip install "recordstore[local-first-swarm]"

Python ≥ 3.11. The core imports only the standard library; both extra dependencies are imported lazily — requests only by BeeBytesStore ([bee]), swarm-bee only by SwarmFeedPointer ([feeds]).

The pieces

Layer What it does Implementations
BytesStore put(bytes) → ref, get(ref) → bytes MemoryBytesStore (in-memory, testing), DirBytesStore (durable local directory), FsspecBytesStore (S3/GCS/HTTP/… via fsspec), BeeBytesStore (Swarm Bee node over /bytes — the blob endpoint, not the raw /chunks/{address} primitive), CachedBytesStore (byte-budgeted LRU wrapper over any of them), swarmfs's LocalStore (local-first store directory)
trie (internal) canonical persistent radix trie mapping keys to value blobs
RecordStore staging, commit() / commit(reconcile=True), snapshots, sorted keys()/items(), three-way merge(), structural diff()
RecordStore (history) history(), undo(), redo(), checkout(root), status() — where this replica has been, and going back
Pointer mutable name for the latest root, and the timeline of the roots it has held MemoryPointer, FilePointer (atomic local file + a .timeline sibling), SwarmFeedPointer (owner-signed Swarm feed, over swarm-bee)

| swarm_store(topic, ...) | assembles the two Swarm pieces into a store | the one place Swarm is chosen: BeeBytesStore blobs and a SwarmFeedPointer head | | local_first_store(path, api_url) | disk now, Swarm in the background | swarmfs LocalStore + journal (the reflog) + background push/confirm; sync(), sync_status(), pin/fetch, publish(pointer), squash_history() ([local-first-swarm] extra, swarmfs ≥ 0.9) |

Nothing above RecordStore ever sees a stored blob or a trie node — and nothing below it needs to know Swarm exists unless you asked for it:

from recordstore import swarm_store

store = swarm_store("my-notes", signer=key)   # publish: blobs + feed on Swarm
store = swarm_store("my-notes", owner=addr)   # follow someone else's feed

Documentation

  • User guide — the tutorial: concepts, the canonicity contract, running against a real Bee node, versioning patterns, error handling, and current limitations.
  • Reference — compact and definition-first: every export, signature, error, and extra in tables, pinned against the code by tests/test_reference.py. The right document to hand to an AI agent.

Testing

python3 -m pytest tests/                                 # unit + fuzz + boundary tests

BEE_API=http://<node>:1633 BEE_BATCH=<batchID> \
    python3 -m pytest tests/test_recordstore_bee.py -v   # bytes backend, live node

pip install "recordstore[feeds]"                         # needs swarm-bee
BEE_API=http://<node>:1633 BEE_BATCH=<batchID> \
    python3 -m pytest tests/test_recordstore_feed.py -v  # feed pointer, live node

The fuzz suite runs randomized put/delete histories against a plain-dict oracle and asserts the canonical-root property throughout. The Bee integration tests skip automatically unless BEE_API is set (the feed test also needs swarm-bee installed); against a real (non-dev) node always provide BEE_BATCH with a purchased postage batch id.

Background

This is a Python re-implementation of an old idea — content-addressed, canonical-root, versioned key-value storage — best known from Ethereum's Merkle Patricia Trie and from Noms/Dolt's "prolly trees." The value here is fit, not novelty: a much simpler canonical encoding than MPT (avoiding the exact bug class that once caused a chain split), a far smaller scope than Dolt/Irmin (no query language; a single three-way merge primitive, not a merge engine), and — as far as we could find — the first implementation of this pattern for Python with a Swarm/Bee backend. See the user guide's background section for the full comparison.

Status

Current release: 0.20.3 (2026-09-18; the feed pointer's cold probe retries a transient 500, so a fresh feed's first commit no longer fails on one flaky read — found by loopmarket's live clearing gate). Extracted from petfold/ontodag (July 2026) with history preserved; validated against a live Bee 2.8.2 light node on Gnosis mainnet (roundtrips, canonical roots on real BMT references, network retrievability) — CI runs 170 tests offline, and with BEE_API set the whole suite, live tests included, is 188 passed / 0 skipped.

Landmarks: SwarmFeedPointer (owner-signed Swarm feed, over swarm-bee) in v0.4.0; three-way merge in v0.8.0; auto-reconciling commit(reconcile=True) in v0.9.0; a best-effort feed compare_and_set (cross-process reconcile) in v0.10.0; prove/verify_proof in v0.16.0; local-first stores in v0.17.0; and undo/redo/history()/checkout() in v0.20.0 — the version timeline a pointer keeps beside itself. CHANGELOG.md is the authoritative history.

Known gaps — a Swarm feed has no atomic index claim, so exactly-simultaneous same-index writes can still race (in-process reconcile is race-free); one blob per record; the version timeline is per-replica and an undo does not travel through a merge — are detailed in the user guide.

Release files for recordstore 0.20.3

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

Source distribution (sdist)

Source distribution for recordstore 0.20.3
File Size Uploaded
recordstore-0.20.3.tar.gz 75.3 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for recordstore 0.20.3
File Interpreter ABI Platform
recordstore-0.20.3-py3-none-any.whl Python 3 none any Details

Total release size: 116.6 kB

Release files / recordstore-0.20.3.tar.gz

Download URL recordstore-0.20.3.tar.gz
Size 75.3 kB
Tags Source
SHA-256 checksum
How to use checksums
5927e51c1636747c06125c9fa7fe0e1010ec3aedc5b2e8fc57a3b7f940e42de4
BLAKE2b-256 checksum
How to use checksums
866f5bfd977ceb1d26d676371ada536b32d87b7bbb5b17b4c0e8e2c885160153
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release files / recordstore-0.20.3-py3-none-any.whl

Download URL recordstore-0.20.3-py3-none-any.whl
Size 41.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c47addafb8070b17218f050bb92bc4c39b4bdb3ece3b5838d76b36fb241391e0
BLAKE2b-256 checksum
How to use checksums
0c544b54bb128865e970118b9c62f4e3eb372472638dcfa1470782431b9cb43b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 18, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.20.3 This release

2 release files

0.20.2

2 release files

0.15.0

2 release files

0.14.0

2 release files

0.13.2

2 release files

0.13.1

2 release files

0.13.0

2 release files

0.12.1

2 release files

0.12.0

2 release files

0.11.0

2 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