Metadata-Version: 2.1
Name: coinex.py
Version: 1.0.2
Summary: coinex.com API wrapper
Home-page: https://github.com/EchterAgo/coinex
Author: Axel Gembe
Author-email: derago@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests

# coinex

A minimal [coinex.com API](https://github.com/coinexcom/coinex_exchange_api/wiki) wrapper.  Some of the functions accept additional arguments, see the API documentation for those.

## installation

```
pip install coinex
```

## usage

```python
from coinex import CoinEx
from somewhere_else import access_id, secret

coinex = CoinEx(access_id, secret)

# public API
coinex.market_list()
coinex.market_ticker('BTCBCH')
coinex.market_depth('BTCBCH')
coinex.market_deals('BTCBCH')

# private API
coinex.balance()
coinex.balance_coin_withdraw_list()
coinex.balance_coin_withdraw('BCH', 'qzjtuuc9nafvfhmwt47z84awltp9gmx7wyma3kvy9v', 0.001)
coinex.balance_coin_withdraw_list(coin_withdraw_id=2465345342)
coinex.balance_coin_withdraw_cancel(coin_withdraw_id=2465345342)
coinex.order_limit('CETBCH', 'sell', 100.0, 10.0)
coinex.order_market('CETBCH', 'buy', 1.0)
coinex.order_ioc('CETBCH', 'sell', 100.0, 10.0)
coinex.order_pending('CETBCH')
coinex.order_finished('CETBCH')
coinex.order_status('CETBCH', 2465345342)
coinex.order_deals(2465345342)
coinex.order_user_deals('CETBCH')
coinex.order_pending_cancel('CETBCH', 2465345342)
coinex.order_mining_difficulty()
```



