Reputation: 426
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
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