Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.11 KB

File metadata and controls

35 lines (26 loc) · 1.11 KB

Build Status PyPI Documentation Status

knuverse-sdk-python

This project is a Python SDK that allows developers to create apps that use Knuverse's Cloud APIs.

Documentation for the API can be found here

Documentation for the SDK can be found here

Quick Start

First, install the knuverse-sdk:

$ pip install knuverse

Then, in a Python file:

from knuverse.knufactor import Knufactor

api = Knufactor(
    <api_key>,
    <secret>
)
for client in api.client_list():
    print "%s: %s" % (client.get("name"), client.get("state"))

Notes

A minimum python version of 2.7.9 is required to work with our version of TLS(>v1.1)