Metadata-Version: 1.0
Name: chainz
Version: 0.1
Summary: Lightweight chaining functional methods for iterables
Home-page: http://github.com/jagill/python-chainz
Author: James Gill
Author-email: jamesagill@gmail.com
License: MIT
Description: Chainz
        ======
        
        Chainz is a lightweight library to provide chaining, functional methods to
        iterables.
        
        To install: `pip install chainz`
        
        Example:
        ```python
        from chainz import Chain
        
        Chain(xrange(10))\
            .map(lambda x: x + 1)\
            .filter(lambda x: x % 2 == 0)\
            .omit(lambda x: x % 3 == 0)\
            .reduce(lambda x, y: x + y)
        # 30
        ```
        
Keywords: iterable generators functional map filter reduce
Platform: UNKNOWN
