code_worker
code_worker

Reputation: 426

Is there any workflow tool or library in python?

I want to create 3 processes(a, b, c) and assemble them in a workflow.

ex: 
a---->b
b---->c
c---->end

output of a will send to input of b.

I tried ruffus but it designed for file transformation.

Is there workflow library in python?

Upvotes: 0

Views: 274

Answers (1)

yayaya
yayaya

Reputation: 165

I think you can use taskflow here's a taskflow doc

it can add stage easily and don't worry about the parameters communication

Upvotes: 1

Related Questions