Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Autonoma Python SDK

Python implementation of the Autonoma Environment Factory SDK.

Package

Package Description
autonoma-ai Core protocol (HMAC, refs, graph, handler, schema)
autonoma-ai[django] Django server handler
autonoma-ai[flask] Flask server adapter
autonoma-ai[fastapi] FastAPI server adapter
autonoma-ai[all] All server adapters

Quick Start

Install

pip install autonoma-ai
# With extras:
pip install "autonoma-ai[fastapi]"
# Or everything:
pip install "autonoma-ai[all]"

FastAPI

from pydantic import BaseModel, ConfigDict
from autonoma.types import HandlerConfig
from autonoma.factory import define_factory
from autonoma_fastapi import create_fastapi_handler

class OrganizationInput(BaseModel):
    model_config = ConfigDict(extra="ignore")
    name: str
    slug: str

def create_org(data, ctx):
    org = db.create_organization(name=data.name, slug=data.slug)
    return {"id": str(org.id), "name": org.name, "slug": org.slug}

def teardown_org(record, ctx):
    db.delete_organization(record["id"])

config = HandlerConfig(
    scope_field="organization_id",
    shared_secret="your-shared-secret",
    signing_secret="your-signing-secret",
    factories={
        "Organization": define_factory(
            create=create_org,
            input_model=OrganizationInput,
            teardown=teardown_org,
        ),
    },
    auth=lambda user, context: {
        "headers": {"Authorization": f"Bearer {create_session_token(user['id'])}"}
    },
)

router = create_fastapi_handler(config)
app.include_router(router, prefix="/api/autonoma")

Commands

poetry install --all-extras   # install with all adapters
poetry run pytest              # run tests

Documentation

For protocol-level documentation, see the root protocol/ directory. For runnable examples, see examples/python/.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autonoma_ai-0.2.10.dev1786777874.tar.gz (38.0 kB view details)

Uploaded Source

Built Distribution

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

autonoma_ai-0.2.10.dev1786777874-py3-none-any.whl (50.7 kB view details)

Uploaded Python 3

File details

Details for the file autonoma_ai-0.2.10.dev1786777874.tar.gz.

File metadata

File hashes

Hashes for autonoma_ai-0.2.10.dev1786777874.tar.gz
Algorithm Hash digest
SHA256 0f6d992b5a087c41f0317c315b20a7f9a16d58b2e8d010da0ddbccac5ae0f37f
MD5 4ca79987883b7d77bbf5cdfb6bcf7bb6
BLAKE2b-256 0f37c680c2380e08b4293e98533ff12de1415237f2a6b7d385569e130f1960e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for autonoma_ai-0.2.10.dev1786777874.tar.gz:

Publisher: canary.yml on Autonoma-AI/sdk

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

File details

Details for the file autonoma_ai-0.2.10.dev1786777874-py3-none-any.whl.

File metadata

File hashes

Hashes for autonoma_ai-0.2.10.dev1786777874-py3-none-any.whl
Algorithm Hash digest
SHA256 45a2c9c807301f9124a70283e9b9103a7028527ba3a6e47c471ac03ec1a090bc
MD5 e0fd8a00509d1d405843355a0d69f813
BLAKE2b-256 60e090001293d3d1627a465428545987a545687d6d5fd400d33e4f5d66c01791

See more details on using hashes here.

Provenance

The following attestation bundles were made for autonoma_ai-0.2.10.dev1786777874-py3-none-any.whl:

Publisher: canary.yml on Autonoma-AI/sdk

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

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page