AAS HTTP Client is a flexible Python library for interacting with Asset Administration Shell (AAS) and submodel repository servers over HTTP. It uses standard Python dictionaries for function inputs and outputs, making it easy to integrate with a variety of workflows. The client implements the most widely used endpoints defined in the AAS server specification, ensuring compatibility with multiple AAS repository server implementations. This allows you to connect to different AAS servers without changing your client code.
Notes:
- Each client instance communicates with exactly one AAS server (1-to-1 mapping). For multiple servers, create multiple instances.
- Version 1.0.0 includes implementations for all endpoints from BaSxy Java SDK 'aas-registry', 'submodel-registry' and 'aas-environment'.
Table of Contents:
- ✅ Easy REST communication with AAS-compliant servers
- ✅ Support for Registry, AAS, and Submodel Repository endpoints
- ✅ Optional wrapper for the Eclipse BaSyx Python SDK
- ✅ Built-in authentication (Bearer, OAuth, Basic)
- ✅ Pagination support
- ✅ Utility modules (encoding, model builder, SDK tools)
- ✅ Tested with multiple AAS server implementations
The client has been tested with:
- https://github.com/fluid40/basyx-dotnet
- https://github.com/eclipse-basyx/basyx-java-sdk
- https://github.com/eclipse-basyx/basyx-python-sdk
Actual behavior depends on each server's implementation of the AAS Specification
Wrappers provide a higher-level interface on top of the raw HTTP client. Use them when you want to work with SDK objects instead of plain Python dictionaries returned by the REST API.
Currently available wrappers:
- Accepts and returns
basyx.aas.modelobjects for common AAS and submodel operations - Reuses the same connection and authentication settings as the base HTTP client
- Supports wrapper creation from a URL, a Python dictionary, or a configuration file
- Keeps low-level client access available through
wrapper.get_client()when needed
The AAS HTTP Client package also include some utility functions for for recurring tasks (provided by import 'aas_http_client.utilities'):
- encoder: base64 encoding and decoding
- sdk_tools: e.g. Framework object serialization and deserialization, basic submodel operations
- *model_builder: creation of some basic AAS model elements
For a detailed introduction, please read Getting Started.
pip install aas-http-clientfrom aas_http_client import create_client_by_url
client = create_client_by_url("http://localhost:8081")
shells_paginated = client.shells.get_all_asset_administration_shells()
print(shells_paginated.get("results", [])from aas_http_client import create_wrapper_by_url
from basyx.aas import model
wrapper = create_wrapper_by_url("http://localhost:8081")
shells = wrapper.wrapper.get_all_asset_administration_shells()
print(shells)