A Python SDK for interfacing with KnuVerse Cloud APIs


Keywords
api, sdk, knuverse, cloud, voice, authentication, audiopin, audiopass
License
MIT
Install
pip install knuverse==1.0.8

Documentation

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)