Just to let you know that by switching to uvloop for managing the event loop you can instantly achieve x2 speed on OAIB without any drawback. ``` import asyncio import uvloop asyncio.set_event_loop_policy(uvloop.EventLoopPolicy()) from oaib import Auto ```