Skip to content

delta575/python-surbtc-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python SURBTC API Wrapper

SURBTC Python API Wrapper, Cryptocurrency Exchange for Chile, Colombia and Peru. Tested on Python 3.5

Go to SURBTC

Dev Setup

Install the libs

pip install -r requirements.txt

Rename .env.example > .env

Installation

pip install git+https://github.com/delta575/python-surbtc-api.git

Usage

Setup Public:

from surbtc import SURBTC
client = SURBTC.Public()

Setup Auth (ApiKey/Secret requiered, Test is optional (default: False)):

from surbtc import SURBTC
client = SURBTC.Auth(API_KEY, API_SECRET, TEST)

Market Pairs:

Bitcoin Pairs:

btc-clp
btc-cop
btc-pen

Ether Pairs:

eth-btc
eth-clp
eth-cop
eth-pen

Open for everyone: www.surbtc.com

SURBTC API Docs: www.surbtc.com/docs/api

Licence

The MIT License (MIT)

Copyright (c) 2016 Felipe Aránguiz | Sebastián Aránguiz

See LICENSE

Based on

scottjbarr/bitfinex