Skip to content

Latest commit

 

History

History

README.md

Project Arete SDK for Python

Examples

Installing

$ python3 -m pip install arete-sdk

Using

import ssl
from arete_sdk import Client

ssl_context = ssl.SSLContext(protocol=ssl.PROTOCOL_TLS_CLIENT)
ssl_context.check_hostname = False
ssl_context.verify_mode = ssl.CERT_NONE
client = Client.connect('wss://dashboard.test.cns.dev:443', ssl=ssl_context)
client.wait_for_open()
...

See the examples for further usage details.

Developing

See the Developer's Guide for build and test instructions.