My favorites | Sign in
Project Logo
                
Show all Featured wiki pages:
FeatureOverview
People details
Project owners:
  ubanus@users.sf.net

python-pipeline lets you create pipelines of iterators.

Example:

>>> from pipeline import *
>>> xrange(-10, 10) | grep(lambda x: x % 3 == 2) | (x * (x + 1) for x in STDIN) | list
[90, 42, 12, 0, 6, 30, 72]








Hosted by Google Code