Metadata-Version: 1.1
Name: pyhue
Version: 0.7.2
Summary: Python library for the Philips Hue personal lighting system
Home-page: http://github.com/alexrdp90/pyhue
Author: Alejandro Rodas
Author-email: alexrdp90@gmail.com
License: GPLv3
Download-URL: http://pypi.python.org/pypi/pyhue
Description: 
        pyhue
        =====
        
        Python library for the Philips Hue personal lighting system.
        
        Installation
        ------------
        
        You can install pyhue with ``pip install pyhue`` or `download pyhue.py <http://raw.github.com/alexrdp90/pyhue/master/src/pyhue.py>`_ and place it in your project directory.
        
        
        Example
        -------
        
        ::
        
            import pyhue
            
            bridge = pyhue.Bridge('my_ip_address', 'my_username')
            for light in bridge.lights:
                light.on = True
                light.hue = 0
        
        
        Features
        --------
        
        - Object-oriented mapping of the RESTful interface.
        - Major support of the v1.0 of the API: Lights_, Groups_, Schedules_.
        - Conversion of basic color models.
        
        
        See the complete documentation of the Philips Hue personal lighting system on http://developers.meethue.com.
        
        .. _Lights: http://developers.meethue.com/1_lightsapi.html
        .. _Groups: http://developers.meethue.com/2_groupsapi.html
        .. _Schedules: http://developers.meethue.com/3_schedulesapi.html
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
