Skip to content

alexbrillant/python-multiprocessing-engine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

python-multiprocessing-engine

map_jobs

Parallelize jobs, return a DataFrame or Series

indicators = map_jobs(
    func=handle_task,
    molecules=('jobs', jobs),
    threads=8,
    batches=4
)

map_reduce_jobs

Parallelize jobs and combine them into a single output

indicators = map_reduce_jobs(
    redux=dict.update,
    redux_in_place=True,
    func=handle_task_dict,
    molecules=('jobs', jobs),
    threads=8,
    batches=4
)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages