2018-01-22 22:44:37 +01:00
|
|
|
# pylightning: A python client library for lightningd
|
|
|
|
|
|
|
|
### Installation
|
|
|
|
|
2018-01-27 17:14:37 +01:00
|
|
|
Note: With Python 2 you need to have the futures python library installed to be able to use pylightning:
|
2018-01-22 22:44:37 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
pip install futures
|
|
|
|
```
|
|
|
|
|
2018-01-27 17:14:37 +01:00
|
|
|
pylightning is available on pip
|
|
|
|
|
|
|
|
```
|
|
|
|
pip install pylightning
|
|
|
|
```
|
|
|
|
|
2018-01-22 22:44:37 +01:00
|
|
|
### Example
|
|
|
|
|
|
|
|
```py
|
2018-01-27 17:14:37 +01:00
|
|
|
from lightning import LightningRpc
|
2018-01-22 22:44:37 +01:00
|
|
|
import random
|
|
|
|
|
|
|
|
# Create two instances of the LightningRpc object using two different c-lightning daemons on your computer
|
|
|
|
l1 = LightningRpc("/tmp/lightning1/lightning-rpc")
|
|
|
|
l5 = LightningRpc("/tmp/lightning5/lightning-rpc")
|
|
|
|
|
|
|
|
info5 = l5.getinfo()
|
|
|
|
print(info5)
|
|
|
|
|
|
|
|
# Create invoice for test payment
|
|
|
|
invoice = l5.invoice(100, "lbl{}".format(random.random()), "testpayment")
|
|
|
|
print(invoice)
|
|
|
|
|
|
|
|
# Get route to l1
|
|
|
|
route = l1.getroute(info5['id'], 100, 1)
|
|
|
|
print(route)
|
|
|
|
|
|
|
|
# Pay invoice
|
|
|
|
print(l1.sendpay(route['route'], invoice['payment_hash']))
|
|
|
|
```
|