Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
936 B
21 lines
936 B
import asyncio
|
|
from nextgraphpy import wallet_open_with_mnemonic_words, doc_create, doc_sparql_update, disconnect_and_close
|
|
|
|
async def main():
|
|
wallet_session = await wallet_open_with_mnemonic_words(
|
|
"/home/nn/Downloads/wallet-bCHhOmlelVtZ60jjGu7m-YtzF4TfD5WyErAMnEDOn-kA.ngw",
|
|
["mutual", "wife", "section", "actual", "spend", "illness", "save", "delay", "kiss", "crash", "baby", "degree" ],
|
|
[2, 3, 2, 3])
|
|
wallet_name = wallet_session[0]
|
|
session_info = wallet_session[1]
|
|
session_id = session_info["session_id"]
|
|
print(wallet_name)
|
|
print(session_info)
|
|
doc_id = await doc_create(session_id, "Graph", "data:graph", "store")
|
|
print(doc_id)
|
|
commits = await doc_sparql_update(session_id,
|
|
"INSERT DATA { <did:ng:_> <example:predicate> \"An example value22\". }", doc_id)
|
|
print(commits)
|
|
await disconnect_and_close(session_info["user"], wallet_name)
|
|
|
|
asyncio.run(main()) |