Posted on 8th May 2025|265 views
Why am I getting an error called this event loop is already running?
Posted on 8th May 2025| views
I have faced the same issue which is solved by using nest_async
pip install nest_asyncio
And I have added the below line within my file
import nest_asyncio
nest_asyncio.apply()