richpool
| Versions | |
| Status | |
| Tools | |
| License |
richpool is a kind of fork that mixes both p_tqdm and schwimmbad into one standalone library, with progress bars rendered natively by rich instead of tqdm. It has no dependency on tqdm, p_tqdm, or schwimmbad.
Since, both p_tqdm and schwimmbad are effectively unmaintained, richpool reimplements what both projects offer, aiming to be the successor to both, with the added functionality of a native rich progress bar.
It gives you two ways to run parallel work, both with a rich progress bar by default:
- A
schwimmbad-style pool interface:SerialPool,MultiPool,JoblibPool,MPIPool, selected viachoose_pool(), each with a uniform.map()method. This mirrors all four pool types in schwimmbad. - A
p_tqdm-style functional interface:p_map,p_imap,p_umap,p_uimap,t_map,t_imap. No pool object to create or manage.
Installation
uv pip install richpool
MPIPool needs mpi4py (also needs a system MPI, e.g. OpenMPI/MPICH) installed too. Everything else (SerialPool, MultiPool, JoblibPool, the functional API) works out of the box:
uv pip install "richpool[mpi]"
Pool interface (schwimmbad)
from richpool import choose_pool
def square(x):
return x * x
with choose_pool(processes=4) as pool:
results = pool.map(square, range(20), desc="squaring")
# results == [0, 1, 4, ..., 361]
choose_pool(mpi=False, processes=1, **kwargs) picks a pool:
mpi=TruepicksMPIPoolprocesses != 1picksMultiPool(backed bypathos.multiprocessing.ProcessPool)- otherwise picks
SerialPool
All four pool classes share the same .map() interface:
pool.map(func, iterable, callback=None, desc="", total=None, disable=False)
callback: optional, called on the master process with each individual result as it completes (same contract as schwimmbad'scallback).desc: progress bar description.total: override the progress bar total (inferred fromlen(iterable)when omitted).disable: suppress the progress bar.
You can also instantiate pools directly:
from richpool import SerialPool, MultiPool, JoblibPool, MPIPool
SerialPool()
MultiPool(processes=8)
JoblibPool(processes=8, backend="loky") # any joblib.Parallel kwargs
MPIPool() # run script with: mpiexec -n 4 python script.py
MPIPool notes
MPIPool distributes tasks across MPI ranks using mpi4py. Only the master process (rank 0) returns from map() with results and renders the progress bar; other ranks block in a worker loop and map() returns None for them. Launch scripts with mpiexec/mpirun:
from richpool import choose_pool
def square(x):
return x * x
with choose_pool(mpi=True) as pool:
if pool.is_master():
results = pool.map(square, range(20), desc="squaring")
print(results)
mpiexec -n 4 python script.py
Needs at least 2 MPI ranks (1 master + >=1 worker).
Functional interface (p_tqdm)
No pool to create, just call the function:
from richpool import p_map, p_umap, t_map
def add(a, b):
return a + b
p_map(add, [1, 2, 3], [10, 20, 30]) # parallel, ordered: [11, 22, 33]
p_umap(add, [1, 2, 3], [10, 20, 30]) # parallel, unordered: e.g. [22, 11, 33]
t_map(add, [1, 2, 3], [10, 20, 30]) # sequential, ordered: [11, 22, 33]
p_map/p_imap: parallel ordered map / iterator.p_umap/p_uimap: parallel unordered map / iterator (results as they complete).t_map/t_imap: sequential map / iterator.
All accept num_cpus (int, or float as a proportion of available CPUs), total, desc, disable, and chunksize keyword arguments.
from functools import partial
from richpool import p_map
def add(a, b, c=0):
return a + b + c
p_map(partial(add, c=1), [1, 2, 3], [10, 20, 30], num_cpus=0.5, desc="adding")
Examples
Every pool and every functional map has a minimal, runnable example under examples/:
python examples/serial_pool_example.py
python examples/multi_pool_example.py
python examples/joblib_pool_example.py
mpiexec -n 4 python examples/mpi_pool_example.py
python examples/functional_pmap_example.py
python examples/functional_pimap_example.py
python examples/functional_pumap_example.py
python examples/functional_puimap_example.py
python examples/functional_tmap_example.py
python examples/functional_timap_example.py
See them run with their real output, progress bar included, on the examples page of the docs.
Credits
Parts of richpool's code and docs are adapted directly from schwimmbad (Copyright (c) 2016 Adrian Price-Whelan) and p_tqdm (Copyright (c) 2024 Kyle Swanson), both MIT licensed. See THIRD_PARTY_NOTICES.md for their original license text.
License
MIT, see LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file richpool-0.1.2.tar.gz.
File metadata
- Download URL: richpool-0.1.2.tar.gz
- Upload date:
- Size: 16.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06b41551dc98d8214434d5b00f3a3cb5aeae16bd18e091c2c14fb789f0de2795
|
|
| MD5 |
2d0458eb754a3e971bfb443638437da8
|
|
| BLAKE2b-256 |
76112d1157d711e7033f0d31915d12d283d5b0500bf7d19c733751add35bfe6d
|