Metadata-Version: 1.0
Name: poolmanager
Version: 0.0.2
Summary: Simple pool manager
Home-page: https://github.com/loicgasser/poolmanager
Author: Loic Gasser
Author-email: loicgasser4@gmail.com
License: MIT
Description: ===========
        poolmanager
        ===========
        
        [![Build Status](https://travis-ci.org/loicgasser/poolmanager.svg?branch=master)](https://travis-ci.org/loicgasser/poolmanager)
        [![Coverage Status](https://coveralls.io/repos/github/loicgasser/poolmanager/badge.svg?branch=master)](https://coveralls.io/github/loicgasser/poolmanager?branch=master)
        
        ## Simple pool manager implementation for unordered results
        
        poolmanager is compatible with python 2.6, 2.7.
        
        ### Usage
        
        `ctrl+c` will automatically terminate the main process and
        thus all the associated subprocesses. You'll need to wait for all the
        functions to finish their current execution before being able to stop
        all the processes. One can also easily create a callback function to monitor
        the computation state.
        
        
        ```python
        from poolmanager import PoolManager
        
        def add(x):
            return x + 1.5
        
        def callback(counter, result):
            print 'counter: %s' % counter
            print 'result: %s' % result
        
        def main():
            chunk = 2
            iterator = xrange(0, 10)
            pm = PoolManager(numProcs=2, factor=2, store=True)
            pm.imap_unordered(iterator, add, chunk, callback=callback)
        
        if __name__ == '__main__':
            main()
        
        >> counter: 1
        >> result: 1.5
        >> counter: 2
        >> result: 2.5
        >> counter: 3
        >> result: 5.5
        >> counter: 4
        >> result: 6.5
        >> counter: 5
        >> result: 7.5
        >> counter: 6
        >> result: 8.5
        >> counter: 7
        >> result: 3.5
        >> counter: 8
        >> result: 4.5
        >> counter: 9
        >> result: 9.5
        >> counter: 10
        >> result: 10.5
        
        print [i for i in iterator]
        print pm.results
        
        >> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
        >> [1.5, 2.5, 5.5, 6.5, 7.5, 8.5, 3.5, 4.5, 9.5, 10.5]
        
        ```
        
        ### Tests
        
        ```
        python setup.py test
        
        ```
        
        ####CONTRIBUTORS:
        
        - [Gilber Jeiziner](https://github.com/gjn)
        - [Loïc Gasser](https://github.com/loicgasser)
        
Platform: UNKNOWN
