NAMD / pypelinin

Python library to distribute jobs and pipelines among a cluster
3 stars 5 forks source link

Initial Pipeline API code #1

Closed felipecruz closed 11 years ago

felipecruz commented 11 years ago

Add support for build pipelines using | notation, such as:

pipeline = Worker('starter') | [Worker('a'), Worker('b')] | Worker('c')
turicas commented 11 years ago

I've migrated Manager's and Client's code from PyPLN to @turicas/pypelinin. This repo is still missing Broker's and Pipeliner's code -- I'm doing it right now, but Broker is more complex than others, so it can take some time. I'll do the merge of your code as soon as I have Broker and Pipeliner working outsite PyPLN.

felipecruz commented 11 years ago

If you create issues for missing tasks I could give it a try :)

turicas commented 11 years ago

I still need to change Pipeliner to accept pipelines in this new way, but your code is merged.

felipecruz commented 11 years ago

Great!!! :D