pipeline_runner module¶
- class pipeline_runner.ExecutionType(*values)[source]
Bases:
Enum
- PYTHON = 2
- SHELL = 1
- classmethod __contains__(value)
Return True if value is in cls.
value is in cls if: 1) value is a member of cls, or 2) value is the value of one of the cls’s members.
- classmethod __getitem__(name)
Return the member matching name.
- classmethod __iter__()
Return members in definition order.
- classmethod __len__()
Return the number of members (no aliases)
- __members__ = mappingproxy({'SHELL': <ExecutionType.SHELL: 1>, 'PYTHON': <ExecutionType.PYTHON: 2>})
- __module__ = 'pipeline_runner'
- __name__ = 'ExecutionType'
- __qualname__ = 'ExecutionType'
- pipeline_runner.main(cfg: HFEConfig)[source]
- pipeline_runner.standalone_execution_sequential(cfg: HFEConfig)[source]
Executes the pipeline in a standalone, sequential manner.
- Parameters:
cfg (HFEConfig) – Configuration object containing all necessary settings.
- Returns:
None