This module helps you to interact with changelly api easily from your Python3 applications.
Use pip to install the module:
pip install changelly
Initialize changelly client object
from Changelly.changelly import ChangellyApi
client = ChangellyApi('apikey','apisecret')
params={
"from": "eth",
"to": "btc",
"amount": "1"
}
x=client.getExchangeAmount('1',**params)
print(x)
- The Official API documentation can be found here.
Feel free to contribute to this project.