Skip to main content

Helper package to build ASAM ODS EXD API grpc plugins.

Project description

ods-exd-api-box

Python 3.12+ License: MIT Code style: ruff Type checking: mypy

A Python helper package to build ASAM ODS EXD-API gRPC plugins/services.

📖 Full documentation: totonga.github.io/ods-exd-api-box

What is ASAM ODS EXD-API?

The ASAM ODS standard defines how measurement and test data is stored and managed. The EXD-API (External Data API) is a gRPC interface that allows ODS servers to read data from external file formats (TDMS, CSV, HDF5, …) without importing the raw data.

Installation

# Core (ExdFileInterface only)
pip install ods-exd-api-box

# With pandas support (FileSimpleInterface)
pip install 'ods-exd-api-box[simple]'

Quick Start

Full-control interface

from ods_exd_api_box import ExdFileInterface, serve_plugin

class MyFileHandler(ExdFileInterface):
    # Implement: create, close, fill_structure, get_values
    ...

if __name__ == "__main__":
    serve_plugin("my-format", MyFileHandler.create, ["*.myext"])

Pandas-based simple interface

from ods_exd_api_box.simple import FileSimpleInterface, serve_plugin_simple

class MySimpleHandler(FileSimpleInterface):
    # Implement: create, close, data (returns pd.DataFrame)
    ...

if __name__ == "__main__":
    serve_plugin_simple("my-format", MySimpleHandler.create, ["*.myext"])

Architecture

sequenceDiagram
    actor CLIENT as Client
    participant PDTT as 🛠️Importer
    participant PODS as 🗃️ASAM ODS server
    participant PLUGIN as 📊EXD-API plugin
    participant FILE as 🗂️File Storage

    autonumber

    opt Import phase
        FILE ->>+ PDTT: New file shows up
        PDTT ->>+ PLUGIN : Get Structure
        PLUGIN -> FILE: Extract content information
        PLUGIN ->> PLUGIN: Create Structure
        PLUGIN ->>- PDTT: Return Structure
        PDTT ->> PODS: Import ODS structure
        Note right of PDTT: Create hierarchy<br/>AoTest,AoMeasurement,...
        PDTT ->>- PODS: Add External Data info
        Note right of PDTT: Attach AoFile ... for external data<br/>AoFile,AoSubmatrix,AoLocalColumn,...
    end

    Note over CLIENT, FILE: Now we can work with the imported files

    loop Runtime phase
        CLIENT ->> PODS: Establish ODS session
        CLIENT ->> PODS: Work with meta data imported from structure
        CLIENT ->> PODS: Access external channel in preview
        PODS ->> PLUGIN: GetValues
        PLUGIN ->> FILE: Get Channel values
        PLUGIN ->> PODS: Return values of channels
        PODS ->> CLIENT: Return values needed for plot
    end

Documentation

Topic Link
Architecture & internals Architecture
Choosing an interface Comparison
ExdFileInterface guide Full-control interface
FileSimpleInterface guide Simple interface
Server options & TLS Server Options
Docker deployment Docker
Real-world plugins Plugins

Development

pip install -e ".[dev,simple]"
python -m unittest discover -s tests
mypy .

Contributing

  1. Use dev container or set up local dev environment
  2. Ensure type checking passes: mypy .
  3. Run tests: python -m unittest discover -s tests
  4. Follow code style (Ruff, mypy)
  5. Add tests for new features

License

MIT License - see LICENSE file for details.

References

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

ods_exd_api_box-1.7.0.tar.gz (161.9 kB view details)

Uploaded Source

Built Distribution

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

ods_exd_api_box-1.7.0-py3-none-any.whl (46.0 kB view details)

Uploaded Python 3

File details

Details for the file ods_exd_api_box-1.7.0.tar.gz.

File metadata

  • Download URL: ods_exd_api_box-1.7.0.tar.gz
  • Upload date:
  • Size: 161.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ods_exd_api_box-1.7.0.tar.gz
Algorithm Hash digest
SHA256 c57ddae7f9746dc0cf7a12ec0930fe27bd5c50776b8b5101b0e70b67eb98ae6a
MD5 2da1b12b6d6cb3a04e2172aaaf2cde4c
BLAKE2b-256 cf569e59f2ebf3b71536929054b99b49a67c9a54a32e6d575dfa286ef1957a0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ods_exd_api_box-1.7.0.tar.gz:

Publisher: build.yml on totonga/ods-exd-api-box

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

File details

Details for the file ods_exd_api_box-1.7.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ods_exd_api_box-1.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bdfb1e483a7773b517ad97c2f82e211244db5330b2162b5e19091191a588b7c5
MD5 183fa66e1c47170b26f7314e822400f3
BLAKE2b-256 aa415aca809c16353d442dfe9b3e1a2fbfd0cbf2be754b5971dd017374245f3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ods_exd_api_box-1.7.0-py3-none-any.whl:

Publisher: build.yml on totonga/ods-exd-api-box

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