$ python3 -m pip install arete-sdkimport 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.
See the Developer's Guide for build and test instructions.