coinexpy - Python wrapper for Coinex APIs
Through coinexpy you can simply buy or sell crypto in your Coinex account
Features
- place limit order
- place market order
- get balance
- get price
Install
pip install coinexpy
Example
You can create API key and get your access_id & secret_key here
from coinexpy.coinex import Coinex
coinex = Coinex('<your_access_id>', '<your_secret_key>')
balance = coinex.get_balance()
usdt_balance = coinex.get_available('USDT')
btc_price = coinex.get_last_price('BTCUSDT')
coinex.market_buy('BTCUSDT', 100)
coinex.market_sell('BTCUSDT', 100)
coinex.limit_buy('BTCUSDT', 100, 50000)
result = coinex.limit_sell('BTCUSDT', 100, 50000)
coinex.cancel_order(result['id'], result['market'])
Amount
Field amount
should be calculated with the 2nd currency in pair e.g. in BTCUSDT you should calculate amount in USDT
Donate
For additional support you can always donate.
My TRX address:
TKjj4ds7pyRKrLDPa71aCQ9y73kFQPKjX2
BCH:
qrxfzgu5prerumfmzm20jajkp6nvje092yx8n5g0k6
USDT TRC20:
TKjj4ds7pyRKrLDPa71aCQ9y73kFQPKjX2
Contact
If you need another function or found a bug in existing ones submit a new issue Here.