Re: creating pipelines in python

2009-11-25 Thread Stefan Behnel
per, 25.11.2009 17:42: > Thanks to all for your replies. i want to clarify what i mean by a > pipeline. a major feature i am looking for is the ability to chain > functions or scripts together, where the output of one script -- which > is usually a file -- is required for another script to run.

Re: creating pipelines in python

2009-11-25 Thread per
Thanks to all for your replies. i want to clarify what i mean by a pipeline. a major feature i am looking for is the ability to chain functions or scripts together, where the output of one script -- which is usually a file -- is required for another script to run. so one script has to wait for t

Re: creating pipelines in python

2009-11-23 Thread Wolodja Wentland
On Sun, Nov 22, 2009 at 14:49 -0800, per wrote: > i am looking for a python package to make it easier to create a > "pipeline" of scripts (all in python). what i do right now is have a > set of scripts that produce certain files as output, and i simply have > a "master" script that checks at each s

Re: creating pipelines in python

2009-11-23 Thread Paul Rudin
per writes: > hi all, > > i am looking for a python package to make it easier to create a > "pipeline" of scripts (all in python). what i do right now is have a > set of scripts that produce certain files as output, and i simply have > a "master" script that checks at each stage whether the outpu

Re: creating pipelines in python

2009-11-23 Thread Robert Kern
per wrote: hi all, i am looking for a python package to make it easier to create a "pipeline" of scripts (all in python). what i do right now is have a set of scripts that produce certain files as output, and i simply have a "master" script that checks at each stage whether the output of the pre

Re: creating pipelines in python

2009-11-22 Thread Lie Ryan
per wrote: hi all, i am looking for a python package to make it easier to create a "pipeline" of scripts (all in python). what i do right now is have a set of scripts that produce certain files as output, and i simply have a "master" script that checks at each stage whether the output of the pre

creating pipelines in python

2009-11-22 Thread per
hi all, i am looking for a python package to make it easier to create a "pipeline" of scripts (all in python). what i do right now is have a set of scripts that produce certain files as output, and i simply have a "master" script that checks at each stage whether the output of the previous script