parent
9cb763479a
commit
5462171338
@ -1,29 +1,21 @@ |
||||
import asyncio |
||||
from nextgraphpy import wallet_open_with_mnemonic_words, doc_sparql_update, disconnect_and_close |
||||
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( |
||||
"/Users/nl/Downloads/wallet-Hr-UITwGtjE1k6lXBoVGzD4FQMiDkM3T6bSeAi9PXt4A.ngw", |
||||
["jealous", |
||||
"during", |
||||
"elevator", |
||||
"swallow", |
||||
"pen", |
||||
"phone", |
||||
"like", |
||||
"employ", |
||||
"myth", |
||||
"remember", |
||||
"question", |
||||
"lemon"], |
||||
"/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) |
||||
await doc_sparql_update(session_info["session_id"], |
||||
"INSERT DATA { <did:ng:_> <example:predicate> \"An example value22\". }", |
||||
"did:ng:o:Dn0QpE9_4jhta1mUWRl_LZh1SbXUkXfOB5eu38PNIk4A:v:Z4ihjV3KMVIqBxzjP6hogVLyjkZunLsb7MMsCR0kizQA") |
||||
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()) |
Loading…
Reference in new issue