kraken-async-api 0.1.1b1

Creator: bradpython12

Last updated:

Add to Cart

Description:

krakenasyncapi 0.1.1b1

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())

License

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

Customer Reviews

There are no reviews.