Feature or enhancement
Support for running async functions in sync functions Pitch
Currently only running async functions inside sync functions is only available with asyncio.run(func(x)) or loop.run_until_complete(); however when there is a running loop, these calls cannot be used.
The only way is running the function in background, and using callback functions(which is very limiting)