asyncio version of the standard multiprocessing module
Project description
aiomultiprocess
Take a modern Python codebase to the next level of performance.
On their own, AsyncIO and multiprocessing are useful, but limited: AsyncIO still can't exceed the speed of GIL, and multiprocessing only works on one task at a time. But together, they can fully realize their true potential.
aiomultiprocess presents a simple interface, while running a full AsyncIO event loop on each child process, enabling levels of concurrency never before seen in a Python application. Each child process can execute multiple coroutines at once, limited only by the workload and number of cores available.
Gathering tens of thousands of network requests in seconds is as easy as:
async with Pool() as pool:
results = await pool.map(<coroutine>, <items>)
For more context, watch the PyCon US 2018 talk about aiomultiprocess, "Thinking Outside the GIL":
Install
aiomultiprocess requires Python 3.6 or newer. You can install it from PyPI:
$ pip3 install aiomultiprocess
Usage
Most of aiomultiprocess mimics the standard multiprocessing module whenever possible, while accounting for places that benefit from async functionality.
Executing a coroutine on a child process is as simple as:
from aiohttp import request
from aiomultiprocess import Process
async def fetch(url):
return await request("GET", url)
p = Process(target=fetch, args="https://jreese.sh")
await p
If you want to get results back from that coroutine, Worker
makes that available:
from aiohttp import request
from aiomultiprocess import Worker
async def fetch(url):
return await request("GET", url)
p = Worker(target=fetch, args="https://jreese.sh")
response = await p
If you want a managed pool of worker processes, then use Pool
:
from aiohttp import request
from aiomultiprocess import Pool
async def fetch(url):
return await request("GET", url)
urls = ["https://jreese.sh", ...]
async with Pool() as pool:
result = await pool.map(fetch, urls)
License
aiomultiprocess is copyright John Reese, and licensed under
the MIT license. I am providing code in this repository to you under an open
source license. This is my personal repository; the license you receive to
my code is from me and not from my employer. See the LICENSE
file for details.
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 aiomultiprocess-0.5.0.tar.gz
.
File metadata
- Download URL: aiomultiprocess-0.5.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98de93bed092aa4cf7986ff9be72c6a0ec56ffb0d9dfb9320786a10bedace0bc |
|
MD5 | 0521f456aa99c4d0b399f6d0f31efab6 |
|
BLAKE2b-256 | 8d5704580f7b361fc41c28311e80ae59b54aa29cc04ca8a16840edc1107adfd1 |