Skip to content

OWI Metadatabase Results Extension

What is the OWI Metadatabase Results SDK?

The owi-metadatabase-results package extends the owi.metadatabase namespace with a full results lifecycle: define analyses, persist typed result series, retrieve them with Django-style filters, and render interactive plots. All through a single, protocol-driven SDK.

  • Tutorials


    Step-by-step lessons that walk you through complete workflows from first API call to rendered plot.

    Start learning

  • How-to Guides


    Focused recipes for common tasks: install, authenticate, upload results, plot data, and more.

    Find a recipe

  • Reference


    Auto-generated API docs and Django QuerySet examples for every model in the results schema.

    Browse reference

  • Explanation


    Deeper discussions on architecture, data models, and design decisions behind the SDK.

    Understand concepts

Quick Example

from owi.metadatabase.results import ResultsAPI

api = ResultsAPI(token="your-api-token")

# List all analyses
analyses = api.list_analyses()

# Retrieve results for a specific analysis
results = api.list_results(analysis__id=46)