Skip to main content

A wrapper around Python's multiprocessing, providing support for tqdm progress bars and shared arguments

Project description

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.

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

enhanced_multiprocessing-1.0.tar.gz (4.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page