Skip to content

RiseVision/rise-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RISE Python SDK

Python library that provides APIs for interacting with the RISE blockchain.

Getting started

The simplest way to get started is to use pip to install this library:

pip install risesdk

The Python APIs are (mostly) strongly typed to help your IDE help you write code faster.

Here's a very simple program that prints out the current height of the chain:

from risesdk import Client

api = Client('https://wallet.rise.vision/api/')
status = api.blocks.get_status()
print('Chain height: {}'.format(status.height))

For more complete examples check out the examples/ directory.