Python SDK
The Python SDK exposes async SQL helpers and the same realtime naming as the other KalamDB SDKs.
Live APIs
Use these three methods for realtime work:
| Method | Returns | Use for |
|---|---|---|
live(sql, ...) | LiveRows | Materialized row snapshots for a supported SELECT query |
live_table(table, ...) | LiveRows | Materialized row snapshots for SELECT * FROM table |
live_events(sql, ...) | LiveEvents | Low-level protocol events such as subscription_ack, initial_data_batch, change, and error |
Read next: Live Queries.
Last updated on