Asynchronous Websockets API for the Kraken Cryptocurrency Exchange
Project description
Kraken-async-api
A library for asynchronous communications with the Kraken cryptocurrency exchange.
Quickstart
import asyncio
from kraken_async_api import Kraken, Config, Depth
async def print_(data):
print(data)
async def main():
# Only necessary if you wish to communicate with private endpoints
config = Config(api_key="your api-key", api_sec="your api-sec")
kraken_exchange = await Kraken.connect(async_callback=print_, config=config)
# ... your usage of the API here, for example:
kraken_exchange.public.subscribe_to_book(["XXBTZGBP"], Depth.D25)
if __name__ == '__main__':
asyncio.get_event_loop().run_until_complete(main())
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
kraken-async-api-0.1.1b1.tar.gz
(14.5 kB
view hashes)
Built Distribution
Close
Hashes for kraken_async_api-0.1.1b1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | da1eba8ae30fc57709768ed8876cac985399c0e22258399c61ffde8af499fa01 |
|
MD5 | 9ef51dbbc5d19606f6797d5fdfa76378 |
|
BLAKE2b-256 | c0e6e1326b96e6880860e3cf8113e0104efb7250e58f6a12d82479d93b94063f |