An Asynchronous Library for the KNX protocol. Documentation: https://xknx.io/
Project description
XKNX - An Asynchronous KNX Library Written in Python
Documentation
See documentation at: https://xknx.io/
Help
We need your help for testing and improving XKNX. For questions, feature requests, bug reports either join the XKNX chat on Discord or write an email.
Home-Assistant Plugin
XKNX contains a plugin for the Home Assistant automation platform
Example
"""Example for switching a light on and off."""
import asyncio
from xknx import XKNX
from xknx.devices import Light
async def main():
"""Connect to KNX/IP bus, switch on light, wait 2 seconds and switch it off again."""
xknx = XKNX()
await xknx.start()
light = Light(xknx,
name='TestLight',
group_address_switch='1/0/9')
await light.set_on()
await asyncio.sleep(2)
await light.set_off()
await xknx.stop()
# pylint: disable=invalid-name
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()
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
xknx-0.13.0.tar.gz
(70.3 kB
view details)
Built Distribution
xknx-0.13.0-py3-none-any.whl
(116.9 kB
view details)
File details
Details for the file xknx-0.13.0.tar.gz
.
File metadata
- Download URL: xknx-0.13.0.tar.gz
- Upload date:
- Size: 70.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c90b9e3fe474d6c7ac836b063e12ba31403070d17faf8cee8f01b0b5196f3fe |
|
MD5 | 6582eeddbde369065263689ef0a07f5a |
|
BLAKE2b-256 | 265ef64b3bc7364dfb75446f9b26100969e019629b5bc2f2f443515ba6f05ef4 |
File details
Details for the file xknx-0.13.0-py3-none-any.whl
.
File metadata
- Download URL: xknx-0.13.0-py3-none-any.whl
- Upload date:
- Size: 116.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c13321fd65a0316b7570b3976a9430a7745c17e1b90a6db294e966ec74be1fa |
|
MD5 | da1ac4f84f28565db3dcfe292671a425 |
|
BLAKE2b-256 | 721155df64445dcb9f1c14eb7ce3f795939a34550d2d32c995b6b9fb1121a5a9 |