python-hue icon indicating copy to clipboard operation
python-hue copied to clipboard

Python client for Philips Hue -- determined via API reverse engineering

Results 4 python-hue issues
Sort by recently updated
recently updated
newest added

Bumps [requests](https://github.com/requests/requests) from 0.14.2 to 2.20.0. Changelog *Sourced from [requests's changelog](https://github.com/psf/requests/blob/master/HISTORY.md).* > 2.20.0 (2018-10-18) > ------------------- > > **Bugfixes** > > - Content-Type header parsing is now case-insensitive (e.g. >...

dependencies

Please support Python 3 What needs changing is ``` - client_identifier = hashlib.md5("ph-%s" % socket.getfqdn()).hexdigest() + client_identifier = hashlib.md5(("ph-%s" % socket.getfqdn()).encode('utf-8')).hexdigest() ``` and ``` - print red, green, blue +...

Hi Issac, I work for Philips Hue Developer Support. In case you were not aware, in a few months time we will be changing the way usernames are created on...

Hey, I got my Hue today and I simply love the clean implementation of this client. It's great, but it's missing group support like [phue](https://github.com/studioimaginaire/phue) does. I'm not a python...