lw_pipeline.Pipeline_Step#

class lw_pipeline.Pipeline_Step(description, config, short_id='')[source]#

Bases: ABC

Abstract class for a pipeline step.

__init__(description, config, short_id='')[source]#

Methods

__init__(description, config[, short_id])

step(data)

Abstract method to be implemented by the pipeline step.

Attributes

config

Configuration of the pipeline step.

short_id

Short id of the pipeline step.

property config#

Configuration of the pipeline step.

property short_id#

Short id of the pipeline step.

abstractmethod step(data)[source]#

Abstract method to be implemented by the pipeline step.