Python workflow management framework for building complex pipelines of batch jobs with dependency resolution and task scheduling.
72
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.
Install with Tessl CLI
npx tessl i tessl/pypi-luigidocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10