Skip to main content

Prefetch elements from a Python generator in the background, from a separate process

Project description

A library to prefetch items from a Python generator in the background, using a separate process.

Install (no dependencies):

pip install multiprocessing_generator

Example:

from multiprocessing_generator import ParallelGenerator

def my_generator():
    while True:
        # ... download something long ...
        yield result

with ParallelGenerator(
   my_generator(),
   max_lookahead=100) as g:
     for elem in g:
          # ... do some heavy processing on that element ...

Up to 100 elements ahead of what is consumed will be fetched by the generator in the background, which is useful when the producer and the consumer do not use the same resources (for instance network vs. CPU).

The generator handles exceptions and more serious failures transparently.

Released under the MIT license.

See also: https://github.com/justheuristic/prefetch_generator

Project details


Download files

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

Source Distribution

multiprocessing-generator-0.2.tar.gz (3.9 kB view details)

Uploaded Source

File details

Details for the file multiprocessing-generator-0.2.tar.gz.

File metadata

File hashes

Hashes for multiprocessing-generator-0.2.tar.gz
Algorithm Hash digest
SHA256 ec68ae1ad4f79290c540ea370e8dc3aa281eb3a974fddbdfc03ab22828f3b7e8
MD5 fb8a23410c346f1627c5ed02eb2eb0dd
BLAKE2b-256 fc4cefbbb0e7b82ff884222a078f8a631f9b6975c0128225ff1c446e6a323ad8

See more details on using hashes here.

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