RLoop is an AsyncIO event loop implemented in Rust on top of the mio crate.
Warning
Disclaimer: This is a work in progress and definitely not ready for production usage.
pip install rloop
import asyncio
import rloop
asyncio.set_event_loop_policy(rloop.EventLoopPolicy())
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
RLoop is released under the BSD License.