Metadata-Version: 1.1
Name: knuverse
Version: 1.0.1
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
Description: # knuverse-sdk-python
        
        This project is a Python SDK that allows developers to create apps that use Knuverse's Cloud APIs.
        You can find the documentation at https://cloud.knuverse.com/docs/
        
        Quick Start
        -----------
        First, install the knuverse-sdk:
        
        ```sh
        $ pip install knuverse
        ```
        Then, in a Python file:
        
        ```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")),
        ```
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
