wex-api

wex.nz exchange API client


Keywords
api-client, bitcoin, cryptocurrency-exchanges
License
MIT
Install
pip install wex-api==0.1.7

Documentation

wex.nz API client

A python client for wex.nz cryptocurrency exchange API.
Public API docs
Trade API docs
Tested with python 2.7.13 and 3.6

Installation
$ pip install wex-api
Usage example
from wex import Client
client = Client('your-API-key', 'your-API-secret')
# if key and secret not provided, only public API methods are available
market_info = client.info()
my_orders = client.active_orders('btc_usd')