Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qweeze/wex-api-client
A python client for wex.nz cryptocurrency exchange API
https://github.com/qweeze/wex-api-client
api-client bitcoin cryptocurrency-exchanges
Last synced: 20 days ago
JSON representation
A python client for wex.nz cryptocurrency exchange API
- Host: GitHub
- URL: https://github.com/qweeze/wex-api-client
- Owner: qweeze
- License: mit
- Created: 2017-09-16T21:56:16.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-12T11:41:24.000Z (over 6 years ago)
- Last Synced: 2024-10-06T22:16:39.392Z (about 1 month ago)
- Topics: api-client, bitcoin, cryptocurrency-exchanges
- Language: Python
- Size: 10.7 KB
- Stars: 5
- Watchers: 6
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## wex.nz API client
A python client for [wex.nz](https://wex.nz) cryptocurrency exchange API.
[Public API docs](https://wex.nz/api/3/docs)
[Trade API docs](https://wex.nz/tapi/docs)
Tested with python 2.7.13 and 3.6
##### Installation
```
$ pip install wex-api
```
##### Usage example
```python
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')
```