freshcrate
Skin:/
Home > Frameworks > aiomultiprocess

aiomultiprocess

AsyncIO version of the standard multiprocessing module

Why this rank:Strong adoptionRelease freshnessHealthy release cadence

Description

aiomultiprocess =============== Take a modern Python codebase to the next level of performance. [![version](https://img.shields.io/pypi/v/aiomultiprocess.svg)](https://pypi.org/project/aiomultiprocess) [![documentation](https://readthedocs.org/projects/aiosqlite/badge/?version=latest)](https://aiomultiprocess.omnilib.dev) [![changelog](https://img.shields.io/badge/change-log-blue)](https://aiomultiprocess.omnilib.dev/en/latest/changelog.html) [![license](https://img.shields.io/pypi/l/aiomultiprocess.svg)](https://github.com/omnilib/aiomultiprocess/blob/master/LICENSE) [![build status](https://github.com/omnilib/aiomultiprocess/workflows/Build/badge.svg)](https://github.com/omnilib/aiomultiprocess/actions) [![code coverage](https://img.shields.io/codecov/c/gh/omnilib/aiomultiprocess)](https://codecov.io/gh/omnilib/aiomultiprocess) [![code style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black) 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: ```python async with Pool() as pool: results = await pool.map(<coroutine function>, <items>) ``` Install ------- aiomultiprocess requires Python 3.6 or newer. You can install it from PyPI: ```bash $ pip3 install aiomultiprocess ``` Usage ----- Most of aiomultiprocess mimics the standard multiprocessing module whenever possible, while accounting for places that benefit from async functionality. Running your asynchronous jobs on a pool of worker processes is easy: ```python import asyncio from aiohttp import request from aiomultiprocess import Pool async def get(url): async with request("GET", url) as response: return await response.text("utf-8") async def main(): urls = ["https://noswap.com", ...] async with Pool() as pool: async for result in pool.map(get, urls): ... # process result if __name__ == '__main__': # Python 3.7 asyncio.run(main()) # Python 3.6 # loop = asyncio.get_event_loop() # loop.run_until_complete(main()) ``` Take a look at the [User Guide][] for more details and examples. For further context, watch the PyCon US 2018 talk about aiomultiprocess, ["Thinking Outside the GIL"][pycon-2018]: > [![IMAGE ALT TEXT](http://img.youtube.com/vi/0kXaLh8Fz3k/0.jpg)](http://www.youtube.com/watch?v=0kXaLh8Fz3k "PyCon 2018 - Amethyst Reese - Thinking Outside the GIL with AsyncIO and Multiprocessing") Slides available at [Speaker Deck](https://speakerdeck.com/jreese/thinking-outside-the-gil-2). License ------- aiomultiprocess is copyright [Amethyst Reese](https://noswap.com), 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. [User Guide]: https://aiomultiprocess.omnilib.dev/en/latest/guide.html [pycon-2018]: https://www.youtube.com/watch?v=0kXaLh8Fz3k

Release History

VersionChangesUrgencyDate
0.9.1Imported from PyPI (0.9.1)Low4/21/2026
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
main@2024-08-20Latest activity on main branchLow8/20/2024
v0.9.1Tag v0.9.1Low4/23/2024
v0.9.0Tag v0.9.0Low3/1/2021
v0.8.0Tag v0.8.0Low7/27/2020
v0.7.0Tag v0.7.0Low11/21/2019
v0.6.1Tag v0.6.1Low8/20/2019
v0.6.0Tag v0.6.0Low7/25/2019
v0.5.0Tag v0.5.0Low12/28/2018
v0.4.0Tag v0.4.0Low5/15/2018
v0.3.0Tag v0.3.0Low4/10/2018
v0.2.0Tag v0.2.0Low4/9/2018

Dependencies & License Audit

Loading dependencies...

Similar Packages

schemathesisProperty-based testing framework for Open API and GraphQL based appsv4.21.1
ctranslate2Fast inference engine for Transformer modelsv4.8.0
cadwynProduction-ready community-driven modern Stripe-like API versioning in FastAPI7.0.0
tqdmFast, Extensible Progress Meterv4.68.1
inspect-aiFramework for large language model evaluationsmain@2026-06-05

More from pypi

markitdownUtility tool for converting various files to Markdown
fastapiFastAPI framework, high performance, easy to learn, fast to code, ready for production
djangoA high-level Python web framework that encourages rapid development and clean, pragmatic design.
flaskA simple framework for building complex web applications.

More in Frameworks

schemathesisProperty-based testing framework for Open API and GraphQL based apps
spec_driven_developSpec-Driven Develop is a platform-agnostic AI agent skill that automates the pre-development workflow for large-scale complex tasks. It is not a framework, not a runtime, not a package manager — it is
DrasilGenerate all the things (focusing on research software)
langchainThe agent engineering platform