Or is it possible now?
Yes, just put these lines
import asyncio
import uvloop
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
in the very beginning of your program and it will run on uvloop. aiohttp will run too.
I tried this and it resulted in an unstarted loop. I am not sure why.
Most helpful comment
Yes, just put these lines
in the very beginning of your program and it will run on uvloop. aiohttp will run too.