#####poloniex.py - Tested on Python 2.7.12 & 3.5.2 Inspired by this wrapper written by 'oipminer'
- ApiKey and Secret are optional if used for just public commands.
- Api Commands have been 'mapped' into methods within the Poloniex class for your convenience.
- Raises
ValueError
if the command supplied does not exist or if the api keys are not defined - The
poloniex.Poloniex()
object has an optional 'timeout' attribute/arg that adjusts the number of seconds to wait for a response from polo (default = 3 sec) - Optional api 'coach' can restrict the amount of calls per sec, keeping your api calls (that aren't threaded) under the limit (6 calls per sec). Activate the coach using
poloniex.Poloniex(coach=True)
when creating the polo object or by definingpolo._coaching = True
.
Python 2:
pip install git+https://github.com/s4w3d0ff/python-poloniex.git
Python 3:
pip3 install git+https://github.com/s4w3d0ff/python-poloniex.git
Python 2:
pip uninstall poloniex
Python 3:
pip3 uninstall poloniex
from poloniex import Poloniex
polo = Poloniex()
print(polo('returnTicker')['BTC_CGA'])
# or
print(polo.returnTicker()['BTC_CGA'])
print(polo.marketTradeHist('BTC_CGA'))
import poloniex
polo = poloniex.Poloniex('your-Api-Key-Here-xxxx','yourSecretKeyHere123456789')
# or
polo.Key = 'your-Api-Key-Here-xxxx'
polo.Secret = 'yourSecretKeyHere123456789'
balance = polo.returnBalances()
print("I have %s CGA!" % balance['CGA'])
# or
balance = polo('returnBalances')
print("I have %s BTC!" % balance['BTC'])
from poloniex import Poloniex
polo = Poloniex('your-Api-Key-Here-xxxx','yourSecretKeyHere123456789', extend=True)
Using extend=True
will wrap most of the api commands with more 'meaningful' namespaces.
print(polo.marketTicker())
print(polo.myBalances())
Examples of WAMP applications using the websocket push API can be found here.
You like?!
CGA: aZ1yHGx4nA64aWMDNQKXJrojso7gfQ1J5P
BTC: 15D8VaZco22GTLVrFMAehXyif6EGf8GMYV
LTC: LakbntAYrwpVSnLWj1fCLttVzpiDXDa5JV
DOGE: DAQjkQNbhpUoQw7KHAGkDYZ3yySKi751dd