Skip to main content

An Asynchronous Library for the KNX protocol. Documentation: https://xknx.io/

Project description

XKNX - An Asynchronous KNX Library Written in Python

Build Status Coverage Status

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.12.0.tar.gz (67.8 kB view details)

Uploaded Source

Built Distribution

xknx-0.12.0-py3-none-any.whl (114.1 kB view details)

Uploaded Python 3

File details

Details for the file xknx-0.12.0.tar.gz.

File metadata

  • Download URL: xknx-0.12.0.tar.gz
  • Upload date:
  • Size: 67.8 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

Hashes for xknx-0.12.0.tar.gz
Algorithm Hash digest
SHA256 ca3e0bf53a218154aa26c50c7b354a36f7b3ba6e0b68dfb192add2fea48f86b1
MD5 a7ca0296606990c8fcc92b2b5f5eedd8
BLAKE2b-256 b41d8d52fa4e1b7c508fdc73940f65e32497d313ce59d6a2b87a68e72714e6fd

See more details on using hashes here.

File details

Details for the file xknx-0.12.0-py3-none-any.whl.

File metadata

  • Download URL: xknx-0.12.0-py3-none-any.whl
  • Upload date:
  • Size: 114.1 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

Hashes for xknx-0.12.0-py3-none-any.whl
Algorithm Hash digest
SHA256 03a133d1f68e80efcea710909c74e34d7b225ea4637ac4447f363a992a9439f4
MD5 124556fdaf3cb736469b5849280b7c77
BLAKE2b-256 f0127f90de08d86cf1d17718d02f5a41b053ac436deb520ce34c8e225a178eb4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page