From 5bf85cc0e027bb8d0456fe68c8bb14cd70f73362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adis=20Nezirovi=C4=87?= Date: Sat, 4 Jan 2014 05:19:58 +0700 Subject: libraries/gevent: Added (A coroutine-based network library). Signed-off-by: Willy Sudiarto Raharjo --- libraries/gevent/README | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 libraries/gevent/README (limited to 'libraries/gevent/README') diff --git a/libraries/gevent/README b/libraries/gevent/README new file mode 100644 index 0000000000..1cb24df410 --- /dev/null +++ b/libraries/gevent/README @@ -0,0 +1,12 @@ +Gevent is a coroutine-based Python networking library that uses greenlet +to provide a high-level synchronous API on top of the libev event loop. + +Features include: + - Fast event loop based on libev (epoll on Linux, kqueue on FreeBSD). + - Lightweight execution units based on greenlet. + - API that re-uses concepts from the Python standard library + (for example there are Events and Queues). + - Cooperative sockets with SSL support ยป + - DNS queries performed through threadpool or c-ares. + - Monkey patching utility to get 3rd party modules to become + cooperative -- cgit v1.2.3