Posted on 17th September 2024|265 views
Why am I getting an error called this event loop is already running?
Posted on 17th September 2024| 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()