Simple python library to control lights and switches in Home Assistant..
Project description
ha_lights
Simple python library to control lights and switches in Home Assistant.
Relies on dataclasses and namedtuples to provide auto-completion for interactive environments such as colab.
Requirements
Install the package with pip
pip install 'home-assistant-lights'
Sample use
import homeassistant_api as ha
import ha_lights
from collections import namedtuple
client = ha.Client(URL, TOKEN)
factory = ha_lights.Factory(client)
lights,switches = factory.AllLights(), factory.AllSwitches()
COLORS = {
'chill_evening': [255,220,180],
'pure_white': [255, 255, 255],
'red': [255, 0, 0],
}
Colors = namedtuple('Colors', COLORS)(**COLORS)
# Turn on a specific light with optional brightness and color settings
lights.living_room_tripod.turn_on(brightness=255, rgb_color=Colors.chill_evening)
# Create an entity group and use it to control lights and switches with a single API
living_room = EntityGroup([lights.living_room_tripod, switches.lr_smart_plug])
living_room.toggle()
Optionally (if you have an invalid cert)
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
client = ha.Client(URL, TOKEN, global_request_kwargs={'verify': False})
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
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 home_assistant_lights-0.0.5.post1-py3-none-any.whl.
File metadata
- Download URL: home_assistant_lights-0.0.5.post1-py3-none-any.whl
- Upload date:
- Size: 3.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cd4ad190ab0f06e9dca541905dac33b9e4cba77ee84f1183e8a79a8f6b01bae
|
|
| MD5 |
a5b9ca7a599f875c114dd08684c6fcba
|
|
| BLAKE2b-256 |
c1b374fe40a18f6da5d71ac9aed621fc2b1a1f660685e28a83cbd3f812c37cf9
|