Typed, contract-driven data pipeline modeling for Python.
Project description
ETLantic
Design once. Validate everywhere.
Typed, contract-driven data pipelines for Python.
Documentation · Quickstart · Capabilities · Roadmap
ETLantic catches incompatible wiring before data is processed. Define datasets, transformations, and pipelines as typed Python classes, then validate, plan, run, or compile the same logical pipeline for different execution engines.
Typed contracts ──▶ Validation ──▶ Deterministic plan ──▶ Run or compile
ETLantic treats validation as a continuous control layer around ETL, not as a single check at the beginning:
V(model) ──▶ Extract ──▶ V(input) ──▶ Transform ──▶ V(output) ──▶ Load ──▶ V/evidence
That means validating the pipeline before work begins, validating data against contracts at execution boundaries, and recording whether publication satisfied the declared contract and write policy. Validation is not an extra business transformation and does not always mean rereading a sink; the exact runtime check is selected by policy and backend capability. The principle is simple: ETL, with validation at every boundary.
That is also the promise behind the name: ETL is the familiar data flow; ETLantic surrounds that flow with typed contracts, validation, planning, and evidence from source to publication.
Why ETLantic?
- Fail earlier. Detect broken references, incompatible contracts, missing implementations, unsupported capabilities, and untrusted plugins before a write occurs.
- Validate throughout. Check extracted inputs, transformation outputs, and publication boundaries against the same typed contracts and preserve the result as structured evidence.
- Keep logic portable. Separate logical pipeline structure from local, Polars, Pandas, SQL, PySpark, and orchestration implementations.
- Make plans reviewable. Generate deterministic, immutable, secret-free execution plans with stable fingerprints.
- Preserve evidence. Produce structured diagnostics, lineage, schema observations, and run reports instead of opaque task logs.
- Adopt incrementally. The core has no dataframe, SQL, Spark, or Airflow dependency. Install only the integrations you need.
Project status: 0.18.0 is stable for documented single-tenant reference deployments (not unrestricted enterprise production). Structured Streaming remains experimental. Multi-tenant isolation, compliance attestations, and SBOM/signing remain adopter-owned or roadmap (0.20+). See Capabilities, Evaluator, and Production readiness.
Green path
- Install —
pip install 'etlantic==0.18.0' - Quickstart — five-minute success
- First Pipeline — CLI validate/plan
- Engine selection — then an engine tutorial; diligence: Capabilities or Compare
Quickstart
ETLantic requires Python 3.11 or newer.
pip install etlantic==0.18.0
python -m etlantic --version
# equivalent: etlantic --version
Create pipeline.py:
from etlantic import (
Data,
Extract,
Input,
Load,
Output,
Pipeline,
PipelineRuntime,
Transformation,
)
class RawCustomer(Data):
customer_id: int
first_name: str
last_name: str
class Customer(Data):
customer_id: int
full_name: str
class NormalizeCustomers(Transformation):
customers: Input[RawCustomer]
result: Output[Customer]
@NormalizeCustomers.implementation("local")
def normalize_customers(customers: list[RawCustomer]) -> list[Customer]:
return [
Customer(
customer_id=row.customer_id,
full_name=f"{row.first_name} {row.last_name}",
)
for row in customers
]
class CustomerPipeline(Pipeline):
raw: Extract[RawCustomer] = Extract(asset="customer_source")
normalized = NormalizeCustomers.step(customers=raw)
curated: Load[Customer] = Load(
input=normalized.result,
asset="customer_sink",
)
def main() -> None:
# Validation and planning do not execute transformation code.
CustomerPipeline.validate(profile="development").raise_for_errors()
plan = CustomerPipeline.plan(profile="development")
print(plan.fingerprint)
runtime = PipelineRuntime()
runtime.memory.seed(
"customer_source",
[RawCustomer(customer_id=1, first_name="Ada", last_name="Lovelace")],
)
report = CustomerPipeline.run(profile="development", runtime=runtime)
print(report.status) # succeeded
print(runtime.memory.get("customer_sink")[0].model_dump())
# {"customer_id": 1, "full_name": "Ada Lovelace"}
if __name__ == "__main__":
main()
Keep contracts, the transformation registration, and CustomerPipeline at
module scope so the CLI can import them. Put validate/seed/run under
if __name__ == "__main__" so etlantic validate / plan do not execute the
pipeline during import.
Change the sink contract to an incompatible type and validate() returns a
structured diagnostic before any transformation or write is attempted.
The complete tested example is
examples/quickstart.py
(requires a repository checkout—the PyPI wheel does not include examples/).
Prefer the paste-ready Quickstart
after pip install.
CLI workflow
The CLI follows the same validate-first lifecycle. Validation and planning do not require seeded data; in-memory execution does, so run the seeded example with Python:
# Inspect and validate a pipeline (import-safe when side effects are guarded)
etlantic inspect pipeline.py:CustomerPipeline --format json
etlantic validate pipeline.py:CustomerPipeline --profile development --format json
# Build and explain a deterministic execution plan
etlantic plan pipeline.py:CustomerPipeline --profile development --format json
etlantic plan explain pipeline.py:CustomerPipeline --profile development --format json
# Execute the seeded in-memory example
python pipeline.py
# Emit CI diagnostics
etlantic validate pipeline.py:CustomerPipeline --profile development --format sarif
Airflow compilation requires the optional etlantic-airflow package. It is
compile-only and does not install Apache Airflow—install Airflow separately
in the environment that loads generated DAGs:
pip install 'etlantic[airflow]==0.18.0'
etlantic compile pipeline.py:CustomerPipeline --target airflow -o dags/
Other public command groups cover contract generation and diffs, plugins,
schema drift, reliability, visualization, and reports. Run etlantic --help
for the complete command surface.
Choose an engine
Start with the core package, then add engines as needed (pin the minor in 0.x). Primary form installs the optional package directly; extras are equivalent:
pip install 'etlantic-polars==0.18.0' # equivalent: etlantic[polars]==0.18.0
pip install 'etlantic-pandas==0.18.0' # equivalent: etlantic[pandas]==0.18.0
pip install 'etlantic-sql==0.18.0' # equivalent: etlantic[sql]==0.18.0
pip install 'etlantic-pyspark==0.18.0' # equivalent: etlantic[pyspark]==0.18.0
pip install 'etlantic-airflow==0.18.0' # equivalent: etlantic[airflow]==0.18.0
pip install 'etlantic-prefect==0.18.0' # equivalent: etlantic[prefect]==0.18.0
| Integration | Package | Purpose |
|---|---|---|
| Polars | etlantic-polars |
Eager/lazy dataframe execution and portable kernel compilation |
| Pandas | etlantic-pandas |
Eager dataframe execution |
| SQL | etlantic-sql |
Parameterized relational execution and SQL-to-SQL plans |
| PySpark | etlantic-pyspark |
Spark execution and local session provider |
| Airflow | etlantic-airflow |
Compile plans into Airflow DAG artifacts (does not install Apache Airflow) |
| Prefect | etlantic-prefect |
Optional direct-execution scheduler (local MVP) |
| Keyring | etlantic-keyring |
Resolve runtime secrets from the OS keyring |
| SQLModel | etlantic-sqlmodel |
Bridge ContractModel schemas and SQLModel |
| SparkForge | etlantic-sparkforge |
Migrate SparkForge pipeline definitions |
etlantic-airflow is compile-only: install Apache Airflow separately in the
environment that loads generated DAGs.
Plugins are discovered through Python entry points and scoped to a runtime registry. Production profiles require an explicit plugin allowlist and reject untrusted plugins by default.
How it works
ETLantic keeps logical intent separate from physical execution:
- Author typed
Data,Transformation, andPipelineclasses. - Inspect an immutable logical graph without running user code.
- Validate structure, references, contracts, policies, capabilities, and plugin trust in ordered phases.
- Plan engine selections, execution regions, bindings, artifacts, and materialization boundaries.
- Execute or compile the plan through small backend protocols.
- Report step outcomes, diagnostics, lineage, artifacts, and schema observations.
During execution, the same contracts form validation boundaries around extracts, transformations, engine/interchange transitions, and loads. A policy may fail, reject/quarantine invalid rows where supported, or record evidence, but a backend cannot silently weaken a required check.
Plans and reports contain secret references, never resolved secret values. Secrets are resolved only at runtime. Capability and trust failures occur before mutation.
Capability boundary
| Capability | 0.18 |
|---|---|
| Typed modeling, validation, contracts, and deterministic planning | Available |
| Local Python execution and structured run reports | Available |
| Memory, callable, JSON, CSV, and no-write storage | Available |
| Polars and Pandas dataframe plugins | Available |
| SQL and PySpark plugins | Available |
| Airflow plan compiler | Available |
| ODCS, DTCS, and DPCS interchange | Available |
| Schema drift, reliability, visualization, and SARIF tooling | Available |
| Production plugin allowlists and runtime secret providers | Available |
| Portable transformation authoring | Available |
Polars + PySpark + Pandas + SQL portable compilers (kernel + relational /1) |
Available |
| Public portable transform conformance SDK | Available |
| Versioned tabular interchange (Polars↔Pandas Gate A) | Available |
| Structured Streaming | Experimental |
| Advanced portable profile graduation | Available on Polars + PySpark (since 0.17; current in 0.18); Pandas/SQL baseline only |
See Capabilities and Limitations and the roadmap for the precise support boundary.
Documentation
- Hosted documentation
- Getting Started
- Quickstart
- Compare — vs dbt, Airflow, Prefect, Pandera
- Evaluator brief
- Capabilities
- Production readiness
- Security
- Contributing
- Roadmap
Development
The repository uses uv for its workspace and development environment:
git clone https://github.com/eddiethedean/etlantic.git
cd etlantic
uv sync
uv run python examples/quickstart.py
uv run pytest
uv run ruff check .
uv run ruff format --check .
uv run mkdocs serve
See CONTRIBUTING.md for package-specific test groups and development conventions.
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file etlantic-0.18.0.tar.gz.
File metadata
- Download URL: etlantic-0.18.0.tar.gz
- Upload date:
- Size: 388.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70261320effde893323fc65e4e03f381e85b1e3ebb668130142ab910ecf9489e
|
|
| MD5 |
1d684790cddefc31e56b532ff0a220e4
|
|
| BLAKE2b-256 |
20f10939c80f55a94bbc260b6e1c7c4c090ed9b3a2b9079ce99dd2c9eeb847cc
|
File details
Details for the file etlantic-0.18.0-py3-none-any.whl.
File metadata
- Download URL: etlantic-0.18.0-py3-none-any.whl
- Upload date:
- Size: 285.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5b141a8b880be8669f5df2184269fe709c238a994bef9323fc1688b040bc483
|
|
| MD5 |
b9cf12effa26c7f47bc888282f302435
|
|
| BLAKE2b-256 |
df3e52323d89f0d4d8bb2fdce98b0785a6af5fba34b99677be6f41ff53e6a596
|