Metadata-Version: 1.0
Name: processing
Version: 0.10
Summary: Package for using processes which mimics the threading module
Home-page: http://cheeseshop.python.org/processing
Author: Richard Oudkerk
Author-email: r.m.oudkerk at gmail.com
License: BSD License
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 named pipes.
        
        The 'processing.Process' class follows the API of 'threading.Thread'.
        One can also use a 'manager' to create shared objects.  For instance
        
        >>> from processing import Manager, Repr
        >>> manager = Manager()
        >>> l = manager.list(range(10))
        >>> l.reverse()
        >>> print l
        <Proxy[list] object at 0x00c33470)>
        >>> print Repr(l)
        [9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
        
Platform: Unix and Windows
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Programming Language :: Python
