a mini python sdk for quorum lightnode with http/https requests to quorum fullnode
Project description
QuoRum LightNode Python SDK
Python SDK for Quorum LightNode, Without local storage.
Another better choice is quorum-lightnode-py, with local storage.
More about QuoRum:
Install
pip install quorum_mininode_py
Usage
from quorum_mininode_py import MiniNode
seed_url = 'rum://seed?v=1&e=0&n=0&c=apzmbMVtMy6J0sQKwhF...2MwHjpA2E'
pvtkey = "0xd4e9ddc19ec5b...d8c"
bot = MiniNode(seed_url,pvtkey)
# post content to rum group chain
data = {
"type": "Create",
"object": {
"type": "Note",
"content": "Hello world! Hello quorum!",
"id": "a1d92233-3801-4295-a3cd-0e594385acc6",
},
}
resp = bot.api.post_content(data)
print(resp)
# like a post
data = {
"type": "Like",
"object": {"type": "Note", "id": "a1d92233-3801-4295-a3cd-0e594385acc6"},
}
resp = bot.api.post_content(data)
print(resp)
# get content from rum group chain
trxs = bot.api.get_content(num=2, reverse=True)
print(trxs)
Source
- quorum fullnode sdk for python: https://github.com/liujuanjuan1984/quorum-fullnode-py
- quorum data module for python: https://github.com/liujuanjuan1984/quorum-data-py
- and more.. https://github.com/okdaodine/awesome-quorum
License
This work is released under the MIT license. A copy of the license is provided in the LICENSE file.
Project details
Release history Release notifications | RSS feed
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 quorum_mininode_py-1.2.3.tar.gz.
File metadata
- Download URL: quorum_mininode_py-1.2.3.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8aba82e91946979f5bb6f5087529f41f129d41d815e2c4ae3d7b5bf64d68c25
|
|
| MD5 |
4a871d7236bbaf958432a3be29a84a44
|
|
| BLAKE2b-256 |
c5e8c7b3476211a7187e3e8776df7ae5834f15d38871e3401986d47aaf2b58ca
|
File details
Details for the file quorum_mininode_py-1.2.3-py3-none-any.whl.
File metadata
- Download URL: quorum_mininode_py-1.2.3-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73f2fbf429afa52e041bab21de0e68827f387e1bee20d933d70c144136acf919
|
|
| MD5 |
536218aef7271ef5c9ef6f04afe35467
|
|
| BLAKE2b-256 |
425f4f4f3d0f9e129b65217702b4faf2af08d1fef77f6fe43d6d86b35bf51e44
|