Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2023 09:08 AM
You could try adding this:
import nest_asyncio
nest_asyncio.apply()
And in your code calling it like this:
asyncio.run(your_method())
Don't forget to install the nest_asyncio package.