krakenpy 0.1.4

Creator: bigcodingguy24

Last updated:

Add to Cart

Description:

krakenpy 0.1.4

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

Sheikh Haris Zahid

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.