changelly

Changelly Exchange API client


Keywords
api-wrapper, changelly, cryptocurrency, python3
License
GPL-3.0
Install
pip install changelly==0.11

Documentation

Changelly Exchange API Client

License: LGPL v3 PyPI - Python Version PRs Welcome

This module helps you to interact with changelly api easily from your Python3 applications.

Installation

Use pip to install the module:

pip install changelly

Basic Usage

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)

Documentation

  • The Official API documentation can be found here.

Contributing

Feel free to contribute to this project.