Questions tagged [nest-asyncio]

18 questions
0
votes
1 answer

Running into uvloop issues with Database queries from Rasa-X?

I'm trying to make a simple query to my amazon neptune database, from Rasa-x. Here is the code from my actions.py: class ActionQueryDietary(Action): def name(self) -> Text: return "action_query_dietary" def run(self, dispatcher:…
0
votes
1 answer

aiohttp monkey patch to work with nest_asyncio

I used nest_asyncio in my python project. And everything works perfect except that aiohttp function get_running_loop has some warning message that fill all my logs. The aiohttp used the implementation for their get_running_loop similar to: def…
Роман Коптев
  • 1,555
  • 1
  • 13
  • 35
0
votes
1 answer

Correct use/constraints of use, of nest_asyncio?

I'm working on making a previously sync webserver as sync one. Most of my functions are sync and I'd like to simply make async calls from existing code to avoid async creep. nest_asyncio appears to allow this by making run_until_complete…
user48956
  • 14,850
  • 19
  • 93
  • 154
1
2