Kedro helps you build production-ready data and analytics pipelines
Overall
score
98%
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
Install with Tessl CLI
npx tessl i tessl/pypi-kedro