All Projects → thebotguys → Cryptopia Api Python

thebotguys / Cryptopia Api Python

Licence: gpl-3.0
Python wrapper for cryptopia API which kicks ass and chews bubblegum

Programming Languages

python
139335 projects - #7 most used programming language
python2
120 projects
python27
39 projects

Cryptopia python API by CC Tech

The Bot Guy ([email protected])

Overview

This wrapper provides a friendly way to call Cryptopia API from a Python 2.7 script. Requires requests 2.8.1

Usage

Just import it and use it.

from cryptopia_api import Api

#later...
api_wrapper = Api(MY_PUBLIC_KEY, MY_SECRET_KEY)

#call a request to the api, like balance in BTC...
balance, error = api_wrapper.get_balance('BTC')
if error is not None:
    #handle error
    print 'ERROR: %s' % error
else:
    #ok
    print 'Request successfull. Balance in BTC = %f' % balance

Check cryptopia API docs for the parameters of each call: a more detailed wiki will be added here soon!

Donate

Feel free to donate:

METHOD ADDRESS
BTC 1DVgmv6jkUiGrnuEv1swdGRyhQsZjX9MT3
XVG DFstPiWFXjX8UCyUCxfeVpk6JkgaLBSNvS
ETH 0x2fe7bd8a41e91e9284aada0055dbb15ecececf02
USDT 18obCEVmbT6MHXDcPoFwnUuCmkttLbK5Xo
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].