Eventlet vs Greenlet vs gevent?
You definitely don’t want greenlet for this purpose, because it’s a low level library on top of which you can create light thread libraries (like Eventlet and Gevent). Eventlet, Gevent and more similar libraries provide excellent toolset for IO-bound tasks (waiting for read/write on file, network). Likely, most of your GUI code will wait for … Read more