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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ceramicsdk-0.1.0.tar.gz.
File metadata
- Download URL: ceramicsdk-0.1.0.tar.gz
- Upload date:
- Size: 2.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fff405dfb9d4a65bc96b3ee9a64d46457db77914fde3d4e066ea104f6c5d5ac
|
|
| MD5 |
d043cbaefbed367329eb7abe9ff39689
|
|
| BLAKE2b-256 |
af4f015287059138a3a02f1d13e6d3c7e2b91fe51b31ff7d5effcde4226b0522
|
File details
Details for the file ceramicsdk-0.1.0-py3-none-any.whl.
File metadata
- Download URL: ceramicsdk-0.1.0-py3-none-any.whl
- Upload date:
- Size: 2.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.10.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ea83a828e027bcaa0ddd2884aff7a25b762b917eb95f5d9d7d110a9323dc042
|
|
| MD5 |
9c2fbb9ea7660d2aaae89a995dd1a2cb
|
|
| BLAKE2b-256 |
8d7b3a2e12078bb0037386595a9a7e9f9a18ec3de6e7292ff978d74d03e891e3
|