Skip to main content

Python implementation of a kaspa grpc client

Project description

kaspy

Python implementation of a kaspa-grpc client.

work in progress...

Breaking changes will occur without prior notice!

Installaton:

pip install kaspy

Basic Documentaion:

Connecting to a RPC server with connect() or auto_connect():

# Import the kaspa client
from kaspy.kaspa_clients import RPCClient

#Initialize a client instance
client = RPCClient() 

#Connect to a predefined host
client.connect(host='<ip>', port='<port>') 

#OR

#Connect to a a publicaly broadcasted node from the dns_seed_servers.
client.auto_connect() 
#note: 
# 1) it may take a while to find a responsive nodes, timeout should be issued to not get stuck searching
# 2) min node requirements for auto-connect is v0.12.2

Sending a request():

continued...

#define the command you want to send
command = 'getInfoRequest'

#build the payload for the command
payload = {} #in our case we don't need to send additional information 

#send the request to the server and retrive the response
resp  = client.request(command=command, payload=payload)

print(resp) # print response

Subscribing to a stream with subscribe():

continued...

command = 'notifyVirtualSelectedParentChainChangedRequest'

payload = {}

def callback_func(notification : dict) # create a callback function to process the notifications
    print(notification)

#send the request to the server and retrive the response
resp  = client.subscribe(command=command, payload=payload, callback=callback_func)

import time
time.sleep(5) # do stuff

client.unsubscribe(command) #unsubscribe to the stream

Disenganging the service with close() or disconnect()

continued...

client.disconnect() # finishes sending all requests and responses in Que, halts all operations, but keeps the channel open.

client.close() # closes the channel completely

for more references on commands and payloads see:

https://github.com/kaspanet/kaspad/blob/master/infrastructure/network/netadapter/server/grpcserver/protowire/rpc.md

for conversions to KaspaMessage command names reference:

https://github.com/kaspagang/kaspy/blob/master/kaspy/protos/messages.proto

known issues:

To Do:

Fix breaking issue

Clean up, lots of unused code left in place.

Implement error handling and timeouts

Implement Streaming Callback handling of notification messages

add to pip

Implement auto-reconnect options to client

  • Implement P2P communication
  • 2nd cleanup
  • Documentation
  • Allow for commandline use
  • ...
  • Async Implementation

Requirements

  • grpc

Contribute

feel free to open a pull request.

Authors

@D-Stacks

Donations welcome @ kaspa:qzyjckdvgyxgwqj8zztw7qkqylsp864fyquzg8ykmmwkz58snu85zlk0mfy89

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

kaspy-0.0.13.tar.gz (42.4 kB view details)

Uploaded Source

Built Distribution

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

kaspy-0.0.13-py3-none-any.whl (45.2 kB view details)

Uploaded Python 3

File details

Details for the file kaspy-0.0.13.tar.gz.

File metadata

  • Download URL: kaspy-0.0.13.tar.gz
  • Upload date:
  • Size: 42.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.6

File hashes

Hashes for kaspy-0.0.13.tar.gz
Algorithm Hash digest
SHA256 88a893ce333d2e7402cf5ddb60e8eaafdc2bc31358e28da03e9925fca07923ec
MD5 73352ff63b49b19eaaf9ace93941fed3
BLAKE2b-256 b71b35ec0db44c935d6744494ef6672ab89b385b0beea5a6795cc6204c66e8fc

See more details on using hashes here.

File details

Details for the file kaspy-0.0.13-py3-none-any.whl.

File metadata

  • Download URL: kaspy-0.0.13-py3-none-any.whl
  • Upload date:
  • Size: 45.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.6

File hashes

Hashes for kaspy-0.0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 c97b13019ecb8fc6864a8c743ddf9496781a9eff09efa1c71471be67c22d9e04
MD5 171e226fa2549876aba06662177432f4
BLAKE2b-256 fb5a500498037bf15d00fad1a4e54f8e04537d3fcfbf780a0abca407f10e9227

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