Skip to main content

Agora — async-first ETL framework for Python.

Project description

Agora ETL Framework

Async-first ETL framework for Python.

License Python PyPI


Overview

agora-etl is a Python async ETL framework built around a Source → Middleware chain → Sink(s) model.

  • Source emits records one at a time via an async generator
  • Middleware chain transforms, filters, validates, or enriches each record
  • Sink persists records to a destination

The pipeline builder is immutable — every .pipe() and .filter() returns a new instance. Calling .build() produces a runnable BoundPipeline. The framework handles checkpointing, dead-letter queues, retries, backpressure, and long-running scheduled workers so you can focus on the transformation logic.


Install

pip install agora-etl                  # core only
pip install "agora-etl[file]"          # + Parquet support and faster JSONL

Quick start

Minimal pipeline — filter and print:

import asyncio
from dataclasses import dataclass
from agora import Pipeline, IterableSource
from agora.sinks.io.stdout import StdoutSink

@dataclass
class Event:
    id: int
    name: str
    score: float

async def main():
    summary = await (
        Pipeline(IterableSource([
            Event(id=1, name="alice", score=0.9),
            Event(id=2, name="bob",   score=0.4),
            Event(id=3, name="carol", score=0.85),
        ]))
        .filter(lambda r: r.score > 0.8)
        .build(StdoutSink())
        .run()
    )
    print(f"written={summary.records_written}  dropped={summary.records_dropped}")

asyncio.run(main())

With DLQ — failed records are captured, pipeline continues:

import asyncio
from agora import Pipeline, IterableSource
from agora.core.middleware import Middleware
from agora.core.dlq import SQLiteDLQSink
from agora.sinks.io.stdout import StdoutSink

class EnrichMiddleware(Middleware[dict, dict]):
    name = "enrich"

    async def process(self, record: dict, ctx) -> dict | None:
        if record.get("value") is None:
            raise ValueError(f"missing value on record {record['id']}")
        return {**record, "value": record["value"].upper()}

async def main():
    summary = await (
        Pipeline(IterableSource([
            {"id": 1, "value": "hello"},
            {"id": 2, "value": None},    # will fail → goes to DLQ
            {"id": 3, "value": "world"},
        ]))
        .pipe(EnrichMiddleware())
        .build(
            StdoutSink(),
            dlq=SQLiteDLQSink(".dlq.db"),
        )
        .run()
    )
    print(f"written={summary.records_written}  errored={summary.records_errored}")
    print(f"run_id={summary.run_id}")
    # written=2  errored=1
    # run_id=<uuid> — use this to query .dlq.db: SELECT * FROM dlq_records WHERE run_id='...'

asyncio.run(main())

The middleware_error log lines are expected — they confirm record id=2 was caught and routed to the DLQ. The pipeline completed normally.

Or scaffold a project:

agora new my-pipeline
cd my-pipeline
agora run pipelines.example

Documentation


Built-in components

Sources

Component Description
JsonLinesSource Stream records from a JSONL file
CsvSource Stream records from a CSV file
ParquetSource Stream records from a Parquet file ([file] extra)
HTTPSource Abstract base for HTTP polling sources

Sinks

Component Description
JsonLinesSink Write records as JSONL
CsvSink Write records as CSV
ParquetSink Write records to Parquet ([file] extra)
WebhookSink POST records to an HTTP endpoint
StdoutSink Print records to stdout
LogSink Emit records via the structured logger

Middlewares

Component Description
MapMiddleware Apply a function to each record
FilterMiddleware Drop records that do not match a predicate
RetryMiddleware Retry a middleware on exception with backoff
ValidateMiddleware Validate records against a Pydantic model
EnrichMiddleware Enrich records with data from an async callable
DedupMiddleware Drop duplicate records by a computed key
AIEnrichMiddleware Add fields using an LLM
AIClassifyMiddleware Classify records into a fixed set of categories
AIExtractMiddleware Extract structured fields from unstructured text
AIBatchMiddleware Batch multiple records into a single LLM call

CLI

agora new <name>       # scaffold a new project
agora run <module>     # run a pipeline once
agora worker           # start the worker pool
agora dlq replay       # replay failed records
agora plugins list     # list registered plugins
agora version          # print version

License

Apache 2.0 — see LICENSE.

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

agora_etl-0.2.0.tar.gz (344.1 kB view details)

Uploaded Source

Built Distribution

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

agora_etl-0.2.0-py3-none-any.whl (237.1 kB view details)

Uploaded Python 3

File details

Details for the file agora_etl-0.2.0.tar.gz.

File metadata

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

File hashes

Hashes for agora_etl-0.2.0.tar.gz
Algorithm Hash digest
SHA256 86cc5b8c16ef690d8f51cb692bb6cf0b8654c734356e926b8583f5565bb6c9be
MD5 b2c71da30ba243c61d8ed61328bcb822
BLAKE2b-256 03feb4a3f8189cf953081cfbbb5bdab13d934b0cbe1c44518e45079a78e2c375

See more details on using hashes here.

Provenance

The following attestation bundles were made for agora_etl-0.2.0.tar.gz:

Publisher: release.yml on thanhtham010891/agora-etl

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

File details

Details for the file agora_etl-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: agora_etl-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 237.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for agora_etl-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ef07067bad8244432723a9f496b1f732d3d3745af21627e869e2aa8da5e45ace
MD5 6a1962744fb0cef4bec4883ab866c7c5
BLAKE2b-256 bab220aa777326b50f7acf794467915cf815d46a0b385031618820e19e51a92a

See more details on using hashes here.

Provenance

The following attestation bundles were made for agora_etl-0.2.0-py3-none-any.whl:

Publisher: release.yml on thanhtham010891/agora-etl

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