Skip to main content

honua-sdk

Python client for Honua Server, the multi-protocol geospatial server behind Honua -- query geospatial features, geocode addresses, stream data over gRPC, and convert results to GeoDataFrames. Sync and async clients included.

Status: Alpha (0.x). APIs may change before 1.0. Breaking changes to the public API are gated by a compatibility snapshot and a per-capability SDK coverage snapshot.

See the monorepo README for the full documentation index, install matrix, and release notes.

Highlights

  • Sync and async clients (HonuaClient, AsyncHonuaClient) with shared retry, refreshable-auth, and error-handling behavior.
  • Source-bound facade (client.source(...)) returns normalized features across GeoServices FeatureServer, OGC API Features, STAC, and OData.
  • Protocol wrappers for FeatureServer/MapServer/ImageServer/GeometryServer, SceneServer, ElevationServer, OGC Features/Maps/Tiles/Coverages/Processes/Records, STAC, WFS, WMS, WMTS, OData, and geocoding.
  • Optional geopandas extra converts query responses to GeoDataFrames in one call via honua_sdk.geopandas; the raster extra adds raster result interop (rasterio / rioxarray / xarray).
  • Optional grpc extra unlocks streaming feature queries through honua_sdk.grpc.HonuaGrpcClient / HonuaGrpcAsyncClient.
  • Two CLIs ship with the package: honua (services / layers / style apply / sanitized doctor diagnostic bundles) and honua-migrate (offline ArcPy migration tooling: scan and translate ArcPy scripts, classify .pyt and .atbx toolboxes and geoprocessing services -- no arcpy install needed).

Install

pip install honua-sdk                   # core data-plane client
pip install "honua-sdk[geopandas]"      # + GeoDataFrame helpers
pip install "honua-sdk[grpc]"           # + streaming gRPC client
pip install "honua-sdk[raster]"         # + raster interop (rasterio/rioxarray/xarray)
pip install "honua-sdk[grpc,geopandas,raster]"  # everything

Requires Python 3.11+.

Minimal Example

from honua_sdk import HonuaClient, Query, SourceDescriptor, SourceLocator

with HonuaClient("https://your-honua-server.com") as client:
    source = client.source(
        SourceDescriptor(
            id="parcels",
            protocol="geoservices-feature-service",
            locator=SourceLocator(service_id="parcels", layer_id=0),
        )
    )
    result = source.query(Query(where="status = 'active'", out_fields=["*"]))
    print(f"Found {len(result.features)} features")
    for feature in result.features[:3]:
        print(feature.id, feature.properties)

    # Requires the [geopandas] extra
    gdf = result.to_geodataframe()  # GeoDataFrame with geometry column + CRS set

The same SourceDescriptor with a different protocol (ogc-features, stac, odata, ...) returns the same normalized Result shape.

Always use the with HonuaClient(...) as client: form -- it guarantees the underlying httpx connections are returned to the pool on exit, even when a request raises.

Async

from honua_sdk import AsyncHonuaClient, Query, SourceDescriptor, SourceLocator

async with AsyncHonuaClient("https://your-honua-server.com") as client:
    source = client.source(
        SourceDescriptor(
            id="parcels",
            protocol="geoservices-feature-service",
            locator=SourceLocator(service_id="parcels", layer_id=0),
        )
    )
    result = await source.query(Query(where="status = 'active'", out_fields=["*"]))
    async for feature in source.stream(Query(where="status = 'active'")):
        print(feature.properties, feature.geometry)

Works with FastAPI, asyncio pipelines, Jupyter async, and any other async framework. Sync and async clients share identical method names, retry, and error-handling behavior.

Protocol IDs follow the canonical cross-SDK names (geoservices-feature-service, ogc-features, stac, odata, ...). Common aliases (feature-server, featureserver, ogc-api-features, ...) are accepted and normalized through honua_sdk.normalize_protocol(...).

Documentation

Rendered docs site: honua-io.github.io/honua-sdk-python. Platform docs: honua.io and honua.gitbook.io/honuaio.

Related: honua-admin (control-plane client), honua-sdk-js (JS/TS SDKs + MCP server), honua-sdk-dotnet (.NET SDKs).

License

Apache-2.0

Release files for honua-sdk 0.1.11

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for honua-sdk 0.1.11
File Size Uploaded
honua_sdk-0.1.11.tar.gz 246.2 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for honua-sdk 0.1.11
File Interpreter ABI Platform
honua_sdk-0.1.11-py3-none-any.whl Python 3 none any Details

Total release size: 529.3 kB

Release files / honua_sdk-0.1.11.tar.gz

Download URL honua_sdk-0.1.11.tar.gz
Size 246.2 kB
Tags Source
SHA-256 checksum
How to use checksums
028faa747172ffa5d4611468059d6ec77a2b6bc2186f5e04aea28e8bb8eb5c4c
BLAKE2b-256 checksum
How to use checksums
da4aaf8aef082169248460a3bbac1816cad96af569ccfb3c1a6aeb966f09964c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release files / honua_sdk-0.1.11-py3-none-any.whl

Download URL honua_sdk-0.1.11-py3-none-any.whl
Size 283.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
80ac6a25fa5fed0ee7d8dca4ca94d14c098d9f72a149c9e271b1a1d04b78c3e9
BLAKE2b-256 checksum
How to use checksums
6e3295a9b26657362fd35b8506b85af7ae6531a2b463ca094c9a63a5af731353
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.11 This release

2 release 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