(Yet another) Philips Hue SDK (Python).
from pyhuelights.discovery import DefaultDiscovery
from pyhuelights.core import *
from pyhuelights.manager import *
from pyhuelights.animations import *
from pyhuelights.registration import *
store = {}
conn = DefaultDiscovery().discover()
conn = register(conn, HueApp("test", ""), store) # Remember to push the button on the hub within
# the last 30 sec of executing this line.
lm = LightsManager(conn)
lights = lm.get_all_lights()
lm.run_effect(lights['1'], ColorLoopEffect())