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.1.7.tar.gz (299.3 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.1.7-py3-none-any.whl (216.5 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: agora_etl-0.1.7.tar.gz
  • Upload date:
  • Size: 299.3 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.1.7.tar.gz
Algorithm Hash digest
SHA256 e531dabfa814d41d994c29281369d739cfe8237862ac97dee9228bb32bbe8789
MD5 69d7f0f0cd6d788064d478597958e6b6
BLAKE2b-256 77db480c5089d3d4fb36292024d3a2c2c39f9227b6da2fbcb764266df911bcc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for agora_etl-0.1.7.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.1.7-py3-none-any.whl.

File metadata

  • Download URL: agora_etl-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 216.5 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.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 e17ac4e7e4f604500b06be20b2023daa288bbef07eafa0848f6422b1eae7ac17
MD5 a580bc582616d6f006104c3b9f7992ca
BLAKE2b-256 363f8b47649dfc5124148c14972603f2b7c548df907e70c871acf688cf0280ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for agora_etl-0.1.7-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