A user friendly Kraken API client using pydantic 🐙
Project description
Kraken-pull
A user friendly Kraken API client using pydantic 🐙
Installation 💿
The easiest way to use krakenpull is to install via pip:
pip install krakenpull
Usage 🪚
Initialize a kraken client:
from krakenpull import Kraken
client = Kraken(key, private_key)
Common methods and features:
# get account balance
balances = client.get_account_balance()
print(balances) # {Currency.XBT: 5.23}
# get closed orders
closed_orders = client.get_closed_orders()
print(closed_orders) # [ClosedTransactions(...), ...]
# get order book
from krakenpull import Currency
order_book = client.get_order_book(currency_pair=(Currency.XBT, Currency.USD))
print(order_book) # {"asks": ["69854.10000", "17.384", 1711832989], "bids": ["69854.00000", "0.015", 1711832988]}
Contributing 🧑💻
Issues, PRs and other contributions are always welcome.
Please note this repository uses black for formatting, ruff for linting and mypy for type checking.
Pre-commit hooks help to make committing easier by automating running black and ruff so if you want to make use of them, you can install them by using the following commands:
brew install pre-commit
pre-commit install --install-hooks
pre-commit install --hook-type commit-msg
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file krakenpull-3.0.0.tar.gz.
File metadata
- Download URL: krakenpull-3.0.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.0 CPython/3.10.8 Linux/6.5.0-1025-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10ad3d2d40f5d45fe6457faf4faf380c9ff8812e172426969925e40321063a3b
|
|
| MD5 |
dc6aba6c328208efdfd2a6a6c36257e6
|
|
| BLAKE2b-256 |
7abd2189e0038046a3071e61c9e9adb3910113f13bb384e1e2d59532ee74d596
|
File details
Details for the file krakenpull-3.0.0-py3-none-any.whl.
File metadata
- Download URL: krakenpull-3.0.0-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.0 CPython/3.10.8 Linux/6.5.0-1025-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cbeb9d12d43e0033b1d995238a9e45de4eb17ad9e11aab2c3f599af4c68ec9f
|
|
| MD5 |
adff71493a2fdcff2f4778037461a5c2
|
|
| BLAKE2b-256 |
69632e38f0b03f8e206d3af1a21fc8596a6e374795119ec7dba9b39d250f7ec3
|