We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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()