Skip to content

grantstephens/pybtcc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pybtcc

btcc API for python

Installation

Usage

See the tests for detailed usage examples, but basically:

API object creation

from pybtcc.api import btcc
api = btcc(key, secret. options)

Where options can be

option key description default
hostname the API host api.mybtcc.com
port the TCP port to attach to 443
pair The currency pair to provide results for XBTZAR
ca The root certificate None
timeout The maximum time to wait for requests 30 (s)

API calls

Latest ticker

api.get_ticker()

Returns: dictionary containing the latest ticker values

All tickers

api.get_all_tickers()

Returns: dictionary containing the latest ticker values for all currency pairs

Acknowledgements

A nod to @bausmeier/node-btcc for the node.js version, which helped accelerate the development of this code