greenlet: greenlet (micro-threads for Python) greenlet: greenlet: The greenlet package is a spin-off of Stackless, a version of greenlet: CPython that supports micro-threads called "tasklets". Tasklets run greenlet: pseudo-concurrently (typically in a single or a few OS-level threads) greenlet: and are synchronized with data exchanges on "channels". greenlet: greenlet: Greenlets are lightweight coroutines for in-process concurrent greenlet: programming. They are provided as a C extension module for the greenlet: regular unmodified interpreter. greenlet: