Kedro helps you build production-ready data and analytics pipelines
Overall
score
98%
A utility that enables selective execution of portions of a data pipeline based on specific input and output datasets.
@generates
def extract_pipeline_from_inputs(pipeline, input_names):
"""
Extract a subset of the pipeline starting from specified input datasets.
Args:
pipeline: A Kedro Pipeline object
input_names: A list of dataset names to start from
Returns:
A new Pipeline containing nodes that depend on the specified inputs
and all their downstream dependencies
"""
pass
def extract_pipeline_to_outputs(pipeline, output_names):
"""
Extract a subset of the pipeline required to produce specified outputs.
Args:
pipeline: A Kedro Pipeline object
output_names: A list of dataset names to produce
Returns:
A new Pipeline containing nodes required to produce the specified
outputs and all their upstream dependencies
"""
passProvides pipeline construction and filtering capabilities.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/pypi-kedro