https://github.com/fxpgr/cryptojp
cryptojp is a Python2 and Python3 client for crypto coin trade. Binance/Poloniex/Hitbtc/Bitflyer etc...
https://github.com/fxpgr/cryptojp
binance bitcoin bitflyer btcbox coincheck crypto-coin-trade cryptocurrency exchange hitbtc poloniex python python-client quoine
Last synced: 2 months ago
JSON representation
cryptojp is a Python2 and Python3 client for crypto coin trade. Binance/Poloniex/Hitbtc/Bitflyer etc...
- Host: GitHub
- URL: https://github.com/fxpgr/cryptojp
- Owner: fxpgr
- License: mit
- Created: 2017-10-28T05:57:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-24T13:59:16.000Z (almost 8 years ago)
- Last Synced: 2023-07-27T07:24:44.958Z (over 2 years ago)
- Topics: binance, bitcoin, bitflyer, btcbox, coincheck, crypto-coin-trade, cryptocurrency, exchange, hitbtc, poloniex, python, python-client, quoine
- Language: Python
- Homepage:
- Size: 119 KB
- Stars: 23
- Watchers: 6
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cryptojp
[](https://www.python.org/)
[](https://pypi.python.org/pypi/cryptojp/)
[](https://travis-ci.org/fxpgr/cryptojp)
[](https://coveralls.io/github/fxpgr/cryptojp?branch=master)
[](https://github.com/fxpgr/cryptojp/graphs/commit-activity)
[](https://pypi.python.org/pypi/cryptojp/)
- == Python client for cryptocoin exchanges
- cryptojp is a python client for crypto coin trade.
- You can use this library on Python2/3.
- welcome your contributions.
- document :http://cryptojp.readthedocs.io/en/latest/
## HOW TO install
```pip install cryptojp```
or
```pip install git+https://github.com/fxpgr/cryptojp```
## HOW TO USE
### Initalizing
```python
from cryptojp import NewExchange
APIKEY = "YOUR_API_KEY"
SECRET_KEY = "YOUR_SECRET_KEY"
binance = NewExchange("binance", APIKEY, SECRET_KEY)
poloniex = NewExchange("poloniex", APIKEY, SECRET_KEY)
```
- - -
- See document :http://cryptojp.readthedocs.io/en/latest/
- - -
## Exchanges
| | Bitflyer | Coincheck | Btcbox | Quoine | Kraken | Hitbtc | Binance |
|-------------------|----------|-----------|--------|--------|--------|--------|---------|
| ticker() | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| markets() | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| settlements() | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| board() | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| order() | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| balance() | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| get_open_orders() | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| cancel_order() | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| get_fee() | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| | Poloniex | Bitfinex |
|-------------------|----------|-----------|
| ticker() | ✓ | ✓ |
| markets() | ✓ | ✓ |
| settlements() | ✓ | ✓ |
| board() | ✓ | ✓ |
| order() | ✓ | ☓ |
| balance() | ✓ | ☓ |
| get_open_orders() | ✓ | ☓ |
| cancel_order() | ✓ | ☓ |
| get_fee() | ✓ | ☓ |