Metadata-Version: 2.1
Name: neohub
Version: 0.2.0
Summary: Control Neohub supported thermostats
Home-page: https://github.com/kost/neohub-python
Author: Vlatko Kosturjak
Author-email: vlatko.kosturjak@gmail.com
License: UNKNOWN
Description: Neohub
        ======
        Python module to control Neohub supported thermostats
        
        Requirements
        ============
        
        It should work with both python2 and python3 with simple pip commands:
        ```
        sudo apt-get update
        sudo apt-get install -y python3 python3-pip
        sudo pip3 install neohub
        ```
        
        Examples
        ========
        
        Simple example to get devices and its current status:
        ```
        # you should obtain devkeys and IDs somehow
        n=neohub.Neohub(**{'devkey':1,'vendorid':1,'devicetypeid':1, 'debug':False})
        # e-mail of account and password
        resp=n.login("simple@example.org","password")
        for device in resp['devices']:
                print("=Device: ", device['devicename'],device['deviceid'])
                stat=n.device_status(device['deviceid'])
                status=stat['devices'][0]
                print(status)
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
