Multiprocessing framework.
Project description
===========
forkpy
===========
Forkpy provides a framework for multiprocessing in Python. Typical usage
often looks like this:
from forkpy import Factory, Task
factory = Factory()
for _ in range(100):
factory.assign(Task())
factory.start()
factory.join()
print(factory.results)
forkpy
===========
Forkpy provides a framework for multiprocessing in Python. Typical usage
often looks like this:
from forkpy import Factory, Task
factory = Factory()
for _ in range(100):
factory.assign(Task())
factory.start()
factory.join()
print(factory.results)
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.1.tar.gz
(2.8 kB
view hashes)
Built Distribution
forkpy-0.0.1-py3-none-any.whl
(4.2 kB
view hashes)