krakenpy

krakenpy is tool in which we integrated kraken crypto exchange API


Keywords
kraken, kraken-api, python, crypto, exchange, kraken-api-client, kraken-exchange-api, kraken-python, package, python-package
License
MIT
Install
pip install krakenpy==0.1.4

Documentation

krakenpy

krakenpy is a python integration for kraken API. This package is using krakenex underneath, because krakenex only provides two methods query_private and query_public and it's really hard to guess the request params. Therefore, I have introduced Python Typing and dataclasses to readability.

Installation

pip install krakenpy

or

poetry add krakenpy

Usage

from krakenpy import Kraken, KrakenError

if __name__ == "__main__":
    kraken = Kraken(
        api_key="KRAKEN_API_KEY",
        api_secret="KRAKEN_API_SECRET",
    )

    # Returns the User's account balance.
    try:
        print(kraken.get_balance())
    except KrakenError as e:
        print(e)

Authors