waves-python

Python library for interacting with the Waves blockchain.


License
MIT
Install
pip install waves-python==1.0.1

Documentation

Python client library for interacting with Waves blockchain platform.

Package

waves-python PyPI version

Installation

pip install waves-python

Usage

  • Node basics:
node = Node(Profile.TESTNET)
print(f'Node version: {node.get_version()}')
  • Addresses:
address = Address.from_str('your_encoded_address')
balance = node.get_balance(address)
print(f'Balance: {balance}')

Requirements