Framework for modeling, orchestrating,and executing ETL pipelines in a controlled environment.
Project description
Fragua
Fragua is a lightweight Python framework designed to model, validate, and execute ETL logic in a fully controlled, in-memory environment.
It provides an explicit and minimal execution model where ETL functions, declarative pipelines, and macros are composed and executed deterministically — without schedulers, persistence layers, or external infrastructure.
Fragua intentionally prioritizes clarity over completeness.
Purpose
Fragua exists to answer a focused set of development-time questions:
Does this ETL function behave as expected?
Does this declarative pipeline produce the correct result when executed?
Fragua is not a workflow orchestrator nor a production ETL engine.
It is a developer-oriented framework for designing, validating, and reasoning about ETL logic during development.
Core Model
Fragua is built around a small number of orthogonal, loosely coupled components with strictly defined responsibilities.
1. FraguaSet
A FraguaSet is a logical container for executable definitions.
- Stores named callable ETL functions
- Stores declarative pipeline definitions (
dict[str, Any]) - Groups items by purpose (e.g.
extract,transform,load,pipelines) - Contains no execution logic
- Can optionally expose its functions as step templates
A set is purely an organizational and lookup construct.
2. FraguaRegistry
The registry is a resolution layer.
- Holds multiple
FraguaSetinstances - Resolves functions by
(set_name, function_name)at runtime - Resolves pipeline definitions by name
- Performs no execution or compilation
The registry enables flexible composition without hard-coded dependencies.
3. FraguaStep
A FraguaStep represents a single declarative execution unit.
- References a function by
(set, function) - Declares execution parameters
- Optionally consumes the output of a previous step
- Stores its result under a logical key (
save_as)
A step defines what should happen, not how it happens.
3.1 FraguaStepBuilder
A FraguaStepBuilder is a mutable builder used to construct immutable FraguaStep objects.
- Provides a fluent configuration API
- Supports method chaining (
with_params,with_use,with_save_as) - Produces immutable steps via
.build() - Enables safe and incremental step composition
Builders reduce boilerplate while preserving immutability.
3.2 FraguaStepIndex
A FraguaStepIndex is a template registry for step builders.
- Stores
FraguaStepBuildertemplates by name - Returns fresh builder instances on access
- Is populated automatically from
FraguaSetdefinitions - Is consumed exclusively by macros
This enables reusable step patterns without implicit behavior.
4. Declarative Pipelines
Pipelines in Fragua are pure declarative definitions, represented as dictionaries.
{
"name": "daily_sales",
"steps": [
{"set": "extract", "function": "read_csv"},
{"set": "transform", "function": "clean_data"},
{"set": "load", "function": "write_db"},
]
}
Key characteristics:
- Pipelines are editable, replaceable, and updateable
- They contain no runtime state
- They are compiled into
FraguaPipelineobjects only at execution time - Compilation expands macros and validates dependencies
Runtime pipelines are ephemeral and never persisted.
5. FraguaPipeline (Runtime Artifact)
A FraguaPipeline is a compiled execution plan.
- Contains an ordered list of
FraguaStep - Is produced from a declarative definition
- Is executed by the agent
- Is discarded after execution
It exists only at runtime.
6. FraguaAgent
The agent is a stateless execution primitive.
- Receives a compiled pipeline
- Resolves functions via the registry
- Executes steps sequentially
- Produces a
FraguaBoxwith results
The agent holds no state between runs.
7. FraguaWarehouse
The warehouse is an in-memory result store.
- Stores execution outputs
- Indexed by
save_as - Intended for inspection, debugging, and assertions
The warehouse exists only during runtime.
8. FraguaEnvironment
The environment is the orchestration boundary of Fragua.
It owns exactly one:
FraguaRegistryFraguaAgentFraguaWarehouseFraguaStepIndex
It provides high-level APIs to:
- Create and register sets
- Register functions and pipeline definitions
- Automatically index step builders from sets
- Compile declarative pipelines (with macro expansion)
- Execute pipelines from multiple representations
- Update or replace pipeline definitions
- Inspect execution results
The environment enables structure without enforcing it.
Macros and Step Composition
Macros (e.g. transform_chain) expand into multiple steps automatically.
- Macros consume only
FraguaStepBuildertemplates from theStepIndex - Expansion happens at compile time
- The final macro step may expose a
save_askey for downstream use
Macros are declarative and deterministic.
Execution Entry Point
Fragua exposes a single execution API:
env.execute_pipeline(pipeline)
Supported inputs:
FraguaPipeline→ executed directlystr→ resolved from registry, compiled, then executeddict→ compiled inline, then executed
This unifies execution flow and removes ambiguity.
Typical Workflow
- Create an environment
- Define one or more
FraguaSet - Register functions into sets
- Register declarative pipeline definitions
- Optionally update or replace pipeline definitions
- Execute pipelines
- Inspect results from the warehouse
Design Principles
- Minimalism — no feature without a clear purpose
- Explicitness — no hidden behavior
- Single Responsibility — each component does one thing
- Declarative First — definitions before execution
- Runtime Only — no persistence, no side effects
What Fragua Is Not
Fragua is not:
- A scheduler
- A workflow orchestrator
- A production ETL engine
- A data platform
Fragua is a development framework for ETL design, validation, and reasoning.
License
MIT 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 fragua-1.6.1.tar.gz.
File metadata
- Download URL: fragua-1.6.1.tar.gz
- Upload date:
- Size: 19.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3318642e990b15ed5770ab301da5fe1ea7bdcef3cb816899fab3034246adc555
|
|
| MD5 |
f15a8140a1e5bacd8f11a7f1cb806820
|
|
| BLAKE2b-256 |
33237cc65b875562ff1ab207f40d7253ebd35d65945baf77026b9c738936e472
|
File details
Details for the file fragua-1.6.1-py3-none-any.whl.
File metadata
- Download URL: fragua-1.6.1-py3-none-any.whl
- Upload date:
- Size: 24.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9589dcccc53e97cfb5a83b97d3df76fdb5db4a3d36454862ef31ec2adfb8ee82
|
|
| MD5 |
f8d05887908da44edac6dfb8a8166055
|
|
| BLAKE2b-256 |
8f16c64dbc6753e708152b4078920cb6dddb2dde903721e276232c021751a874
|