A Philips Hue Python library
Project description
phue
modern Python library to control the Philips Hue lighting system
This is a fork of the original phue library by Nathanaël Lécaudé, modernized with type annotations, improved error handling, and a fully-featured CLI. The library remains MIT licensed.
[!IMPORTANT]
I appreciate the original authors work and if there's any interest in merging these (substantial) changes back into the original library, I'm happy to do so.
Installation
Using uv
uv add phue
uv pip install phue
Using pip
pip install phue
Repository Structure
.
├── LICENSE
├── README.md
├── examples/
├── src/
│ └── phue/
│ ├── __init__.py
│ ├── __main__.py # CLI interface
│ ├── bridge.py # Bridge connection handling
│ ├── exceptions.py # Custom exceptions
│ ├── group.py # Group controls
│ ├── light.py # Light controls
│ ├── scene.py # Scene handling
│ └── sensor.py # Sensor controls
└── tests/ # Tests
Requirements
- Python 3.10 or higher (not compatible with Python 2.x)
- httpx (for network requests)
Features
- Fully typed with Python type annotations
- Robust error handling with custom exceptions
- Comprehensive test suite
- Colorful, user-friendly command-line interface
- Support for Lights, Groups, Scenes, and Sensors
- Auto-discovery of Hue bridges on the network
- Simple and intuitive API for controlling Hue devices
Command Line Usage
The library includes a command-line interface for controlling your Hue lights:
# List all lights
phue ls
# Get details about a specific light
phue get light "Living Room"
# Turn on a light and set brightness
phue set light "Kitchen" --on --bri 200
# List all groups
phue ls groups
# Turn off lights in a group
phue set group "Downstairs" --off
Basic Usage
Using the set_light and get_light methods you can control pretty much all the parameters:
from phue import Bridge
# Connect to the bridge
b = Bridge('192.168.1.100')
# If the app is not registered and the button is not pressed, press the button and call connect()
# This only needs to be run a single time
b.connect()
# Get the bridge state (This returns the full dictionary that you can explore)
b.get_api()
# Prints if light 1 is on or not
b.get_light(1, 'on')
# Set brightness of lamp 1 to max
b.set_light(1, 'bri', 254)
# Turn lamp 2 on
b.set_light(2, 'on', True)
# You can also control multiple lamps by sending a list as lamp_id
b.set_light([1, 2], 'on', True)
# You can also use light names instead of the id
b.get_light('Kitchen')
b.set_light('Kitchen', 'bri', 254)
# Also works with lists
b.set_light(['Bathroom', 'Garage'], 'on', False)
Light Objects
If you want to work in a more object-oriented way, you can get Light objects:
# Get a flat list of light objects
lights = b.lights
# Print light names
for light in lights:
print(light.name)
# Set brightness of each light to 127
for light in lights:
light.brightness = 127
# Get a dictionary with the light name as the key
light_names = b.get_light_objects('name')
# Set lights using name as key
for light_name in ['Kitchen', 'Bedroom', 'Garage']:
light = light_names.get(light_name)
if light:
light.on = True
light.hue = 15000
light.saturation = 120
Error Handling
The library provides custom exceptions for better error handling:
from phue import Bridge, PhueRegistrationException, PhueRequestTimeout
try:
b = Bridge('192.168.1.100')
b.connect()
except PhueRegistrationException:
print("Press the button on the bridge and try again")
except PhueRequestTimeout:
print("Could not connect to the bridge - check your network")
Acknowledgments
This project is a fork of the original phue library created by Nathanaël Lécaudé.
The modernized version was created by zzstoatzz to add type annotations and a more opinionated CLI.
License
MIT - http://opensource.org/licenses/MIT
"Hue Personal Wireless Lighting" is a trademark owned by Koninklijke Philips Electronics N.V., see www.meethue.com for more information. I am in no way affiliated with the Philips organization.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file phue2-0.0.4.tar.gz.
File metadata
- Download URL: phue2-0.0.4.tar.gz
- Upload date:
- Size: 72.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
968243ddf7072ca31ca495f89a3cb964933f2c7ed362031b5f97535d384c5884
|
|
| MD5 |
975a313014b4033a8fa7ce45e82331a6
|
|
| BLAKE2b-256 |
35fa6990954f1f4af87dba6fb35fb0c464e2ce30c087f902cdb970131528256d
|
File details
Details for the file phue2-0.0.4-py3-none-any.whl.
File metadata
- Download URL: phue2-0.0.4-py3-none-any.whl
- Upload date:
- Size: 27.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cb39f71ec99043e357417e63d8dd08cf15fdacc674e763588ee04f46252999e
|
|
| MD5 |
eeacbd7b347d9303b3844d6f58038c9a
|
|
| BLAKE2b-256 |
a8a9ba6dcefce42d0f7ec0b22044cbd0ff2b4d4fdaf4e945b7311d6f3bc922ba
|