Skip to main content

Athena Python SDK for block development

Project description

athena-sdk

Python SDK for building blocks and workflows on the Athena ML orchestration platform.

Installation

pip install buildathena-sdk

Quick Start

Define a Block

from athena import block, BlockContext

@block(name="TrainModel", outputs=["checkpoint"])
async def train_model(ctx: BlockContext, epochs: int = 100):
    for epoch in range(epochs):
        loss = train_epoch()
        await ctx.emit_metric("loss", loss, epoch=epoch)

    ref = await ctx.artifacts.register("model.pt", schema_type="checkpoint")
    return {"checkpoint": ref}

Use Credentials

Declare required secrets in the @block decorator and access via ctx.secrets:

from athena import block, BlockContext

@block(name="MyBlock", secrets=["OPENAI_API_KEY"])
async def my_block(ctx: BlockContext, config):
    key = ctx.secrets["OPENAI_API_KEY"]

Features

  • Block Decorator: @block for defining workflow nodes
  • Handler Decorator: @handler for custom URI scheme storage backends (s3://, gs://)
  • Inspector Backend: @inspector_backend protocol for interactive UI plugins
  • BlockContext: Emit metrics, progress, logs, and register artifacts
  • Config System: YAML with $include, $extends, ${ref} substitution
  • Discovery: AST-based scanner for workspace block detection
  • Credentials: Secure secret management with @block(secrets=...) and ctx.secrets

License

Proprietary - Copyright (c) 2026 Athena Technologies. All rights reserved.

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

buildathena_sdk-0.1.28.tar.gz (69.3 kB view details)

Uploaded Source

Built Distribution

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

buildathena_sdk-0.1.28-py3-none-any.whl (44.2 kB view details)

Uploaded Python 3

File details

Details for the file buildathena_sdk-0.1.28.tar.gz.

File metadata

  • Download URL: buildathena_sdk-0.1.28.tar.gz
  • Upload date:
  • Size: 69.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.0

File hashes

Hashes for buildathena_sdk-0.1.28.tar.gz
Algorithm Hash digest
SHA256 95345a0db495db6e4cdc62c16c6c22452a6ced5697ac830e709c65a95650805c
MD5 faa8eab36ea1710eca6340eb1ceaeb52
BLAKE2b-256 7fa5a1334aeb857c052611b0690adaee8de52b6515c32397f4e8939bb6aaf4f2

See more details on using hashes here.

File details

Details for the file buildathena_sdk-0.1.28-py3-none-any.whl.

File metadata

File hashes

Hashes for buildathena_sdk-0.1.28-py3-none-any.whl
Algorithm Hash digest
SHA256 1cb5bb6bfd873993ed0050dd61c1a470a89d2d2ee7ec38c14990a48753ca10a0
MD5 def23d8f2100ed8f1e7aadada06ac59b
BLAKE2b-256 e06386e72d436e7ffa8e03468f788eb6ccc840a357a233d6f7e5f45558573037

See more details on using hashes here.

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