Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 846 Bytes

README.rst

File metadata and controls

39 lines (25 loc) · 846 Bytes

Python library to Pay using IOTA

Setup

Install the library: pip install iotapay

Import package: from iotapay.iotapay import Iotapay

Initialize: Iotapay('https://url:14265', 'TWQH9ETUWNDTRHSQVNLOSFMSTQLHRTZQGDTFUHEKRNPVDRQGHQEARNLSXXCXGICCVWBQHOHWPYZSHJYTC')

Basic functions

Get Balance

pay = Iotapay('https://url:14265', 'YOUR SEED')

Retrieve balance: pay.get_balance({})

Pay

data = {'json_data': {'version': '0.0.9',}, 'tag': 'ACYCLICIOTAPAYLIOTA99999999', 'to_address': 'ADDRESS', 'amount': 10}

Pay : pay.pay(data)

More Functions coming soon.

NOTE: Please, use proper iota node url, ADDRESS and your SEED to initialise.