gevent is a coroutine-based Python networking library that uses
greenlet to provide a high-level synchronous API on top of libevent
event loop.

Features include:

- convenient API around greenlets
- familiar synchronization primitives (Event, Queue)
- socket module that cooperates
- WSGI server on top of libevent-http
- DNS requests done asynchronously through libevent-dns
- monkey patching utility to get pure Python modules to cooperate

* changes in 0.11.2 *

- Fixed wsgi to unquote environ['PATH_INFO'] before passing to application.
- Added SERVER_SOFTWARE variable to wsgi environ.
- Fixed bug in JoinableQueue.task_done() that caused ValueError to be
raised incorrectly here.
- Fixed gevent.socket not to fail with ImportError if Python was not
built with ssl support.

Homepage: http://gevent.org
Download page: http://pypi.python.org/pypi/gevent
-- 
http://mail.python.org/mailman/listinfo/python-announce-list

        Support the Python Software Foundation:
        http://www.python.org/psf/donations/

Reply via email to