Skip to main content

Sample Kraken WebSockets client

Project description

Kraken WebSockets Client in Python

Sample Kraken WebSockets client in Python. This client was created for demonstration purposes only. It is neither maintained nor supported.

Installation

pip install kraken-wsclient-py

Sample Usage

from kraken_wsclient_py import kraken_wsclient_py as client

def my_handler(message):
    # Here you can do stuff with the messages
    print(message)

my_client = client.WssClient()

my_client.subscribe_public(
    subscription={
        'name': 'trade'
    },
    pair=['XBT/USD', 'XRP/USD'],
    callback=my_handler
)

my_client.subscribe_private(
    subscription={
        'name': 'openOrders',
        'token': '__WS_TOKEN_HERE__'
    },
    callback=my_handler
)

my_client.start()

Compatibility

This code has been tested on Python 3.7.

Contributing

Pull requests are not monitored and likely will be ignored.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kraken-wsclient-py-0.0.6.tar.gz (3.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page