parallelize

Utilities for running functions in parallel


Keywords
parallel, multiprocessing, map, reduce, threading
License
Apache-2.0
Install
pip install parallelize==0.1

Documentation

Parallelize - Parallel Processing for Python

Methods

Map

import parallelize

def cube(x):
  return x*x*x

print parallelize.map(cube, [100, 999, 12321])

Filter

Reduce

TODO

  • Documentation
  • Major refactoring
  • Use multiprocessing?
  • Make decorators?