eventlet alternatives

Eventlet is a Python library that enables concurrent networking by changing how code runs rather than how it is written. It uses epoll, kqueue, or libevent for scalable non-blocking I/O and supports coroutines for a blocking-style programming experience with non-blocking benefits. Eventlet's implicit event dispatch makes it easy to integrate into applications or use directly in the Python interpreter.

Alternatives