Metadata-Version: 2.0
Name: knuverse
Version: 1.0.0
Summary: A Python SDK for interfacing with KnuVerse Cloud APIs
Home-page: https://github.com/KnuVerse/knuverse-sdk-python
Author: KnuVerse
Author-email: support@knuverse.com
License: MIT
Keywords: api sdk knuverse cloud voice authentication audiopin audiopass
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: requests

# knuverse-sdk-python

This project is an Python SDK for interfacing with Knuverse Cloud API's. It allows Python developers to create apps that use Knuverse Cloud API's.
You can find the documentation at https://cloud.knuverse.com/docs/

Quick Start
-----------
First, install the knuverse-sdk:

.. code-block:: sh

    $ pip install knuverse

Then, in a Python file:

.. code-block:: python

    from knuverse.knufactor import Knufactor

    api = Knufactor(
        "https://cloud.knuverse.com",
        username="<username>",
        password="<password>",
        account="<account_id>"
    )
    for client in api.get_clients():
        print "%s: %s" % (client.get("name"), client.get("state")),

