Last updated:
0 purchases
parallelpy 0.0.4
parallelpy
A minimal parallel processing module for data science applications
pip install parallelpy
from parallelpy import Parallelizer
parallelizer = Parallelizer(
target=print,
args=[i for i in range(100)],
enable_results=False,
auto_proc_count=True,
max_proc_count=8
)
parallelizer.run()
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.