Yahoo! Pipes are translated into Python generators (pipelines) which should give a close match to the original data flow. Each call to the final generator will ripple through the pipeline issuing .next() calls until the source is exhausted. The modules are topologically sorted to give their creation order. The main output and inputs are connected via the yielded values and the first parameter. Oth

