Skip to content

gi0baro/rloop

Repository files navigation

RLoop

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.

Installation

pip install rloop

Usage

import asyncio
import rloop

asyncio.set_event_loop_policy(rloop.EventLoopPolicy())
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)

License

RLoop is released under the BSD License.