Metadata-Version: 1.1
Name: python-parallel-collections
Version: 0.2.1
Summary: parallel implementations of collections with support for map/reduce style operations
Home-page: https://github.com/gterzian/Python-Parallel-Collections
Author: Gregory Terzian
Author-email: gregory.terzian@gmail.com
License: BSD License
Description: 
            New in 0.2: a convenient functional interface to the module! 
            
            This package provides a convenient interface to perform map/filter/reduce style operation on standard Python data structures and generators in multiple processes.
            The parallelism is achieved using the Python 2.7 backport of the concurrent.futures package.
            If you can define your problem in terms of map/reduce/filter operations, it will run on several parallel Python processes on your machine, taking advantage of multiple cores. 
            Otherwise these datastructures are equivalent to their non-parallel peers found in the standard library.
            
        
            Examples at https://github.com/gterzian/Python-Parallel-Collections
            Feedback and contributions highly sought after!
Platform: any
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: System :: Distributed Computing
Requires: futures
