Skip to main content

Use multiples process to do operations on a list

Project description

MultiProcessPool have for purpose to use all core of a processor. The usual Pool is restrict by Python’s Global Interpreter Lock (GIL).

This example of use:

def double(value):

return value * 2

def queueop(value, vallistres):

vallistres.append(value)

return vallistres

if __name__ == “__main__”:

pp = MultiProcessPool(double, [ i for i in range(0,100) ], queueop, [])

print sorted(pp.run(4))

Will give a list of double value of the list in parameter.

To import it do:

from multiprocesspool.multiprocesspool import MultiProcessPool

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

multiprocesspool-0.0.1.tar.gz (3.8 kB view details)

Uploaded Source

File details

Details for the file multiprocesspool-0.0.1.tar.gz.

File metadata

File hashes

Hashes for multiprocesspool-0.0.1.tar.gz
Algorithm Hash digest
SHA256 db181f970bb6bcf4081afb4bc4b77c4f0ced58eb984d87014f3fa0292f7d503e
MD5 af9a5e7a64c94d8954a9a74b8e042b02
BLAKE2b-256 f0476be3ec3af3a862dd334722aa58f0ed6ecea0d287858ad98c65ccb4985bd3

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