kedro.pipeline

Description

kedro.pipeline provides functionality to define and execute data-driven pipelines.

Functions

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.

kedro.pipeline.modular_pipeline.pipeline(pipe, *)

Create a Pipeline from a collection of nodes and/or Pipelines.

Classes

kedro.pipeline.Pipeline(nodes, *[, tags])

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.

Modules

Exceptions

kedro.pipeline.modular_pipeline.ModularPipelineError

Raised when a modular pipeline is not adapted and integrated appropriately using the helper.