Prev         Up         Next

The processing package

Author: R Oudkerk
Contact: r.m.oudkerk at gmail.com
Url:http://cheeseshop.python.org/pypi/processing

Description

The processing package is intended to be an analogue of the threading module, but using processes instead of threads. It runs on both Windows and Unix. A sub-package processing.dummy has the same API, but is a thin wrapper around threading.

Communication between processes is mainly acheive by passing messages over pipes or queues. Equivalents of all the synchronization primitives in threading are provided.

Data can be shared between processes either by using shared memory or by using proxies to objects in a server process.

Contents

See also