huelights

A Python wrapper to interact with Philips Hue smart lights


License
GPL-3.0
Install
pip install huelights==0.1.1

Documentation

huelights

python pypi License: GPL v3

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:

from huelights import Bridge

bridge = Bridge('username')

lights = bridge.get_lights()

for light in lights:
    light.effect = 'colorloop'