Skip to main content

This Ceramic client implements the payload building, encoding, and signing needed to interact with the Ceramic Network. It currently supports ModelInstanceDocument and OrbisDB.

Project description

Ceramic and OrbisDB Python Client

These Orbis and Ceramic clients implements the payload building, encoding, and signing needed to interact with the Ceramic Network. It currently supports ModelInstanceDocument.

Features

  • Implements payload building, encoding, and signing for Ceramic interactions
  • Currently supports ModelInstanceDocument

Install the library using pip

pip3 install ceramicsdk

Instantiating a Client

You can use the Orbis Studio or run a local or self-hosted OrbisDB Instance to locate and configure your context ID, environment ID, and node endpoints (used below).

This README will utilize this data model as the input example.

First, generate a Decentralized Identifier (DID) using a DID library.

from ceramicsdk import OrbisDB

# using an existing data model example
table = "kjzl6hvfrbw6c6adsnzvbyr6itmf0igfy25xu0mqzei2pe2xw1hlusqyuknb9ky"

# using an existing context id
context = "<your-context-here>"

# dedicated orbis and ceramic endpoints 
o_endpoint = "<your-endpoint-here>"
c_endpoint = "<your-endpoint-here>"

# create a private key
privkey = os.urandom(32).hex()

# creating a client
db = OrbisDB(c_endpoint, o_endpoint, context, table, privkey)

Creating a Row

# input content must conform to data model used
doc = db.add_row({
    page: "/home",
    address: "0x8071f6F971B438f7c0EA72C950430EE7655faBCe",
    customer_user_id: 3,
    timestamp: "2024-09-25T15:06:14.957719+00:00"
})

Reading Data

env_id = "<your-env-id-here>"

# select rows without any filters
docs = orbis.read(env_id)

# using a defined query
q = 'SELECT * FROM kjzl6hvfrbw6c6adsnzvbyr6itmf0igfy25xu0mqzei2pe2xw1hlusqyuknb9ky as table WHERE table.customer_user_id = 3'
queried_rows = db.query(env_id, q)

Updating Data

# add a filter to select specific row
filters={"customer_user_id": 3}

# new content to replace the old
new_content={"customer_user_id": 2}

updated_rows = db.update_rows(env_id, filters, new_content)

Credits

This project is largely based on the work done by the team at https://github.com/valory-xyz/ceramic-py/, and by the team at https://github.com/indexnetwork/ceramic-python. We are grateful for their contributions to the Ceramic ecosystem and the open-source community.

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

ceramicsdk-0.1.4.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

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

ceramicsdk-0.1.4-py3-none-any.whl (13.5 kB view details)

Uploaded Python 3

File details

Details for the file ceramicsdk-0.1.4.tar.gz.

File metadata

  • Download URL: ceramicsdk-0.1.4.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for ceramicsdk-0.1.4.tar.gz
Algorithm Hash digest
SHA256 26009c1c9361b6059b434d4ab6182bc98aa17962a0838d302662d23b79d02b0c
MD5 73e29cbe689eeaaae7469d5244244fba
BLAKE2b-256 a7bae197e221a24e62f04475bf690293b92c931df0b0d1273d7a7254d632fa5a

See more details on using hashes here.

File details

Details for the file ceramicsdk-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: ceramicsdk-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 13.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for ceramicsdk-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 0e03b32ee41f6c3fe0edeaeefa5d497f5c133ab2437f5be9de022fe034cb42cf
MD5 062676d94de9df7f7c11292f9b7a8c82
BLAKE2b-256 2ed8e31d334b79aba59052215fddaee17160528bf535da13e3c7dafb1812a6dd

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