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
Release history Release notifications | RSS feed
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 multiprocesspool-0.0.1.tar.gz
.
File metadata
- Download URL: multiprocesspool-0.0.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db181f970bb6bcf4081afb4bc4b77c4f0ced58eb984d87014f3fa0292f7d503e |
|
MD5 | af9a5e7a64c94d8954a9a74b8e042b02 |
|
BLAKE2b-256 | f0476be3ec3af3a862dd334722aa58f0ed6ecea0d287858ad98c65ccb4985bd3 |