Metadata-Version: 1.0
Name: pipe
Version: 1.3
Summary: Module enablig a sh like infix syntax (using pipes)
Home-page: https://github.com/JulienPalard/Pipe
Author: Julien Palard
Author-email: julien@palard.fr
License: UNKNOWN
Download-URL: https://github.com/JulienPalard/Pipe/tarball/master
Description: Pipe is a module enablig a sh like infix syntax (using pipes)'.
        
        As an exemple, here is the solution for the 2nd Euler Project exercise :
        
        "Find the sum of all the even-valued terms in Fibonacci
         which do not exceed four million."
        
        Given fib a generator of fibonacci numbers ::
        
            euler2 = fib() | where(lambda x: x % 2 == 0)
                           | take_while(lambda x: x < 4000000)
                           | add
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
