skyl / python-poloniex

Poloniex API wrapper for Python 2.7 & 3

Home Page:https://poloniex.com/support/api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pythonlicence releaserelease build
mastermaster build devdev build
Inspired by this wrapper written by 'oipminer'

I (s4w3d0ff) am not affiliated with, nor paid by Poloniex. I have been an active trader there since 2014 and love python. I found the linked python wrapper on the poloniex support page to be incomplete and buggy so I decided to write this wrapper and create this git repository. If you wish to contribute to this repository please read CONTRIBUTING.md. All and any help is appreciated.

Install latest release:

Python 2:

pip install https://github.com/s4w3d0ff/python-poloniex/archive/v0.4.6.zip

Python 3:

pip3 install https://github.com/s4w3d0ff/python-poloniex/archive/v0.4.6.zip

Usage:

See the wiki or help(poloniex) for more.

Basic Public Setup (no api Key/Secret):

from poloniex import Poloniex
polo = Poloniex()

Ticker

print(polo('returnTicker')['BTC_ETH'])
# or
print(polo.returnTicker()['BTC_ETH'])

Public trade history:

print(polo.marketTradeHist('BTC_ETH'))

Basic Private Setup (Api key/secret required):

import poloniex
polo = poloniex.Poloniex('your-Api-Key-Here-xxxx','yourSecretKeyHere123456789')
# or
polo.key = 'your-Api-Key-Here-xxxx'
polo.secret = 'yourSecretKeyHere123456789'

Get all your balances

balance = polo.returnBalances()
print("I have %s ETH!" % balance['ETH'])
# or
balance = polo('returnBalances')
print("I have %s BTC!" % balance['BTC'])

Private trade history:

print(polo.returnTradeHistory('BTC_ETH'))

Examples of WAMP applications using the websocket push API can be found here.

About

Poloniex API wrapper for Python 2.7 & 3

https://poloniex.com/support/api

License:GNU General Public License v2.0


Languages

Language:Python 100.0%