I need to schedule and await coroutine in non-async function. That function will be run in async coroutine, and there will be already running event loop.
Like this: async -> sync -> async.
It can be easly scheduled in event loop by asyncio.create_task
.
But can i somehow await it in that sync function?
Thank you.