QuickETL
Fast & Flexible Python ETL Framework with 20+ backend support via Ibis
QuickETL is a configuration-driven ETL framework that provides a simple, unified API for data processing across multiple compute backends including DuckDB, Polars, Spark, and pandas.
Features
- 20+ Backends: DuckDB, Polars, Spark, pandas, Snowflake, BigQuery, PostgreSQL, and more via Ibis
- Configuration-driven: Define pipelines in YAML with variable substitution
- 18 Transforms: filter, aggregate, join, union, derive_column, window, pivot, unpivot, hash_key, coalesce, cast, fill_null, dedup, sort, select, rename, limit, and more
- 6 Quality Checks: not_null, unique, row_count, accepted_values, expression, and contract (Pandera)
- Data Contracts: Schema validation with Pandera, YAML-defined contracts, and a contract registry
- Multi-Source Pipelines: Join and union across multiple data sources in a single pipeline
- Database Sink: Write to databases with append, truncate, replace, and upsert modes
- Partitioned Writes: Write partitioned Parquet/CSV files by one or more columns
- Workflows: Multi-stage pipeline orchestration with parallel execution
- AI/ML Transforms: Text chunking and embedding generation for RAG pipelines
- Secrets Management: Pluggable providers for AWS Secrets Manager, Azure Key Vault, and env vars
- Telemetry: OpenTelemetry and OpenLineage integration for observability
- CLI & Python API: Use
quicketl runor the Pipeline builder pattern - Cloud Storage: S3, GCS, Azure via fsspec
Installation
pip install quicketl
With optional extras:
# Specific backends
pip install quicketl[polars]
pip install quicketl[spark]
# AI/ML features
pip install quicketl[embeddings-openai]
pip install quicketl[chunking]
# Data contracts
pip install quicketl[contracts]
# All optional dependencies
pip install quicketl[all]
See installation docs for backend-specific extras.
Quick Start
# Create a new project
quicketl init my_project
cd my_project
# Run the sample pipeline
quicketl run pipelines/sample.yml
Or use the Python API:
from quicketl import Pipeline
# From YAML configuration
pipeline = Pipeline.from_yaml("pipeline.yml")
result = pipeline.run()
# Or use the builder pattern
from quicketl.config.models import FileSource, FileSink
from quicketl.config.transforms import FilterTransform, AggregateTransform
from quicketl.config.checks import NotNullCheck
pipeline = (
Pipeline("sales_summary", engine="duckdb")
.source(FileSource(path="data/sales.parquet"))
.transform(FilterTransform(predicate="amount > 0"))
.transform(AggregateTransform(
group_by=["region"],
aggs={"total": "sum(amount)", "count": "count(*)"},
))
.check(NotNullCheck(columns=["region"]))
.sink(FileSink(path="output/summary.parquet"))
)
result = pipeline.run()
print(result.summary())
Example Pipeline
name: sales_etl
engine: duckdb
source:
type: file
path: data/sales.parquet
transforms:
- op: filter
predicate: amount > 0
- op: derive_column
name: revenue
expr: quantity * unit_price
- op: aggregate
group_by: [region]
aggs:
total: sum(amount)
order_count: count(*)
checks:
- type: not_null
columns: [region, total]
- type: row_count
min: 1
sink:
type: file
path: output/summary.parquet
Multi-Source Join
name: orders_with_customers
engine: duckdb
sources:
orders:
type: file
path: data/orders.parquet
customers:
type: file
path: data/customers.parquet
transforms:
- op: join
right: customers
"on": [customer_id]
how: left
- op: select
columns: [order_id, customer_name, amount]
sink:
type: file
path: output/enriched_orders.parquet
Documentation
Full documentation, tutorials, and API reference at quicketl.com
License
MIT License - see LICENSE for details.
Release files for quicketl 1.6.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| quicketl-1.6.0.tar.gz | 492.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| quicketl-1.6.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 604.0 kB
Release files / quicketl-1.6.0.tar.gz
| Download URL | quicketl-1.6.0.tar.gz |
|---|---|
| Size | 492.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
c7e9d935999e556aea562133948bbb27ff133c823519234664429fdd67d075bd
|
|
BLAKE2b-256 checksum How to use checksums |
19efec076daed33cc6ebdc63d78c0eb50747163bffcfbc2eb371853ead8a212c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Feb 2, 2026.
Transparency logRelease files / quicketl-1.6.0-py3-none-any.whl
| Download URL | quicketl-1.6.0-py3-none-any.whl |
|---|---|
| Size | 111.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
35a9ea81f714d5587caede3a4f04e9eb130a28ff60b7f1454095ef19c35e63ff
|
|
BLAKE2b-256 checksum How to use checksums |
aceccc74262f7fd4752f3fcadbf380d07a801432e0ce11450cda24d638329e02
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.7
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Feb 2, 2026.
Transparency log