A wrapper around Python’s multiprocessing, providing support for tqdm progress bars and shared arguments.
Provides simple, familiar interface with addiitonal superpowers.
Installation
pip install enhanced_multiprocessing
Example usage
from enhanced_multiprocessing import Pool
def add_n(x, n):
return x + n
# the number of processes will be set to number of cores - 1 by default
p = Pool()
# will apply add_n to the element list of length three with n=5, showing a nice progress bar along
result = p.imap(add_n, [1, 2, 3], shared_args=(5, ))
assert list(result) == [6, 7, 8]
History
Originally published at kn-bibs/pathways-analysis, then further developed for krassowski/drug-disease-profile-matching.
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 enhanced_multiprocessing-1.0.tar.gz.
File metadata
- Download URL: enhanced_multiprocessing-1.0.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a44c38486941f2d4c375d3de60d824f81854192604c3702462212cdf465d0a7
|
|
| MD5 |
b972eb32832015280c72cdd5b336987d
|
|
| BLAKE2b-256 |
8a91b02bedf6210cdb67553c65e245c720280cefadbb9cf795af50159a7e8e13
|