In [1]:
import pipeline as pl
pipeline = pl.get_pipeline('test_pipeline')
In [2]:
pipeline.add_command('cat <StepFile>', file_list=['hi.txt', 'bye.txt'])
In [3]:
pipeline['cat'].run_parallel()
In [4]:
print(pipeline)
In [5]:
print(pipeline['cat'])
In [6]:
print(pipeline['cat'].get_steps())