Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 544 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 544 Bytes

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.