Introduction
By design asyncio does not allow its event loop to be nested. This presents a practical problem: When in an environment where the event loop is already running it’s impossible to run tasks and wait for the result. Trying to do so will give the error “RuntimeError: This event loop is already running”.
The issue pops up in various environments, such as web servers, GUI applications and in Jupyter notebooks.
This module patches asyncio to allow nested use of asyncio.run and loop.run_until_complete.
Installation
pip3 install nest_asyncio
Python 3.5 or higher is required.
Usage
import nest_asyncio
nest_asyncio.apply()
Optionally the specific loop that needs patching can be given as argument to apply, otherwise the current event loop is used. An event loop can be patched whether it is already running or not. Only event loops from asyncio can be patched; Loops from other projects, such as uvloop or quamash, generally can’t be patched.
Release files for nest-asyncio 1.5.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| nest_asyncio-1.5.6.tar.gz | 7.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| nest_asyncio-1.5.6-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:12.7 kB
Release files / nest_asyncio-1.5.6.tar.gz
| Download URL | nest_asyncio-1.5.6.tar.gz |
|---|---|
| Size | 7.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d267cc1ff794403f7df692964d1d2a3fa9418ffea2a3f6859a439ff482fef290
|
|
BLAKE2b-256 checksum How to use checksums |
357664c51c1cbe704ad79ef6ec82f232d1893b9365f2ff194111787dc91b004f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.11.0rc2
|
Release files / nest_asyncio-1.5.6-py3-none-any.whl
| Download URL | nest_asyncio-1.5.6-py3-none-any.whl |
|---|---|
| Size | 5.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8
|
|
BLAKE2b-256 checksum How to use checksums |
e91a6dd9ec31cfdb34cef8fea0055b593ee779a6f63c8e8038ad90d71b7f53c0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.11.0rc2
|