Eventlet Removal Logo
Eventlet Removal

Recommended Resources

Here is a curated list of resources to help you understand and implement alternatives to Eventlet:

Asyncio Resources

Awesome Asyncio

A comprehensive collection of libraries, tools, and resources for working with Python's asyncio.

Learn more

Python asyncio Documentation

Official Python documentation for the asyncio library, including tutorials and API references.

Learn more

Awaitlet

A library for integrating asyncio with SQLAlchemy, enabling asynchronous database operations.

Learn more

Eventlet to asyncio Migration Guide

A guide to migrating from Eventlet to asyncio.

Learn more

Trio Documentation

A library for structured concurrency in Python, offering an alternative to asyncio.

Learn more

Curio Documentation

A library for coroutine-based concurrency in Python, focusing on simplicity and performance.

Learn more

Threading Resources

Python threading Documentation

Official Python documentation for the threading module, useful for understanding multithreading in Python.

Learn more

General Concurrency Resources

Concurrency in Python

An in-depth article on Python's concurrency models, including threading, asyncio, and multiprocessing.

Learn more

Python Issue 22239

A Python bug tracker issue discussing the challenges and improvements related to asyncio and concurrency.

Learn more

What Color is Your Function?

An insightful article discussing the challenges and implications of mixing synchronous and asynchronous code.

Learn more

Cotyledon Documentation

A framework for defining long-running services in Python, with graceful handling of system signals and worker processes.

Learn more

Futurist Documentation

A library providing abstractions for asynchronous and synchronous execution patterns, developed by the OpenStack community.

Learn more

Eventlet Resources

OpenStack Eventlet Removal Wiki

Documentation and guidelines from the OpenStack community on removing Eventlet from projects.

Learn more

Eventlet Documentation

Official documentation for Eventlet, including installation and usage guides.

Learn more

OpenStack Governance Goal: Remove Eventlet

OpenStack's technical committee documentation on the goal to remove Eventlet from its ecosystem.

Learn more

Greenlet Documentation

Official documentation for Greenlet, a lightweight in-process concurrent programming library often used with Eventlet.

Learn more