Skip to content

GooeeIOT/cloud-gooee-python-sdk

Repository files navigation

Gooee Python SDK

Official Python SDK for Gooee API. See the LICENSE file for license and copyright information.

Installation

Minimum System Requirements

  • Python 2.6+ or Python 3.3+

Installation from PyPI

$ pip install gooee-sdk

If you need to, you can also use easy_install:

$ easy_install gooee-sdk

Build from source

git clone https://github.com/GooeeIOT/gooee-python-sdk.git
cd gooee-python-sdk
python setup.py install

Usage

To use the SDK in your project:

from gooee import GooeeClient

client = GooeeClient()
client.authenticate('username@example.com', 'YourPasswordHere')
response = client.get('/buildings')

That is all!

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.