processing 0.20
pip install processing==0.20
Released:
Package for using processes which mimics the threading module
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD Licence
- Author: R Oudkerk
Classifiers
- Development Status
- Environment
- Intended Audience
- Programming Language
Project description
Package for using processes which mimics the threading module, and allows the sharing of objects between processes. Communication between processes happens via sockets or (on Windows) named pipes.
The processing.Process class follows the API of threading.Thread. One can also use a manager to create shared objects. The types supported by default are
Lock, RLock, Condition, Event, Semaphore, BoundedSemaphore, Queue, list, dict, Namespace.
For example:
>>> from processing import Manager >>> manager = Manager() >>> l = manager.list(range(10)) >>> l.reverse() >>> print l [9, 8, 7, 6, 5, 4, 3, 2, 1, 0] >>> print repr(l) <Proxy[list] object at 0x00E1B3B0>
After installation you can run the test scripts by doing either
python -m processing.test
on Python 2.5 or
python -c "from processing.test import main; main()"
on earlier versions. This will run each test script twice: once using processes and once using threads.
See README.txt and doc/index.html for more information.
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: BSD Licence
- Author: R Oudkerk
Classifiers
- Development Status
- Environment
- Intended Audience
- Programming Language
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
Built Distributions
File details
Details for the file processing-0.20.zip
.
File metadata
- Download URL: processing-0.20.zip
- Upload date:
- Size: 66.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e4f84646131ce41e9542e493f69ca40c13cfce530f410faf7fe9350589f45b22 |
|
MD5 | 97a947d332068ccc5fd5b2b76e9882bd |
|
BLAKE2b-256 | a1207886b5d206662bd897070ea925d1b8ad6a378800bbaac760851506fca146 |
File details
Details for the file processing-0.20.win32-py2.5.exe
.
File metadata
- Download URL: processing-0.20.win32-py2.5.exe
- Upload date:
- Size: 116.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc93423f91cedca9b28cea6f5ab1481457c57c6f294ff6e140923b001ade7dd0 |
|
MD5 | 2e7772f2f46c5b5a2bb0438f8d97ee30 |
|
BLAKE2b-256 | 0bbfd0a29775f24ee4bac9f1af4ea74714a8c78848b6aa3a405f6ccd0ffec87d |
File details
Details for the file processing-0.20.win32-py2.4.exe
.
File metadata
- Download URL: processing-0.20.win32-py2.4.exe
- Upload date:
- Size: 112.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67a4a2600937dd9e9796b82a9884f5944ff8371e115f0f188b10c5622515e0a1 |
|
MD5 | 29bd6bcab77ce69e1f73aacc7f69a658 |
|
BLAKE2b-256 | 146fbdadb60c1c33fa284ed9356ec3d69b4a45ee0758bca1e640d86fef777f50 |