tessl install tessl/pypi-luigi@2.8.0Python workflow management framework for building complex pipelines of batch jobs with dependency resolution and task scheduling.
Agent Success
Agent success rate when using this tile
72%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.31x
Baseline
Agent success rate without this tile
55%
Build a command-line utility that runs a tiny two-stage data pipeline using the package's execution entrypoints. The pipeline has an upstream task that materializes a small dataset and a downstream task that consumes that dataset. The runner must support both embedded execution and coordination with a central scheduler.
--local-only) executes the upstream task before the downstream task and exits with code 0 once both succeed. @test@generates
def main(argv: list[str] | None = None) -> int:
"""Entry point for invoking the pipeline runner from CLI; returns process exit code."""Provides task definitions, dependency resolution, scheduler coordination, and CLI/build entrypoints.