Skip to main content

Python bindings for samod - Rust implementation of automerge-repo

Project description

samod

Python bindings for Automerge via samod.

Development

pip install maturin
cd samod-py
maturin develop --release

Usage

import asyncio
import samod

async def main():
    repo = samod.Repo()
    print(f"Peer ID: {repo.peer_id()}")

    # Connect to sync server
    await repo.connect_websocket("ws://localhost:3030")

    # Create a document
    doc = await repo.create()
    await doc.set_string("title", "Hello World")

    # Read it back
    title = await doc.get_string("title")
    print(f"Title: {title}")

    url = await doc.url()
    print(f"Automerge URL: {url}")

    # Find an existing document
    existing = await repo.find("automerge:...")
    if existing:
        keys = await existing.get_keys()
        print(f"Keys: {keys}")

    await repo.stop()

asyncio.run(main())

API

Repo

Repository managing documents, storage, and sync.

Methods:

  • Repo() - Create repo with in-memory storage
  • peer_id() -> str - Get this peer's ID
  • async connect_websocket(url: str) - Connect to WebSocket sync server
  • async when_connected(peer_id: str) - Block until connected to specific peer
  • async find(doc_id: str) -> Optional[DocHandle] - Find document by AutomergeUrl
  • async create() -> DocHandle - Create new document
  • async stop() - Stop repo and abort background connections

Connection handling:

connect_websocket() spawns connections in the background. Use when_connected(peer_id) to wait for a specific peer, or asyncio.sleep() as a workaround when the peer ID is unknown.

DocHandle

Handle to an Automerge document.

Methods:

  • async document_id() -> str - Get document ID (AutomergeUrl)
  • async dump() -> bytes - Serialize document to bytes
  • async get_keys() -> List[str] - List all root-level keys
  • async get_string(key: str) -> Optional[str] - Get string field
  • async set_string(key: str, value: str) - Set string field

Development

# Development build
maturin develop

# Release build
maturin develop --release

# Build wheel
maturin build --release

Architecture Notes

This package relies on PyO3 and pyo3-async-runtimes to bind the core automerge/samod Rust code in Python with native async await support.

License

MIT

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

samod-0.5.0a3.tar.gz (144.2 kB view details)

Uploaded Source

Built Distribution

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

samod-0.5.0a3-cp38-abi3-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

File details

Details for the file samod-0.5.0a3.tar.gz.

File metadata

  • Download URL: samod-0.5.0a3.tar.gz
  • Upload date:
  • Size: 144.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.1

File hashes

Hashes for samod-0.5.0a3.tar.gz
Algorithm Hash digest
SHA256 aac32aadc1fdee73be9b8a6b72836799624d07941b54f10ae1dd97c80a3981e9
MD5 af9c663c53b4329dd9d2284fe07dac9a
BLAKE2b-256 c3bd99996e7d6f2b12b9eba51604505af7df1228b21f3837db2559614e3e1a07

See more details on using hashes here.

File details

Details for the file samod-0.5.0a3-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for samod-0.5.0a3-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96edfc3a24c5e0c89b3b2067382bf8916e5fd423a4f9d607ffb192a432ed1f42
MD5 8539a576ff3fab2ced64d7edc762817b
BLAKE2b-256 a1c13789df042fccea5289ee35b8bc794fbad8913a13d07e0c810a76edde6c68

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