Skip to main content

The Antioch Python SDK

Project description

antioch-py

Python SDK for the Antioch autonomy simulation platform.

Overview

The antioch-py package provides two components:

Module SDK (antioch.module)

The Module SDK is a framework for building Antioch modules in Python. Modules are containerized components that run alongside your simulation, processing sensor data and producing outputs. Each module runs in its own Docker container and communicates with the simulation through the Antioch runtime. Install the SDK in your module's Dockerfile to read sensors, run inference, and publish results.

from antioch.module import Execution, Module

def process_radar(execution: Execution) -> None:
    scan = execution.read_radar("sensor")
    if scan is not None and len(scan.detections) > 0:
        execution.output("detections").set(scan)

if __name__ == "__main__":
    module = Module()
    module.register("radar_node", process_radar)
    module.spin()

Session SDK (antioch.session)

The Session SDK is a client library for orchestrating Antioch simulations. Use it from Python scripts or Jupyter notebooks to programmatically build scenes, load assets, spawn robots, control simulation playback, and record data. The Session SDK connects to your Antioch deployment and provides a high-level API for automation and experimentation.

from antioch.session import Scene, Session, Task, TaskOutcome

session = Session()
scene = Scene()

# Load environment and robot
scene.add_asset(path="/World/environment", name="warehouse", version="1.0.0")
ark = scene.add_ark(name="my_robot", version="0.1.0")

# Run simulation
task = Task()
task.start(mcap_path="/tmp/recording.mcap")

scene.play()
scene.step(1_000_000)  # step 1 second
scene.pause()

task.finish(outcome=TaskOutcome.SUCCESS)

Installation

To install in your Python environment:

pip install antioch-py

To install in your Python-based Docker image (e.g. for an Antioch module):

FROM python:3.12-slim

RUN pip install antioch-py

COPY . /app
WORKDIR /app

CMD ["python", "module.py"]

Documentation

Visit antioch.com for full documentation.

License

MIT

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

antioch_py-2.0.7.tar.gz (100.0 kB view details)

Uploaded Source

Built Distribution

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

antioch_py-2.0.7-py3-none-any.whl (133.1 kB view details)

Uploaded Python 3

File details

Details for the file antioch_py-2.0.7.tar.gz.

File metadata

  • Download URL: antioch_py-2.0.7.tar.gz
  • Upload date:
  • Size: 100.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for antioch_py-2.0.7.tar.gz
Algorithm Hash digest
SHA256 51044a9805de2f33e4c3b5725cf9b1693edd2d1580755d3b2c41004639c1e46d
MD5 c1251a1a1783cf9f6331c77695e9ff1d
BLAKE2b-256 92a34d48f82738275a094729c4981ce5beecebf6f5eb8a2cbd6a0a2bc80ed54c

See more details on using hashes here.

Provenance

The following attestation bundles were made for antioch_py-2.0.7.tar.gz:

Publisher: antioch-py-publish.yml on antioch-robotics/antioch-monorepo

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

File details

Details for the file antioch_py-2.0.7-py3-none-any.whl.

File metadata

  • Download URL: antioch_py-2.0.7-py3-none-any.whl
  • Upload date:
  • Size: 133.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for antioch_py-2.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 3353e01f16c63e24497584c523edc8000727487df33db6865f1c2187f8afe277
MD5 fb8423bed566bb0d97d0f5e326c946a6
BLAKE2b-256 b6db62f1fd28ef428c196a5655f9d4f45636f376c99b3a579c3e1439565fac16

See more details on using hashes here.

Provenance

The following attestation bundles were made for antioch_py-2.0.7-py3-none-any.whl:

Publisher: antioch-py-publish.yml on antioch-robotics/antioch-monorepo

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