Skip to content
Yury Selivanov edited this page Jul 13, 2016 · 6 revisions

Q & A

How to use uvloop with Tornado?

Install uvloop event policy before calling 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()
Clone this wiki locally