Skip to content

Latest commit

 

History

History
61 lines (37 loc) · 1.05 KB

README.md

File metadata and controls

61 lines (37 loc) · 1.05 KB

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