We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Install uvloop event policy before calling AsyncIOMainLoop().install():
AsyncIOMainLoop().install()
from tornado.platform.asyncio import AsyncIOMainLoop import asyncio import uvloop asyncio.set_event_loop_policy(uvloop.EventLoopPolicy()) AsyncIOMainLoop().install() asyncio.get_event_loop().run_forever()