Python module to talk to Philips Hue.
Project description
Aiohue
Asynchronous library to control Philips Hue
Requires Python 3.8+ and uses asyncio and aiohttp.
import asyncio
from pprint import pprint
import aiohttp
from aiohue.discovery import discover_nupnp
async def main():
async with aiohttp.ClientSession() as session:
await run(session)
async def run(websession):
bridges = await discover_nupnp(websession)
bridge = bridges[0]
await bridge.create_user('aiophue-example')
print('Your username is', bridge.username)
await bridge.initialize()
print('Name', bridge.config.name)
print('Mac', bridge.config.mac)
print()
print('Lights:')
for id in bridge.lights:
light = bridge.lights[id]
print('{}: {}'.format(light.name, 'on' if light.state['on'] else 'off'))
# Change state of a light.
await light.set_state(on=not light.state['on'])
print()
print('Groups:')
for id in bridge.groups:
group = bridge.groups[id]
print('{}: {}'.format(group.name, 'on' if group.action['on'] else 'off'))
# Change state of a group.
await group.set_action(on=not group.state['on'])
asyncio.run(main())
Timeouts
Aiohue does not specify any timeouts for any requests. You will need to specify them in your own code. We recommend the async_timeout
package:
import async_timeout
with async_timeout.timeout(10):
await bridge.initialize()
Contribution guidelines
Object hierarchy and property/method names should match the Philips Hue API.
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
aiohue-2.5.1.tar.gz
(14.9 kB
view details)
Built Distribution
aiohue-2.5.1-py3-none-any.whl
(17.7 kB
view details)
File details
Details for the file aiohue-2.5.1.tar.gz
.
File metadata
- Download URL: aiohue-2.5.1.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ee8e857b07364516f8b9f0e5c52d4cd775036f3ace37c2769de1e8579f4dc07 |
|
MD5 | a3f9c802b846f6af249e88e31b4d0bd2 |
|
BLAKE2b-256 | b76f6f9c88d32b42033bcace04e57b8bcfce3fa3a68462f3e20e3a29556db5e6 |
File details
Details for the file aiohue-2.5.1-py3-none-any.whl
.
File metadata
- Download URL: aiohue-2.5.1-py3-none-any.whl
- Upload date:
- Size: 17.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.4.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 97f1e899b34c6d897d8ea90a955d9b75c99e3ab8f1f33785b732721e2a1e3f32 |
|
MD5 | 22b47e17fc2816d8402d5ea3dde8c891 |
|
BLAKE2b-256 | c9e9fea89b1f47fab40e151984159e0912a4dcb5407e2cd55ec7f1c1f476d02f |