Skip to main content

aiotruenas

Asyncio-native Python client for the TrueNAS JSON-RPC 2.0 WebSocket API (ws(s)://<host>/api/current, TrueNAS 25.04+).

No dependency on Home Assistant or any other framework — usable as a standalone library.

Installation

pip install .

Usage

import asyncio

from aiotruenas import TrueNASClient


async def main() -> None:
    async with TrueNASClient("truenas.local", "1-abcdef...") as client:
        info = await client.call("system.info")
        print(info)

        sub_id, _ = await client.subscribe("app.stats")
        try:
            events = await client.get_subscription_events(sub_id, event_timeout=5.0)
            print(events)
        finally:
            await client.unsubscribe(sub_id)


asyncio.run(main())

call() is a generic RPC surface — pass any TrueNAS JSON-RPC method name and its params (list or dict). Long-running operations that return a job id (scrub, replication, dataset lock/unlock, ...) can be polled automatically with job=True:

await client.call("pool.scrub.scrub", ["tank", "START"], job=True)

Connection and protocol failures are raised as typed exceptions (see aiotruenas.exceptions) rather than returned as an error code/string, so callers can except TrueNASAuthenticationError, except TrueNASConnectionError, etc.

Normalized domain state

TrueNASState wraps a TrueNASClient and exposes one async def get_<endpoint>() method per supported TrueNAS RPC endpoint. Each method queries the endpoint, normalizes the raw payload into a stable dict-keyed-by-id shape, and caches the result on state.ds[<endpoint>]:

from aiotruenas import TrueNASClient, TrueNASState

async with TrueNASClient("truenas.local", "1-abcdef...") as client:
    state = TrueNASState(client)
    pools = await state.get_pool()
    print(pools)
    print(state.ds["pool"])  # same data, cached

Supported endpoints so far: get_pool(), get_dataset(), get_cloudsync(), get_replication(), get_rsync(), get_snapshottask(), get_cronjob(), get_arc(), get_ups(), get_service(), get_vm(), get_container(), get_app(), get_certificates(), get_directoryservices(), get_alerts(), get_interface(), get_disk(), get_scrub(), get_smb(), get_update(), get_systeminfo(), get_systemstats(). This covers the full endpoint set migrated from consumer integrations' own normalization code — see MIGRATION_PLAN.md for details and history.

get_arc()/get_ups()/get_alerts()/get_smb()/get_update()/get_systeminfo() are the exception to the dict-keyed-by-id shape above: they have no natural object id and instead return a flat dict of scalar/aggregate readings (e.g. {"battery_charge": 80.0, ...}, {"count": 2, "critical": 1, ...} for alerts, or {"connections": 3} for get_smb()). get_systemstats() enriches that same flat ds["system_info"] dict (CPU/load/memory/ARC-size) and, as a side effect, ds["interface"][id]["rx"/"tx"] (interface throughput) rather than returning its own endpoint. Its underlying netdata graph queries are best-effort: a failed graph leaves its field(s) at the previous value instead of failing the whole call. Check state.systemstats_stale_graphs after calling it to see which graphs (if any) failed on the most recent refresh, so a caller can distinguish a partially stale result from a fully fresh one. get_ups()'s per-graph netdata queries follow the same best-effort/partial-staleness contract — check state.ups_stale_graphs after calling it. One difference: a UPS graph that has never once produced a reading has no field in the result at all, so a failure on it is not reflected in ups_stale_graphs either — there's no previous value to call stale. An empty ups_stale_graphs therefore means "no field is outdated", not "nothing failed", unlike systemstats_stale_graphs, whose fields are always present from the start.

Status

Early development. Generic call() RPC surface plus a growing set of normalized TrueNASState endpoints (no typed per-domain convenience methods elsewhere yet). See PROMPT.md for the full design brief and CLAUDE.md for repo guidance.

License

Apache-2.0, see LICENSE.

Download files

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

Source Distribution

aiotruenas-1.5.0.tar.gz (97.0 kB view details)

Uploaded Source

Built Distribution

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

aiotruenas-1.5.0-py3-none-any.whl (58.3 kB view details)

Uploaded Python 3

File details

Details for the file aiotruenas-1.5.0.tar.gz.

File metadata

  • Download URL: aiotruenas-1.5.0.tar.gz
  • Upload date:
  • Size: 97.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiotruenas-1.5.0.tar.gz
Algorithm Hash digest
SHA256 f255cf97179f09e2575c97203ca370e8c6c970218e3d98ce67883dbc6ccf8d99
MD5 271cb8be35d093955d8bb71e0d8a1921
BLAKE2b-256 1b1d2ccd6b9be3eb750d6e0e5b0c031fc52f641d630fb35b932b6dd4ecb4934b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiotruenas-1.5.0.tar.gz:

Publisher: pypi.yaml on kayl-codes/aiotruenas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiotruenas-1.5.0-py3-none-any.whl.

File metadata

  • Download URL: aiotruenas-1.5.0-py3-none-any.whl
  • Upload date:
  • Size: 58.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiotruenas-1.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 34992275a595e2d7c86ab643a463520f339e635d6775d43c7e767818f3cd0fe6
MD5 b5eea1a1397569739ba69dd776a7cc9b
BLAKE2b-256 22140b5168d66117a4a952349c30765dcf6f6555a85e3748fbb3575759fb15f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiotruenas-1.5.0-py3-none-any.whl:

Publisher: pypi.yaml on kayl-codes/aiotruenas

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

1.5.5

2 files

1.5.3

2 files

1.5.2

2 files

1.5.1

2 files

This release

1.5.0 This release

2 files

1.4.2

2 files

1.4.1

2 files

1.4.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.0

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