This file is indexed.

/usr/lib/python3/dist-packages/aioprocessing-1.0.0.egg-info/PKG-INFO is in python3-aioprocessing 1.0.0-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
Metadata-Version: 1.1
Name: aioprocessing
Version: 1.0.0
Summary:  A Python 3.3+ library that integrates the multiprocessing module with asyncio.
Home-page: https://github.com/dano/aioprocessing
Author: Dan O'Reilly
Author-email: oreilldf@gmail.com
License: BSD
Description-Content-Type: UNKNOWN
Description: aioprocessing
        =============
        [![Build Status](https://travis-ci.org/dano/aioprocessing.svg?branch=master)](https://travis-ci.org/dano/aioprocessing)
        
        
        `aioprocessing` provides asynchronous, [`asyncio`](https://docs.python.org/3/library/asyncio.html) compatible, coroutine 
        versions of many blocking instance methods on objects in the [`multiprocessing`](https://docs.python.org/3/library/multiprocessing.html) 
        library. Here's an example demonstrating the `aioprocessing` versions of 
        `Event`, `Queue`, and `Lock`:
        
        ```python
            import time
            import asyncio
            import aioprocessing
            import multiprocessing
        
        
            def func(queue, event, lock, items):
                """ Demo worker function.
        
                This worker function runs in its own process, and uses
                normal blocking calls to aioprocessing objects, exactly 
                the way you would use oridinary multiprocessing objects.
        
                """
                with lock:
                    event.set()
                    for item in items:
                        time.sleep(3)
                        queue.put(item+5)
                queue.close()
        
            @asyncio.coroutine
            def example(queue, event, lock):
                l = [1,2,3,4,5]
                p = aioprocessing.AioProcess(target=func, args=(queue, event, lock, l))
                p.start()
                while True:
                    result = yield from queue.coro_get()
                    if result is None:
                        break
                    print("Got result {}".format(result))
                yield from p.coro_join()
        
            @asyncio.coroutine
            def example2(queue, event, lock):
                yield from event.coro_wait()
                with (yield from lock):
                    yield from queue.coro_put(78)
                    yield from queue.coro_put(None) # Shut down the worker
        
            if __name__ == "__main__":
                loop = asyncio.get_event_loop()
                queue = aioprocessing.AioQueue()
                lock = aioprocessing.AioLock()
                event = aioprocessing.AioEvent()
                tasks = [
                    asyncio.async(example(queue, event, lock)), 
                    asyncio.async(example2(queue, event, lock)),
                ]
                loop.run_until_complete(asyncio.wait(tasks))
                loop.close()
        ```
        
        Python 3.5 syntax is supported, too. This means the `example2` function above 
        could look like this:
        
        ```python
            async def example2(queue, event, lock):
                await event.coro_wait()
                async with lock:
                    await queue.coro_put(78)
                    await queue.coro_put(None) # Shut down the worker
        ```
        
        The aioprocessing objects can be used just like their multiprocessing
        equivalents - as they are in `func` above - but they can also be 
        seamlessly used inside of `asyncio` coroutines, without ever blocking
        the event loop.
        
        
        How does it work?
        -----------------
        
        In most cases, this library makes blocking calls to `multiprocessing` methods
        asynchronous by executing the call in a [`ThreadPoolExecutor`](https://docs.python.org/3/library/concurrent.futures.html#threadpoolexecutor), using
        [`asyncio.run_in_executor()`](https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.BaseEventLoop.run_in_executor). 
        It does *not* re-implement multiprocessing using asynchronous I/O. This means 
        there is extra overhead added when you use `aioprocessing` objects instead of 
        `multiprocessing` objects, because each one is generally introducing a
        `ThreadPoolExecutor` containing at least one [`threading.Thread`](https://docs.python.org/2/library/threading.html#thread-objects). It also means 
        that all the normal risks you get when you mix threads with fork apply here, too 
        (See http://bugs.python.org/issue6721 for more info).
        
        The one exception to this is `aioprocessing.AioPool`, which makes use of the 
        existing `callback` and `error_callback` keyword arguments in the various 
        [`Pool.*_async`](https://docs.python.org/3/library/multiprocessing.html#multiprocessing.pool.Pool.apply_async) methods to run them as `asyncio` coroutines. Note that 
        `multiprocessing.Pool` is actually using threads internally, so the thread/fork
        mixing caveat still applies.
        
        Each `multiprocessing` class is replaced by an equivalent `aioprocessing` class,
        distinguished by the `Aio` prefix. So, `Pool` becomes `AioPool`, etc. All methods
        that could block on I/O also have a coroutine version that can be used with `asyncio`. For example, `multiprocessing.Lock.acquire()` can be replaced with `aioprocessing.AioLock.coro_acquire()`. You can pass an `asyncio` EventLoop object to any `coro_*` method using the `loop` keyword argument. For example, `lock.coro_acquire(loop=my_loop)`.
        
        Note that you can also use the `aioprocessing` synchronization primitives as replacements 
        for their equivalent `threading` primitives, in single-process, multi-threaded programs 
        that use `asyncio`.
        
        
        What parts of multiprocessing are supported?
        --------------------------------------------
        
        Most of them! All methods that could do blocking I/O in the following objects
        have equivalent versions in `aioprocessing` that extend the `multiprocessing`
        versions by adding coroutine versions of all the blocking methods.
        
        - `Pool`
        - `Process`
        - `Pipe`
        - `Lock`
        - `RLock`
        - `Semaphore`
        - `BoundedSemaphore`
        - `Event`
        - `Condition`
        - `Barrier`
        - `connection.Connection`
        - `connection.Listener`
        - `connection.Client`
        - `Queue`
        - `JoinableQueue`
        - `SimpleQueue`
        - All `managers.SyncManager` `Proxy` versions of the items above (`SyncManager.Queue`, `SyncManager.Lock()`, etc.).
        
        
        What versions of Python are compatible?
        ---------------------------------------
        
        `aioprocessing` will work out of the box on Python 3.4+, and will also work with Python
        3.3 if you install the [PyPI version](https://pypi.python.org/pypi/asyncio) of `asyncio`.
        
Keywords: asyncio multiprocessing coroutine
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules