Metadata-Version: 2.1
Name: huelights
Version: 0.1.1
Summary: A Python wrapper to interact with Philips Hue smart lights
Home-page: https://github.com/zackelia/huelights
Author: Zack Elia
Author-email: pypi@zacharyelia.com
License: UNKNOWN
Description: # huelights
        
        ![python](https://img.shields.io/pypi/pyversions/huelights.svg)
        [![pypi](https://img.shields.io/pypi/v/huelights.svg?color=blue)](https://pypi.org/project/huelights/)
        [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
        
        A Python wrapper to interact with Philips Hue smart lights
        
        ## Installation
        
        Install from PyPI:
        
        `pip install huelights`
        
        ## Example
        
        A small example for interacting with your Philips Bridge to manipulate Philips Hue smart lights:
        
        ```python
        from huelights.bridge import Bridge
        
        bridge = Bridge('username')
        
        lights = bridge.get_lights()
        
        for light in lights:
            light.effect = 'colorloop'
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
