Metadata-Version: 2.0
Name: maxcube-api
Version: 0.0.2
Summary: eQ-3/ELV MAX! Cube Python API
Home-page: https://github.com/goodfield/python-maxcube-api.git
Author: David Uebelacker
Author-email: david@uebelacker.ch
License: The MIT License (MIT)

Copyright (c) 2015 David Übelacker

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


Description: eQ-3/ELV MAX! Cube Python API |Build Status| |Coverage Status|
        =============================
        
        A python api to control the Max! Cube thermostats:
        
        - get basic info about the cube itself
        - get info about the max thermostats connected to the cube (mode, temperatures ...)
        
        Basic usage:
        
        .. code:: python
        
            from maxcube.cube import MaxCube
            from maxcube.connection import MaxCubeConnection
        
            cube = MaxCube(MaxCubeConnection('192.168.0.20', 62910))
        
            for device in cube.devices:
                print(device.name)
                print(device.actual_temperature)
        
        This api was build for the integration of the Max! thermostats into `Home Assistant <https://home-assistant.io>`__ and
        does only cover the functions needed for the integration.
        
        Thanks to:
        
        -  `https://github.com/Bouni/max-cube-protocol <https://github.com/Bouni/max-cube-protocol>`__
        -  `https://github.com/ercpe/pymax <https://github.com/ercpe/pymax>`__
        -  `https://github.com/aleszoulek/maxcube <https://github.com/aleszoulek/maxcube>`__
        -  `openhab integration <https://github.com/openhab/openhab2/tree/master/addons/binding/org.openhab.binding.max>`__
        
        .. |Build Status| image:: https://travis-ci.org/goodfield/python-maxcube-api.svg?branch=master
           :target: https://travis-ci.org/goodfield/python-maxcube-api
        .. |Coverage Status| image:: https://coveralls.io/repos/goodfield/python-maxcube-api/badge.svg?branch=master&service=github
           :target: https://coveralls.io/github/goodfield/python-maxcube-api?branch=master
        
        
        
        
        
        
Platform: UNKNOWN
