Skip to content

Commit

Permalink
Merge pull request #139 from s4w3d0ff/dev
Browse files Browse the repository at this point in the history
make chart.py work for python2
  • Loading branch information
s4w3d0ff authored Jul 3, 2017
2 parents 6f110ee + 6490e90 commit 1e0cdcb
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 6 deletions.
21 changes: 21 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Contributing

### Users can contribute to this repository in a variety of ways:

#### Have a feature you want implemented?

Open an [issue](https://github.com/s4w3d0ff/python-poloniex/issues) stating what feature you wish to implement, [pull requests](https://github.com/s4w3d0ff/python-poloniex/pulls) are encouraged and will speed up the implication.

#### Found a bug that needs fixing?

If you know how to fix it, a [pull requests](https://github.com/s4w3d0ff/python-poloniex/pulls) is encouraged, otherwise open an issue and provide details on the events leading up to the bug, and include a traceback of the error.

#### Want to improve documentation?

Take a look at the [Wiki](https://github.com/s4w3d0ff/python-poloniex/wiki) and docstrings. Improvement is always welcome.

#### Want to just show support?

You can simply star/fork [this repository at github.com](https://github.com/s4w3d0ff/python-poloniex/), and/or donate to the following:

BTC: `1A7K4kgXLSSzvDRjvoGwomvhrNU4CKezEp`
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[![python](https://img.shields.io/badge/python-2.7%20%26%203-blue.svg)![licence](https://img.shields.io/badge/licence-GPL%20v2-blue.svg)](https://github.com/s4w3d0ff/python-poloniex/blob/master/LICENSE) [![release](https://img.shields.io/github/release/s4w3d0ff/python-poloniex.svg)![release build](https://travis-ci.org/s4w3d0ff/python-poloniex.svg?branch=v0.4.5)](https://github.com/s4w3d0ff/python-poloniex/releases)
[![python](https://img.shields.io/badge/python-2.7%20%26%203-blue.svg)![licence](https://img.shields.io/badge/licence-GPL%20v2-blue.svg)](https://github.com/s4w3d0ff/python-poloniex/blob/master/LICENSE) [![release](https://img.shields.io/github/release/s4w3d0ff/python-poloniex.svg)![release build](https://travis-ci.org/s4w3d0ff/python-poloniex.svg?branch=v0.4.6)](https://github.com/s4w3d0ff/python-poloniex/releases)
[![master](https://img.shields.io/badge/branch-master-blue.svg)![master build](https://api.travis-ci.org/s4w3d0ff/python-poloniex.svg?branch=master)](https://github.com/s4w3d0ff/python-poloniex/tree/master) [![dev](https://img.shields.io/badge/branch-dev-blue.svg)![dev build](https://api.travis-ci.org/s4w3d0ff/python-poloniex.svg?branch=dev)](https://github.com/s4w3d0ff/python-poloniex/tree/dev)
Inspired by [this](http://pastebin.com/8fBVpjaj) wrapper written by 'oipminer'

Inspired by [this](http://pastebin.com/8fBVpjaj) wrapper written by 'oipminer'
> I (s4w3d0ff) am not affiliated with, nor paid by [Poloniex](https://poloniex.com). 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](https://github.com/s4w3d0ff/python-poloniex/blob/master/CONTRIBUTING.md). All and any help is appreciated.
## Install latest release:
Python 2:
```
pip install https://github.com/s4w3d0ff/python-poloniex/archive/v0.4.5.zip
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.5.zip
pip3 install https://github.com/s4w3d0ff/python-poloniex/archive/v0.4.6.zip
```

## Usage:
Expand Down
1 change: 1 addition & 0 deletions examples/chart/chart.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import print_function
from time import time
import logging
from operator import itemgetter
Expand Down
2 changes: 1 addition & 1 deletion poloniex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Poloniex API wrapper tested on Python 2.7.6 & 3.4.3
# https://github.com/s4w3d0ff/python-poloniex
# BTC: 15D8VaZco22GTLVrFMAehXyif6EGf8GMYV
# BTC: 1A7K4kgXLSSzvDRjvoGwomvhrNU4CKezEp
# TODO:
# [x] PEP8
# [x] Add better logger access
Expand Down

0 comments on commit 1e0cdcb

Please sign in to comment.