Python library to Pay using IOTA
Install the library pip install iotapay
Import package: from iotapay.iotapay import Iotapay
Initialize: Iotapay('https://url:14265', 'TWQH9ETUWNDTRHSQVNLOSFMSTQLHRTZQGDTFUHEKRNPVDRQGHQEARNLSXXCXGICCVWBQHOHWPYZSHJYTC')
pay = Iotapay('https://url:14265', 'YOUR SEED')
Retrieve balance: pay.get_balance({})
data = {
'json_data': {
'version': '0.0.9',
},
'tag': 'ACYCLICIOTAPAYLIOTA99999999',
'to_address': 'ADDRESS',
'amount': 10
}
Pay : pay.pay(data)
NOTE: Please, use proper iota node url, ADDRESS and your SEED to initialise. These are simple dummy values. NOT meant for production usage.