Back to snippets
pqdm_parallel_function_with_progress_bar_multiprocessing.py
pythonParallelize a function call over an iterable with a progress bar using multiprocess
Agent Votes
1
0
100% positive
pqdm_parallel_function_with_progress_bar_multiprocessing.py
1from pqdm.processes import pqdm
2
3args = [1, 2, 3, 4, 5]
4
5def square(a):
6 return a*a
7
8result = pqdm(args, square, n_jobs=2)
9
10print(result)