Welcome to python-bigone v0.1.0

https://img.shields.io/pypi/v/python-bigone.svg https://img.shields.io/pypi/l/python-bigone.svg https://img.shields.io/travis/sammchardy/python-bigone.svg https://img.shields.io/coveralls/sammchardy/python-bigone.svg https://img.shields.io/pypi/wheel/python-bigone.svg https://img.shields.io/pypi/pyversions/python-bigone.svg

This is an unofficial Python wrapper for the BigONE exchanges REST API v2. I am in no way affiliated with BigONE, use at your own risk.

PyPi
https://pypi.python.org/pypi/python-bigone
Source code
https://github.com/sammchardy/python-bigone
Documentation
https://python-bigone.readthedocs.io/en/latest/

Features

  • Implementation of all REST endpoints
  • Simple handling of authentication
  • Response exception handling

Quick Start

Register an account with BigONE.

Generate an API Key and store it.

pip install python-bigone
from bigone.client import Client
client = Client(api_key, api_secret)

# get markets
markets = client.get_markets()

# get market order book
depth = client.get_order_book('ETH-BTC')

# get market trades
trades = client.get_market_trades('ETH-BTC')

# get your accounts
currencies = client.get_accounts()

# place a bid order
transaction = client.create_order('KCS-BTC', Client.SIDE_BID, '0.01', '1000')

# place an ask order
transaction = client.create_order('KCS-BTC', Client.SIDE_ASK, '0.01', '1000')

# get a list of your orders for a symbol
orders = client.get_orders('ETH-BTC')

# get a list of your trades for a symbol
orders = client.get_trades('ETH-BTC')

# get list of all withdrawals
withdrawals = client.get_withdrawals()

# get list of all deposits
deposits = client.get_deposits()

For more check out the documentation.

Other Exchanges

If you use Binance check out my python-binance library.

If you use Kucoin check out my python-kucoin library.

If you use Allcoin check out my python-allucoin library.

If you use Quoinex or Qryptos check out my python-quoine library.

If you use IDEX check out my python-idex library.

https://analytics-pixel.appspot.com/UA-111417213-1/github/python-bigone?pixel

Index