Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

mchardysam/python-bigone

Repository files navigation

Welcome to python-bigone v0.1.0

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.

Donate

If this library helped you out feel free to donate.

  • ETH: 0xD7a7fDdCfA687073d7cC93E9E51829a727f9fE70
  • NEO: AVJB4ZgN7VgSUtArCt94y7ZYT6d5NDfpBo
  • LTC: LPC5vw9ajR1YndE1hYVeo3kJ9LdHjcRCUZ
  • BTC: 1Dknp6L6oRZrHDECRedihPzx2sSfmvEBys

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

About

BigONE Exchange API python implementation for automated trading

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

AltStyle によって変換されたページ (->オリジナル) /