
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
|buildstatus|_ |coverage|_
Asyncio background tasks in Python 3.7 and later.
Run CPU intensive long running tasks without blocking the asyncio loop, implemented as a lightweight asyncio layer on top of the multiprocessing module.
Alternatively run tasks in other threads.
Project homepage: https://github.com/eerimoq/asyncbg
Documentation: https://asyncbg.readthedocs.org/en/latest
.. code-block:: python
pip install asyncbg
There are more examples in the examples folder
_.
Call work(a, b)
in another process. The script output is Result: 9
.
.. code-block:: python
import asyncio import asyncbg
def work(a, b): return a + b
async def main(): result = await asyncbg.call(work, 4, 5) print(f'Result: {result}')
asyncio.run(main())
Create a process pool with two workers, and call work()
three
times in it (up to two callbacks called in parallel).
.. code-block:: python
import asyncio import asyncbg
def work(): pass
async def main(): with asyncbg.ProcessPoolExecutor(max_workers=2) as pool: await asyncio.gather(pool.call(work), pool.call(work), pool.call(work))
asyncio.run(main())
Call work(a, b)
in another thread. The script output is Result: 9
.
.. code-block:: python
import asyncio import asyncbg
def work(a, b): return a + b
async def main(): result = await asyncbg.call_thread(work, 4, 5) print(f'Result: {result}')
asyncio.run(main())
Create a thread pool with two workers, and call work()
three times
in it (up to two callbacks called in parallel).
.. code-block:: python
import asyncio import asyncbg
def work(): pass
async def main(): with asyncbg.ThreadPoolExecutor(max_workers=2) as pool: await asyncio.gather(pool.call(work), pool.call(work), pool.call(work))
asyncio.run(main())
.. |buildstatus| image:: https://travis-ci.org/eerimoq/asyncbg.svg?branch=master .. _buildstatus: https://travis-ci.org/eerimoq/asyncbg
.. |coverage| image:: https://coveralls.io/repos/github/eerimoq/asyncbg/badge.svg?branch=master .. _coverage: https://coveralls.io/github/eerimoq/asyncbg
.. _examples folder: https://github.com/eerimoq/asyncbg/tree/master/examples
FAQs
Asyncio background tasks.
We found that asyncbg demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.