knx-telegram-store
A standalone, host-agnostic Python library for KNX telegram persistence.
Features
- Canonical Data Model: A unified model for KNX telegrams shared between Home Assistant and SpectrumKNX.
- Pluggable Backends:
- In-Memory: Fast, deque-based storage with full filtering support.
- SQLite: Lightweight persistent storage with SQL-based filtering.
- PostgreSQL: Full-scale storage. TimescaleDB is used automatically when the extension is available (hypertable partitioning + native compression); otherwise the store runs on plain PostgreSQL with identical semantics.
- Unified Query Model: Powerful declarative filtering including time-delta context windows and pagination.
- Stats & Maintenance:
get_stats()reports count, covered time range and on-disk size;evict_older_than()supports dry runs;optimize()reclaims disk space (VACUUM). - Read-Only Mode: Open a SQLite store owned and written by another process (e.g. Home Assistant's KNX telegram store) without running migrations or allowing writes.
- Concurrent Access: Writing SQLite stores use WAL journaling and a busy timeout, so a single writer and multiple (cross-process) readers coexist safely.
- Capability Flags:
store.capabilitiesdeclares what a backend supports (supports_optimize,supports_size_stats,read_only, …) so hosts can gate UI instead of hardcoding backends. - Log Container Format:
formats.ets_xmlstreams the KNXCommunicationLogXML container (ETS6 group-monitor exports, Gira IP-Router data-logger dumps) to/from raw cEMI frames — constant memory, no protocol decoding, stdlib-only. - Zero Runtime Dependencies: Core library (model, interface, in-memory) has no dependencies.
- Automated Schema Management: SQL backends handle their own creation and upgrades.
Installation
pip install knx-telegram-store
For SQL support:
pip install knx-telegram-store[sqlite]
pip install knx-telegram-store[postgres]
Usage
from datetime import datetime
from knx_telegram_store import StoredTelegram, TelegramQuery
from knx_telegram_store.backends.memory import MemoryStore
async def main():
store = MemoryStore(max_size=1000)
await store.initialize()
telegram = StoredTelegram(
timestamp=datetime.now(),
source="1.1.1",
destination="1/1/1",
telegramtype="GroupValueWrite",
direction="Incoming",
value=22.5,
unit="°C",
)
await store.store(telegram)
query = TelegramQuery(destinations=["1/1/1"])
result = await store.query(query)
for t in result.telegrams:
print(f"{t.timestamp}: {t.source} -> {t.destination} | {t.value} {t.unit}")
await store.close()
Stats, purging and space reclamation
from datetime import UTC, datetime, timedelta
from knx_telegram_store.backends.sqlite import SqliteStore
store = SqliteStore("/data/telegrams.db", retention_days=90)
await store.initialize()
stats = await store.get_stats()
print(
f"{stats.telegram_count} telegrams, {stats.size_bytes} bytes, {stats.oldest_timestamp} .. {stats.newest_timestamp}"
)
cutoff = datetime.now(UTC) - timedelta(days=30)
would_delete = await store.evict_older_than(cutoff, dry_run=True) # preview only
deleted = await store.evict_older_than(cutoff)
# Deleting rows does not shrink the database on disk by itself:
if store.capabilities.supports_optimize:
await store.optimize() # VACUUM — blocks writers, can take a while on large DBs
Read-only access to a shared store
Another process (e.g. Home Assistant's KNX integration) owns and writes the database; you only want to read it:
store = SqliteStore("/homeassistant/.storage/knx/telegrams.db", read_only=True)
await store.initialize() # never runs DDL/migrations against a foreign schema
if await store.needs_migration():
... # schema is older/newer than this library version — surface a warning
result = await store.query(TelegramQuery(limit=100))
await store.store(telegram) # raises KnxTelegramStoreException — writes rejected
The file is opened with SQLite's mode=ro, so writes are impossible at the
driver level. capabilities.read_only is True and supports_optimize is
False in this mode. Writing stores enable WAL journaling, which makes this
single-writer/multi-reader setup safe across processes.
Validating a config / connection
Before triggering an expensive operation such as a migration, you can validate that a
store is reachable. Both checks return a structured ConnectionCheckResult
(ok, kind, message, detail) instead of raising.
from knx_telegram_store import ConnectionErrorKind
from knx_telegram_store.backends.sqlite import SqliteStore
from knx_telegram_store.backends.postgres import PostgresStore
# Static, side-effect-free config validation (before constructing a store):
# - SQLite: sync — checks the file is writeable or can be created
result = SqliteStore.check_config("/data/telegrams.db")
# (with read_only=True: checks the file exists and is readable instead)
result = SqliteStore.check_config("/data/telegrams.db", read_only=True)
# - Postgres: async — actually connects to verify user/password/host/port/database
result = await PostgresStore.check_config("postgresql://user:pw@host:5432/knx")
if not result.ok:
print(f"[{result.kind}] {result.message}") # e.g. [auth] Authentication failed ...
# Live probe of an already-constructed store (no migrations, no schema changes):
store = SqliteStore("/data/telegrams.db")
result = await store.check_connection()
if result.kind is ConnectionErrorKind.OK:
await store.initialize()
PostgreSQL and TimescaleDB
PostgresStore works against any PostgreSQL server. At initialize() it probes
pg_available_extensions: when TimescaleDB is available, the telegrams table
becomes a hypertable (existing rows are migrated in place via
migrate_data => TRUE) and native compression is configured — chunks are
compressed by a background policy once they age past compress_after_days
(default 7, None disables compression). Without the extension everything runs
on plain PostgreSQL tables; queries, retention and stats behave identically.
store = PostgresStore("postgresql://user:pw@host:5432/knx", retention_days=90, compress_after_days=7)
await store.initialize()
print(store.timescale_enabled) # True / False (None before initialize())
check_config() / check_connection() succeed on both server types; the
result message states which mode will be used.
Integration tests
The Postgres backend has an integration test suite that runs against real servers — a TimescaleDB container and a stock PostgreSQL container — so both the hypertable/compression path and the plain fallback are exercised. With Docker installed:
./scripts/run_integration_tests.sh # full suite
./scripts/run_integration_tests.sh -k compression # subset
The script starts both containers (docker-compose.test.yml), waits for them
to become healthy, runs pytest -m integration tests/integration, and tears
the containers down afterwards. To run tests manually, e.g. against your own
servers:
docker compose -f docker-compose.test.yml up -d --wait
export KNX_TEST_TIMESCALE_DSN=postgresql://knx:knxtest@localhost:5433/knx
export KNX_TEST_PG_DSN=postgresql://knx:knxtest@localhost:5434/knx
pytest -m integration tests/integration -v
docker compose -f docker-compose.test.yml down -v
Tests for an unset DSN variable are skipped, so you can also point a single variable at an existing server. The same suite runs in CI against both containers on every push.
Reading / writing telegram log files
formats.ets_xml handles the KNX CommunicationLog XML container (namespace
http://knx.org/xml/telegrams/01) produced by ETS6 exports and Gira data loggers.
It operates on raw cEMI frames — no protocol decoding, no xknx dependency —
so any consumer can stream large logs with constant memory.
from knx_telegram_store.formats import iter_communication_log, write_communication_log
# Incremental read (file path or binary stream, e.g. a zip entry):
for record in iter_communication_log("2026_03_05_TP1.xml"):
print(record.timestamp, record.service, record.raw_data.hex())
# aware UTC "L_Data.ind" cEMI frame as logged
# Streaming write (records may be a generator; ETS6-compatible output):
with open("export.xml", "w", encoding="utf-8") as fh:
count = write_communication_log(records, fh, connection_name="My Export")
A Gira-style <!-- timezone offset +01:00 hour --> comment is honored, and ETS's
7-digit fractional seconds are normalized to microseconds.
MCP tools
knx_telegram_store.mcp provides host-agnostic tool functions for exposing the
store to AI agents over the Model Context Protocol. They are plain async
functions over a TelegramStore, with frozen, JSON-serialisable dataclass
inputs/outputs (timestamps are ISO-8601 UTC strings) and no dependency on any
MCP SDK or web framework — each consumer wraps them into its own transport.
from dataclasses import asdict
from knx_telegram_store.mcp import query_telegrams, QueryTelegramsInput
result = await query_telegrams(store, QueryTelegramsInput(destinations=["1/1/1"], limit=100))
payload = asdict(result) # ready to return as an MCP tool result
Available: query_telegrams, get_last_values, get_store_stats,
get_store_capabilities, count_telegrams.
License
MIT
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 knx_telegram_store-0.12.0.tar.gz.
File metadata
- Download URL: knx_telegram_store-0.12.0.tar.gz
- Upload date:
- Size: 55.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9054e7b59736de13b7ded5431b62adc19413d460318a7910b7fc5aa230cbed6e
|
|
| MD5 |
87cf8cca5a21ccd85d1dd26de45a723c
|
|
| BLAKE2b-256 |
f9726515125534df69fa1751ddb88487a785dd3a06893d7131b13989c99acc17
|
Provenance
The following attestation bundles were made for knx_telegram_store-0.12.0.tar.gz:
Publisher:
publish.yml on XKNX/knx-telegram-store
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
knx_telegram_store-0.12.0.tar.gz -
Subject digest:
9054e7b59736de13b7ded5431b62adc19413d460318a7910b7fc5aa230cbed6e - Sigstore transparency entry: 2373034363
- Sigstore integration time:
-
Permalink:
XKNX/knx-telegram-store@e868dadbcea48e6ab4653bb7fdd28207b1ad972f -
Branch / Tag:
refs/tags/v0.12.0 - Owner: https://github.com/XKNX
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e868dadbcea48e6ab4653bb7fdd28207b1ad972f -
Trigger Event:
push
-
Statement type:
File details
Details for the file knx_telegram_store-0.12.0-py3-none-any.whl.
File metadata
- Download URL: knx_telegram_store-0.12.0-py3-none-any.whl
- Upload date:
- Size: 47.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3d0772cb09b05c93e840da36a23d2d10884e263b3fe4a2b4b8b48d31d54533f
|
|
| MD5 |
94df37f14f94f4c34bafd6326fc6f153
|
|
| BLAKE2b-256 |
1dd5713671e5856b9b4ab40f659a6b6e1ca84d84f9f1fa5cf49e8c18505acdd6
|
Provenance
The following attestation bundles were made for knx_telegram_store-0.12.0-py3-none-any.whl:
Publisher:
publish.yml on XKNX/knx-telegram-store
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
knx_telegram_store-0.12.0-py3-none-any.whl -
Subject digest:
e3d0772cb09b05c93e840da36a23d2d10884e263b3fe4a2b4b8b48d31d54533f - Sigstore transparency entry: 2373034390
- Sigstore integration time:
-
Permalink:
XKNX/knx-telegram-store@e868dadbcea48e6ab4653bb7fdd28207b1ad972f -
Branch / Tag:
refs/tags/v0.12.0 - Owner: https://github.com/XKNX
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@e868dadbcea48e6ab4653bb7fdd28207b1ad972f -
Trigger Event:
push
-
Statement type: