coroutine AbstractEventLoop.run_in_executor(executor, func, *args)
Arrange for a func to be called in the specified executor.
The executor argument should be an Executor instance. The default executor is used if executor is None.
Use functools.partial to pass keywords to the *func*.
This method is a coroutine.
Please login to continue.