import asyncio def _run(coro): """Run the given coroutine.""" return asyncio.get_event_loop().run_until_complete(coro)