tessl install tessl/pypi-kedro@1.1.0Kedro helps you build production-ready data and analytics pipelines
Agent Success
Agent success rate when using this tile
98%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.32x
Baseline
Agent success rate without this tile
74%
A command-line utility that executes data pipelines with configurable environments and runtime parameters.
Create a script that initializes a pipeline session and executes it with configurable options.
@generates
def execute_pipeline(env: str = None, pipeline_name: str = None, runtime_params: dict = None) -> dict:
"""
Execute a Kedro pipeline with specified configuration.
Args:
env: The environment to run in (e.g., "local", "production"). If None, uses default.
pipeline_name: Name of the pipeline to execute. If None, runs the default pipeline.
runtime_params: Dictionary of runtime parameters to override configuration values.
Returns:
A dictionary containing the session_id and run status information.
"""
passProvides pipeline session management and execution capabilities.
@satisfied-by