Skip to content

kecven/poloniex

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

poloniex

Poloniex python API client for humans

https://travis-ci.org/Aula13/poloniex.svg?branch=master Code coverage

Description

Poloniex API client for humans

Installation

The package has been uploaded to PyPI, so you can install it with pip:

$ pip install poloniex

Usage Examples

Documentation can be inspected by calling the python's help function with a Poloniex object as parameter:

from poloniex import Poloniex
polo = Poloniex()
help(polo)

Public APIs

from poloniex import Poloniex
polo = Poloniex()
ticker = polo.returnTicker()['BTC_ETH']
print(ticker)

Private APIs

from poloniex import Poloniex
import os

api_key = os.environ.get('POLONIEX_API_KEY')
api_secret = os.environ.get('POLONIEX_SECRET')
polo = Poloniex(api_key, api_secret)

ticker = polo.returnTicker()['BTC_ETH']
print(ticker)

balances = polo.returnBalances()
print(balances)

Used in

  • crypto_trader: Trading automation on poloniex cyriptocoin exchange

Donations

Name Symbol Address
Bitcoin BTC 13NpLwXgEP8d9NpDUHptY6BypFRNXHL3tr
Ethereum ETH 0x8f61777b0f951ed5df684da495d82171aa3645ea
Litecoin LTC LKM1eTU8BmvCECJr54Tz1pHDr4e2AS41Ai

About

Poloniex python API client for humans

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.9%
  • Makefile 1.1%