Metadata-Version: 1.1
Name: pyhue
Version: 0.5
Summary: Python library for the Philips Hue personal lighting system
Home-page: http://alexrdp90.github.com/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
        ------------
        
        .. raw:: html
        
            <p>
            You can install pyhue with <code>pip install pyhue</code> or
            <a href="http://raw.github.com/alexrdp90/pyhue/master/src/pyhue.py">download <code>pyhue.py</code></a>
            and place it in your project directory.
            </p>
        
        
        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.
        
        .. _download ``pyhue.py``: <>
        .. _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: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
