You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Inspired by [this](http://pastebin.com/8fBVpjaj) wrapper written by 'oipminer'
4
5
> I (s4w3d0ff) am not affiliated with, nor paid by [Poloniex](https://poloniex.com). If you wish to contribute to the repository please read [CONTRIBUTING.md](https://github.com/s4w3d0ff/python-poloniex/blob/master/CONTRIBUTING.md). All and any help is appreciated.
5
6
#### Features:
@@ -24,8 +25,10 @@ All api calls are done through an instance of `poloniex.Poloniex`. You can use t
24
25
```python
25
26
# import this package
26
27
from poloniex import Poloniex
28
+
27
29
# make an instance of poloniex.Poloniex
28
30
polo = Poloniex()
31
+
29
32
# show the ticker
30
33
print(polo('returnTicker'))
31
34
```
@@ -46,13 +49,16 @@ To use the private api commands you first need an api key and secret (supplied b
46
49
```python
47
50
import poloniex
48
51
polo = poloniex.Poloniex(key='your-Api-Key-Here-xxxx', secret='yourSecretKeyHere123456789')
You can also not use the 'helper' methods at all and use `poloniex.PoloniexBase` which only has `returnMarketHist`,`__call__` to make rest api calls.
77
+
You can also not use the 'helper' methods at all and use `poloniex.PoloniexBase` which only has `returnMarketHist` and`__call__` to make rest api calls.
72
78
73
79
#### Websocket Usage:
74
80
To connect to the websocket api just create a child class of `PoloniexSocketed` like so:
0 commit comments