Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rubenafo/krakee
Kraken Exchange API with Pandas dataframes, internal cache and some handy methods
https://github.com/rubenafo/krakee
bitcoin crypto cryptocurrency ethereum finance kraken python trading
Last synced: 10 days ago
JSON representation
Kraken Exchange API with Pandas dataframes, internal cache and some handy methods
- Host: GitHub
- URL: https://github.com/rubenafo/krakee
- Owner: rubenafo
- Created: 2021-02-26T00:45:16.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-25T00:33:11.000Z (almost 4 years ago)
- Last Synced: 2024-12-10T15:41:33.317Z (about 1 month ago)
- Topics: bitcoin, crypto, cryptocurrency, ethereum, finance, kraken, python, trading
- Language: Python
- Homepage:
- Size: 67.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![PyPI version](https://badge.fury.io/py/krakee.svg)](https://badge.fury.io/py/krakee)
[![License](https://img.shields.io/badge/license-Apache-blue.svg?style=flat)](https://opensource.org/licenses/Apache-2.0)
# krakee[Kraken](https://kraken.com) Exchange API with a thin pandas Dataframe wrap.
Krakee allows interacting with the Kraken API and handling data using Pandas' dataframes.
### Installation
```
pip install krakee
```### Example
```python
from krakee import Krakeekr = Krakee()
print(kr.asset_pairs().XXBTZEUR)
...
altname
XBTEUR
wsname
XBT / EUR
aclass_base
currency
base
XXBT
...
Name: XXBTZEUR, dtype: object
```
### Main features* Data handling using Dataframes
* Cached public API requests to build/test on top of Kraken API without annoying them too much
* Extra validation of API parameters
* Order builder to create/validate trades in the private API
* Public/Private Kraken API integration, you can freely fetch public data without an accountKrakee is built on top of:
* krakenex
* pykrakenapi
* pandas