Multiprocessing framework.
Project description
forkpy provides a framework for multiprocessing in Python. Typical usage might look like this:
from forkpy import Factory, Task def target_function(args, worker): a, b = args return a + b factory = Factory() for a in range(100): for b in range(100): args = (a, b) factory.assign(Task(args, target_function)) factory.start() factory.join() print(factory.results)
Sources
See the project on GitHub.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
forkpy-0.0.3.tar.gz
(3.0 kB
view hashes)
Built Distribution
forkpy-0.0.3-py3-none-any.whl
(4.5 kB
view hashes)