--- id: nest-asyncio2 version: "1.7.2" license: BSD license_treatment: permissive maintenance: aging --- # nest-asyncio2 — Patch asyncio to allow nested event loops License: permissive · Maintenance: aging · Popularity: top 1,000 on PyPI ## Install pip install nest-asyncio2 uv add nest-asyncio2 poetry add nest-asyncio2 ## Description # nest-asyncio2 [![Build](https://github.com/Chaoses-Ib/nest-asyncio2/actions/workflows/test.yml/badge.svg?branche=master)](https://github.com/Chaoses-Ib/nest-asyncio2/actions) [![status](https://img.shields.io/badge/status-stable-green.svg)]() [![PyPi](https://img.shields.io/pypi/v/nest-asyncio2.svg)](https://pypi.python.org/pypi/nest-asyncio2) [![License](https://img.shields.io/badge/license-BSD-blue.svg)](LICENSE) [![Downloads](https://static.pepy.tech/badge/nest-asyncio2/month)](https://pepy.tech/project/nest-asyncio2) ## Introduction By design asyncio [does not allow](https://github.com/python/cpython/issues/66435) 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 ```sh pip3 install nest-asyncio2 ``` Python... ## AI interpretation — verify before relying Patches asyncio to allow nested event loops, enabling asyncio.run() and loop.run_until_complete() to work within already-running event loops—solving the "event loop is already running" error in Jupyter, web servers, and GUI applications. Verdict: Stable, low-friction solution to a real asyncio limitation with broad Python version support and no external dependencies. Maintenance is aging but the package is actively maintained and addresses known issues in newer Python versions. Safe for production use in environments where nested event loops are necessary. [View on SkillFed](https://skillfed.io/packages/nest-asyncio2) · [View on PyPI](https://pypi.org/project/nest-asyncio2/)