Skip to main content

Modern typed Python client for Hubuum server v0.0.4

Project description

Hubuum client library (Python)

CI Python 3.11+ Typed License: MIT

hubuum-client is a modern, fully typed Python client for the Hubuum asset-management API. It provides matching synchronous and asynchronous clients, Pydantic v2 models, typed resource IDs, immutable queries, cursor pagination, structured errors, and a contract-checked interface for all 196 operations in the server's OpenAPI surface.

Version 0.0.2 targets Hubuum server v0.0.4. Compatibility is tested against the tag-and-digest server image recorded in the compatibility matrix. Client version 0.0.1 remains the v0.0.3-compatible baseline.

Installation

python -m pip install hubuum-client

Python 3.11 or newer is required. The runtime dependencies are only HTTPX and Pydantic.

Quick start

from hubuum_client import ClassCreate, Client, Credentials, Query

with Client("https://hubuum.example.com") as client:
    client.login(Credentials("alice", "correct-horse-battery-staple"))

    classes = client.classes.list(
        Query().where("name", "server").limit(25).include_total()
    )

    created = client.classes.create(
        ClassCreate(
            name="server",
            collection_id=1,
            description="Server inventory",
        )
    )
    print(created.id, len(classes))

The asynchronous API has the same shape:

import asyncio

from hubuum_client import AsyncClient, Credentials, Query


async def main() -> None:
    async with AsyncClient("https://hubuum.example.com") as client:
        await client.login(Credentials("alice", "secret"))
        page = await client.classes.by_name("Servers").objects.page(
            Query().where("name", "web-01").include_total()
        )
        print(page.total_count, page.items)


asyncio.run(main())

Context-managed clients remain open for the entire block and reuse their HTTP connection pools. Applications that manage startup and shutdown explicitly can keep the same client for their full lifetime:

client = Client("https://hubuum.example.com")
try:
    client.login(Credentials("alice", "secret"))
    run_application(client)
finally:
    client.close()

The async equivalent uses await client.close(). Reuse a client instead of constructing one per request so eligible TCP/TLS connections can be reused; see Client setup for synchronous and asynchronous lifetime examples.

Credentials and bearer tokens have redacted representations. TLS certificate validation is enabled by default; disabling it is an explicit client option and should be limited to disposable development systems.

Resource services

The typed surface currently covers the most common Hubuum workflows:

  • collections, hierarchy traversal, and parent moves;
  • classes and class-scoped objects, including exact-name addressing and nested data filtering and atomic JSON Patch;
  • users, groups, memberships, and user anonymization;
  • scoped token listing, minting, and revocation;
  • class relations and object relations;
  • typed grouped and multi-measure object aggregates;
  • cursor pagination and task polling;
  • health, readiness, and public server configuration.

Every v0.0.4 OpenAPI operation is registered by its stable operationId:

from hubuum_client import OpenAPIOptions

result = client.openapi.call(
    "getApiV1Search",
    options=OpenAPIOptions(params={"q": "server", "limit_per_kind": 10}),
)

The checked-in manifest covers all 196 methods, paths, path variables, body media types, public/authenticated policies, JSON responses, rendered text exports, and the search event stream. request() remains available for server extensions outside the pinned specification. Both interfaces are constrained to the configured origin.

Querying and pagination

Queries are immutable and reusable:

from hubuum_client import FilterOperator, Query

base = Query().where("name", "server", FilterOperator.ICONTAINS)
first_page = client.classes.page(base.limit(25).include_total())
all_matches = client.classes.all(base, max_items=5_000)

active_web_servers = client.classes.by_name("Servers").objects.all(
    Query()
    .data("status")
    .equals("active")
    .data("tags")
    .contains_all("web", "api")
)

Page exposes items, next_cursor, total_count, and the effective page_limit. Automatic pagination detects repeated cursors and enforces page and item limits. The fluent data() selector supports nested paths, typed comparisons, arrays, nulls, object keys, and IP/network operators; see Queries and pagination.

Group membership uses the same typed, cursor-aware interface:

member_page = client.groups.members_page(group_id, Query().limit(25).include_total())
all_members = client.groups.all_members(group_id, max_items=5_000)

Documentation

Development

uv sync --extra dev
uv run ruff format --check .
uv run ruff check .
uv run mypy
uv run bandit -q -r src scripts
uv run zizmor .
uv run pytest --cov
uv run mkdocs build --strict

The full pinned-server workflow is:

./scripts/run-e2e-tests.sh

See AGENTS.md for repository conventions and the exact e2e stack. Contributions are welcome; see CONTRIBUTING.md for the development and pull-request workflow. Maintainers can find the release process in the release guide.

Please report security issues according to SECURITY.md, rather than in a public issue.

License

Distributed under the MIT License. See LICENSE.

Project details


Download files

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

Source Distribution

hubuum_client-0.0.2.tar.gz (152.1 kB view details)

Uploaded Source

Built Distribution

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

hubuum_client-0.0.2-py3-none-any.whl (40.1 kB view details)

Uploaded Python 3

File details

Details for the file hubuum_client-0.0.2.tar.gz.

File metadata

  • Download URL: hubuum_client-0.0.2.tar.gz
  • Upload date:
  • Size: 152.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for hubuum_client-0.0.2.tar.gz
Algorithm Hash digest
SHA256 de96de7932aa58dad1e255b8f3024fcb3dce8fcc8c739b48762f581344217f46
MD5 dec64eb53d704ab07c6407d36c926232
BLAKE2b-256 6862ee8e3ef56f0eab32307d15b79c4b13f512ed2f371747e0136ec3939bc3f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hubuum_client-0.0.2.tar.gz:

Publisher: release.yml on hubuum/hubuum-client-python

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

File details

Details for the file hubuum_client-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: hubuum_client-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 40.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for hubuum_client-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 29c609155b781c19ba34eb1545bca03ed1d676d14ac5559f5dd3a41921d91115
MD5 55899868359f180a38168048fbc0a4b2
BLAKE2b-256 3cad3eb9897b00bb159d2ba1721a5f2735855fffbbea32561e48e366c3eb1cdc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hubuum_client-0.0.2-py3-none-any.whl:

Publisher: release.yml on hubuum/hubuum-client-python

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

Supported by

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