You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
Mike J. Renaker / "MikeDEV edited this page Sep 29, 2023
·
2 revisions
Work in progress!
This documentation is exclusively for the Python 0.2.0 client.
Client basics
Below is an example of setting up a barebones client.
fromcloudlinkimportclient# Initialize the clientclient=client()
# Configure logging settingsclient.logging.basicConfig(
level=client.logging.DEBUG
)
# Start the clientclient.run(host="ws://127.0.0.1:3000/")
Securing your client
If you have a server that relies upon self-signed certificates, or utilizes some exotic certificate authority for SSL, you can call upon client.enable_ssl.