kedro.pipeline¶
kedro.pipeline
provides functionality to define and execute
data-driven pipelines.
kedro.pipeline.Pipeline (nodes[, name]) |
A Pipeline defined as a collection of Node objects. |
kedro.pipeline.node.Node (func, inputs, …) |
Node is an auxiliary class facilitating the operations required to run user-provided functions as part of Kedro pipelines. |
kedro.pipeline.node (func, inputs, outputs, *) |
Create a node in the pipeline by providing a function to be called along with variable names for inputs and/or outputs. |