Skip to main content

uns-kit (Python)

Python UNS SDK for runtime services, API/service exposure, and Datahub access. Provides:

  • Topic builder compatible with UNS infra topics (uns-infra/<package>/<version>/<process>/).
  • Async publish/subscribe via MQTT (using aiomqtt).
  • Process + instance status topics (active/heap/uptime/alive + stats).
  • Minimal UNS packet builder/parser (data/table) aligned with TS core.

0.2.0 table migration

UnsPacket.table() now emits MQTT packet version 2.0.0 and named object columns. Each column requires a QuestDB type and value:

columns={
    "power": {"type": "double", "value": 42.1, "uom": "kW"},
}

For a transition period, builders accept legacy arrays and convert them before output, while UnsPacket.parse() accepts legacy packet 1.x arrays and normalizes them to objects. New code must construct the object form. Ordered schema metadata arrays such as tableColumns are unchanged.

  • Service/API proxy support with Swagger and endpoint registry topics.
  • Datahub client support for last-value, single-topic history, and batch range queries.

Install (editable)

cd packages/uns-py
poetry install

CLI

After poetry install, an uns-kit-py command is available (renamed to avoid clashing with the Node CLI):

poetry run uns-kit-py publish --host localhost:1883 --topic raw/data/ --value 1
poetry run uns-kit-py subscribe --host localhost:1883 --topic 'uns-infra/#'

Feature-specific dependencies are exposed as optional extras:

pip install "uns-kit[api]"
pip install "uns-kit[cron]"
pip install "uns-kit[database]"
pip install "uns-kit[api,cron,database]"

Runtime feature APIs mirror the TypeScript surface:

  • await process.create_api_proxy(...)
  • await process.create_cron_proxy(...)
  • TS-style aliases are also available: createApiProxy(...), createCrontabProxy(...)

Package layout

Public namespaces are organized by capability:

  • uns_kit.core - runtime, MQTT, config, auth, Datahub client
  • uns_kit.api - API proxy and data-catalog/service-api helpers
  • uns_kit.cron - cron proxy
  • uns_kit.database - config-driven database access

Quick start

import asyncio
from pathlib import Path
from uns_kit.core import ConfigFile, UnsPacket, UnsProcessParameters, UnsProxyProcess

async def main():
    config = ConfigFile.load_config(Path("config.json"))
    infra = config["infra"]
    uns = config["uns"]
    process = UnsProxyProcess(
        infra["host"],
        UnsProcessParameters(process_name=uns.get("processName", "uns-process")),
    )
    await process.start()
    mqtt = await process.create_mqtt_proxy("py")

    # Subscribe
    async with mqtt.client.messages("uns-infra/#") as messages:
        await mqtt.publish_packet("raw/data/", UnsPacket.data(value=1, uom="count"))
        msg = await messages.__anext__()
        print(msg.topic, msg.payload.decode())

    await mqtt.flush()
    await mqtt.close()
    await process.stop()

asyncio.run(main())

Recommended publishing pattern

If your service publishes UNS topics, prefer:

  • UnsProxyProcess
  • await process.create_mqtt_proxy(...)
  • await proxy.publish_mqtt_message(...)

That is the default application pattern for generated Python services and the path that also maintains the retained .../topics registry used for discovery. Direct UnsMqttClient publishing is lower-level and should not be the default service pattern unless you have a specific reason.

publish_message() and publish_mqtt_message() resolve when a message is accepted into the local bounded publish queue, not when the MQTT broker confirms delivery. If the queue is full, the publish call raises immediately. Broker publish failures are emitted later on the proxy error event.

Use await proxy.flush() or await proxy.drain_publishes() before shutdown or before assuming all accepted messages have finished publishing. close() and UnsProxyProcess.stop() drain by default with a timeout, but explicit flush is clearer in application code.

Sync integration pattern

If you need to integrate into a sync-only Python app, use UnsProxyProcessSync. It runs the existing async runtime on a private background event loop and exposes blocking MQTT proxy methods without requiring the host application to refactor to asyncio.

from uns_kit import UnsProcessParameters, UnsProxyProcessSync

process = UnsProxyProcessSync(
    "localhost",
    UnsProcessParameters(process_name="my-sync-service"),
)
process.start()
proxy = process.create_mqtt_proxy_sync("publisher")
proxy.publish_mqtt_message({
    "topic": "raw/data/",
    "asset": "line-1",
    "objectType": "motor",
    "objectId": "main",
    "attributes": {
        "attribute": "status",
        "data": {"time": "2026-01-01T00:00:00Z", "value": "RUNNING"},
    },
})
proxy.flush()
process.stop()

Sync subscriptions are also available:

subscription = proxy.subscribe(
    "uns-infra/#",
    on_message=lambda message: print(message.topic, message.payload.decode()),
)

# Later on shutdown:
subscription.close()

Validity / Liveliness

UNS attributes can declare how the controller decides whether they are live or stale; in most apps this is primarily used to drive UI liveliness/activity indicators. In app-level modeling we use two modes only:

  • interval: continuously refreshed values (stale after ~2× expectedIntervalMs)
  • lifecycle: event-driven activity that stays active until a defined end value (lifecycleEndValue)
await proxy.publish_mqtt_message({
    "topic": "raw/data/",
    "asset": "line-1",
    "objectType": "motor",
    "objectId": "main",
    "attributes": {
        "attribute": "status",
        "data": {"time": "2025-01-01T00:00:00Z", "value": "RUNNING"},
        "validityMode": "lifecycle",
        "lifecycleEndValue": "STOPPED",
    },
})

Counter attributes

Publish cumulative counters as raw counter state. Do not use producer-side delta modes for new code; MessageMode.DELTA, MessageMode.BOTH, and gRPC value_is_cumulative are deprecated because producer memory is lost across service restarts. Datahub history APIs should calculate delta/rate from persisted rows.

For a Data attribute, mark the series directly:

await proxy.publish_mqtt_message({
    "topic": "raw/data/",
    "asset": "line-1",
    "objectType": "energy-resource",
    "objectId": "main",
    "attributes": {
        "attribute": "active-energy-total",
        "description": "Cumulative active energy counter",
        "valueType": "number",
        "presentationKind": "counter",
        "defaultAggregation": "last",
        "counterResetPolicy": "new-value",
        "data": {
            "time": "2026-06-02T12:00:00.000Z",
            "value": 12345.6,
            "uom": "kWh",
            "dataGroup": "metering",
        },
    },
})

For a Table attribute, keep the table as the source row and mark chartable counter columns with tableColumns:

await proxy.publish_mqtt_message({
    "topic": "raw/data/",
    "asset": "line-1",
    "objectType": "energy-resource",
    "objectId": "main",
    "attributes": {
        "attribute": "measurements",
        "description": "Metering table",
        "tableColumns": [
            {
                "name": "active_energy_total",
                "valueType": "number",
                "presentationKind": "counter",
                "defaultAggregation": "last",
                "counterResetPolicy": "new-value",
            },
        ],
        "table": {
            "time": "2026-06-02T12:00:00.000Z",
            "dataGroup": "metering",
            "columns": {
                "active_energy_total": {"type": "double", "value": 12345.6, "uom": "kWh"},
                "power": {"type": "double", "value": 42.1, "uom": "kW"},
            },
        },
    },
})

dataGroup is a storage/routing hint for consumers such as archivers. It is not part of the UNS identity path and is not the same as objectType. For example, an archiver may persist a table packet with dataGroup: "metering" into a separate physical table family while the UNS path still comes from topic/asset/objectType/objectId/attribute.

Datahub client (last value + history)

UnsClient provides a minimal REST client for the UNS OpenHub API, including batch last-value, single-topic catch-all history, and batch range endpoints. A controller-managed RTT service should use ServiceTokenProvider; it reads the short-lived token file mounted by the controller for every request. Direct local development can use .env/exported UNS_SERVICE_TOKEN, a resolved uns.token, or an explicit AuthClient fallback.

import pandas as pd
from pathlib import Path
from uns_kit.core import ConfigFile, ServiceTokenProvider, UnsClient
import io

cfg = ConfigFile.load_config(Path("config.json"))
client = UnsClient(
    cfg["uns"]["rest"],
    api_base_path="/api",
    token_provider=ServiceTokenProvider(config_token=cfg["uns"].get("token")),
)

values = client.last_value([
    "raw/data/line-1/motor/main/temperature",
    "raw/data/line-1/motor/main/status",
])
print(values)

history = client.get_attribute_data(
    "sij/acroni/vv/hrm-furnace/equipment/pusher/output-quantity",
    **{
        "from": "2026-05-07T11:17:01.157Z",
        "to": "2026-05-07T11:22:01.157Z",
        "table": "uns_sij_hrm_furnace_data",
        "aggregate": "last",
        "dedupe": False,
    }
)
print(history.records())

custom_data = client.get_data(
    "/projects/project-name/path-to-data/data",
    params={"fromDate": "20260325"},
)
print(custom_data.json())

df = pd.read_parquet(io.BytesIO(data.content))
print(df)

batch_history = client.history(
    [
        "sij/acroni/vv/hrm-furnace/equipment/zone-1/temperature",
        "sij/acroni/vv/hrm-furnace/equipment/zone-2/temperature",
    ],
    **{
        "from": "2026-04-09T06:00:00Z",
        "to": "2026-04-09T07:00:00Z",
        "limit": 500,
    }
)
print(batch_history.by_topic)

When several modules in one application use the same REST client, register it once during startup and retrieve the same named instance wherever it is needed:

from uns_kit import ServiceTokenProvider, get_uns_client, register_uns_client

# application startup
register_uns_client(
    cfg["uns"]["rest"],
    token_provider=ServiceTokenProvider(config_token=cfg["uns"].get("token")),
)

# handler or another application module
client = get_uns_client()
values = client.last_value("raw/data/line-1/motor/main/temperature")

Use distinct names when the application needs clients for more than one UNS OpenHub endpoint: register_uns_client(url, name="secondary") and get_uns_client("secondary").

For a directly started local service, load its .env by the application and use the provider. Do not set RTT_NODE or RTT_INSTANCE_ID yourself; those identifiers are injected only by the controller.

from uns_kit.core import ServiceTokenProvider, UnsClient

client = UnsClient(
    "https://datahub.example.com",
    token_provider=ServiceTokenProvider(),
)

After a Python service has successfully started its MQTT/API runtime, it can register its non-secret descriptor when managed by the controller. This is a no-op in direct local development:

from uns_kit.core import RuntimeServiceDescriptor, register_service

register_service(
    client,
    RuntimeServiceDescriptor(
        id="uns-example",
        version="1.2.3",
        capabilities=["example-api"],
        health_contract="service-metadata-v1",
        process_name="uns-example",
    ),
)

For larger service API and data-offer examples, use configure-data-offer. The scaffold uses await register_api_catalog(...) in src/main.py, while src/api_routes.py holds the service_apis and data_offer_sources definitions together with their handlers.

Shared application state

State is a thread-safe, in-memory key/value store shared by every module in one Python process. It is not persisted and starts empty after every restart.

from uns_kit import State

state = State()
state.set("mark_machine", {"plateID": "P123"})
plate = state.get("mark_machine")
state.pop("mark_machine")

Config placeholders (env + Infisical)

uns-py now resolves config placeholders in the same style as uns-core. For Infisical placeholders, install the optional extra:

pip install "uns-kit[infisical]"

Example config.json:

{
  "uns": {
    "graphql": "https://example/graphql",
    "rest": "https://example/rest",
    "email": "service@example.com",
    "password": { "provider": "env", "key": "UNS_PASSWORD" },
    "processName": "my-process"
  },
  "infra": {
    "host": "mqtt.example.local",
    "port": 1883,
    "username": "mqtt-user",
    "password": {
      "provider": "infisical",
      "path": "/mqtt",
      "key": "password",
      "environment": "dev"
    }
  }
}

Load resolved config with cache semantics:

from uns_kit.core import ConfigFile, InfisicalResolverOptions, SecretResolverOptions

resolved = ConfigFile.load_config(
    "config.json",
    SecretResolverOptions(
        infisical=InfisicalResolverOptions(
            environment="dev",
            project_id="your-project-id"
        )
    )
)

Extend the config schema

Edit src/config/project_config_extension.py inside your Python project and run:

poetry run uns-kit-py generate-config-schema

This regenerates config.schema.json so editors can validate config.json, flag missing required fields, and offer completions for project-specific sections.

Resilient subscriber

async for msg in client.resilient_messages("uns-infra/#"):
    print(msg.topic, msg.payload.decode())

Examples

  • examples/publish.py — publish 5 data packets.
  • examples/subscribe.py — resilient subscription with auto-reconnect.
  • examples/data_example_sync.py — sync publishing with UnsProxyProcessSync.
  • examples/subscribe_sync.py — sync subscription with UnsProxyProcessSync.
  • examples/load_test.py — interactive publish burst.

Create a new project

uns-kit-py create my-uns-py-app
cd my-uns-py-app
poetry install
poetry run python src/main.py

The generated package.json declares unsDatahub.kind: "addon" and controller compatibility so tagged releases can be discovered by UNS OpenHub controllers.

To add optional feature scaffolding later:

poetry run uns-kit-py configure-api .
poetry run uns-kit-py configure-cron .
poetry run uns-kit-py configure-data-offer .

For an existing Python project, add the current non-destructive package metadata defaults with:

poetry run uns-kit-py upgrade .

The command adds the UNS OpenHub add-on marker only when unsDatahub is absent and preserves existing metadata.

configure-api adds a service-API scaffold:

  • src/main.py
  • src/api_routes.py

configure-data-offer adds a TypeScript-style API/data-catalog layout:

  • src/main.py
  • src/api_routes.py
  • src/data_offers/*.py
  • src/data_offers/sql/...

The scaffold includes the same two offer styles as the TypeScript template:

  • one JSON offer (demo_coils)
  • one Parquet export offer (demo_export)

Create a new project from a service bundle

uns-kit-py create --bundle ./service.bundle.json
uns-kit-py create --bundle ./service.bundle.json --dest ./my-dir
uns-kit-py create --bundle ./service.bundle.json --dest . --allow-existing

Bundle-driven create uses service.bundle.json as the source of truth. The Python CLI:

  • scaffolds the base Python app from the existing default template
  • copies the original bundle into the project root as service.bundle.json
  • generates SERVICE_SPEC.md and AGENTS.md
  • applies supported bundle features such as vscode and devops

When --bundle is used, the default destination is ./<metadata.name>. The Python CLI only accepts bundles with scaffold.stack = "python" and currently supports scaffold.template = "default" for this MVP. If the bundle targets TypeScript instead, use uns-kit create --bundle ....

Create a sandbox app in this repo

From the monorepo root:

pnpm run py:sandbox

This creates sandbox-app-py/ using the default Python template. When created inside this monorepo, pyproject.toml is automatically set to use local editable uns-kit: uns-kit = { path = "../packages/uns-py", develop = true }.

Notes

  • Default QoS is 0.
  • Instance status topics are published every 10 seconds; stats every 60 seconds.
  • Packet shape mirrors the TypeScript core: {"version":"1.3.0","message":{"data":{...}},"sequenceId":0}.
  • Windows: the library sets WindowsSelectorEventLoopPolicy() to avoid add_reader/add_writer NotImplementedError.

TODO (parity with TS core)

  • Handover manager parity: subscribe to wildcard active and handover topics, keep new instances passive until timeout or handover completion, and support handover_intent, handover_request, handover_subscriber, handover_fin, and handover_ack.
  • Publish throttling / queue parity: add buffered ordered publishing instead of direct proxy-path publish, plus publisher/subscriber active-passive controls and passive-drain behavior.
  • Status parity: add process-level alive and uptime, publisher/subscriber active flags everywhere, published/subscribed message count and byte metrics, and process identity on active status packets.
  • Optional: dictionary/measurement helpers + CLI wrapper.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

uns_kit-0.2.5.tar.gz (91.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

uns_kit-0.2.5-py3-none-any.whl (111.7 kB view details)

Uploaded Python 3

File details

Details for the file uns_kit-0.2.5.tar.gz.

File metadata

  • Download URL: uns_kit-0.2.5.tar.gz
  • Upload date:
  • Size: 91.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.1 CPython/3.14.6 Darwin/25.5.0

File hashes

Hashes for uns_kit-0.2.5.tar.gz
Algorithm Hash digest
SHA256 6045113176f2253af54e05573f84ec1cb8678711797c57e23571c41ccfa31ad3
MD5 189163e94f6d476b17e8bef18f79d290
BLAKE2b-256 68bcfaa6fb4446dabcc66efe6baff199af083f951248b8bf033c0b8fb76d7216

See more details on using hashes here.

File details

Details for the file uns_kit-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: uns_kit-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 111.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.1 CPython/3.14.6 Darwin/25.5.0

File hashes

Hashes for uns_kit-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 b989f0154597a907163eb8a0e5a4e4b9528b547709f6b6575d45d7fa51af5cd0
MD5 e2b27638f9bbd79a77f3856761aea888
BLAKE2b-256 2aabfa1226162688de9d1b932c84515307e45e51a6c819c5672e57d947463d78

See more details on using hashes here.

Release history Release notifications | RSS feed

0.2.6

2 files

This release

0.2.5 This release

2 files

0.2.3

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.10

2 files

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

0.0.48

2 files

0.0.47

2 files

0.0.46

2 files

0.0.45

2 files

0.0.44

2 files

0.0.42

2 files

0.0.41

2 files

0.0.40

2 files

0.0.39

2 files

0.0.37

2 files

0.0.36

2 files

0.0.35

2 files

0.0.34

2 files

0.0.33

2 files

0.0.32

2 files

0.0.31

2 files

0.0.30

2 files

0.0.29

2 files

0.0.28

2 files

0.0.27

2 files

0.0.26

2 files

0.0.25

2 files

0.0.23

2 files

0.0.22

2 files

0.0.21

2 files

0.0.20

2 files

0.0.19

2 files

0.0.18

2 files

0.0.17

2 files

0.0.16

2 files

0.0.15

2 files

0.0.14

2 files

0.0.13

2 files

0.0.12

2 files

0.0.11

2 files

0.0.10

2 files

0.0.8

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page