summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-21 05:00:25 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-11-21 05:00:25 +0100
commit7ebfcda50c07e0eaffdc431dba33acbe607c87a8 (patch)
tree3a2ccde4a8e17818097d6d2148014aae79f3935e /README
parent82b6b136ed8fd5bc7c503eeaed3ed52944e5e7ff (diff)
downloadaioeventlet-7ebfcda50c07e0eaffdc431dba33acbe607c87a8.tar.gz
add link to eventlet & greenlet
Diffstat (limited to 'README')
-rw-r--r--README13
1 files changed, 10 insertions, 3 deletions
diff --git a/README b/README
index 19eda9b..ac45488 100644
--- a/README
+++ b/README
@@ -11,12 +11,19 @@ greenthread with aiogreen. It means that it's possible to call
``run_forever()`` in the main thread and execute other greenthreads in
parallel.
+aiogreen:
+
* `aiogreen documentation <http://aiogreen.readthedocs.org/>`_
-* `asyncio documentation <http://docs.python.org/dev/library/asyncio.html>`_
-* `trollus documentation <http://trollius.readthedocs.org/>`_
* `aiogreen project in the Python Cheeseshop (PyPI)
<https://pypi.python.org/pypi/aiogreen>`_
* `aiogreen project at Bitbucket <https://bitbucket.org/haypo/aiogreen>`_
* Copyright/license: Open source, Apache 2.0. Enjoy!
-See also the `Tulip project <http://code.google.com/p/tulip/>`_.
+Event loops:
+
+* `asyncio documentation <http://docs.python.org/dev/library/asyncio.html>`_
+* `trollus documentation <http://trollius.readthedocs.org/>`_
+* `eventlet documentation <http://eventlet.net/doc/>`_
+* `eventlet project <http://eventlet.net/>`_
+* `greenlet documentation <http://greenlet.readthedocs.org/>`_
+* `Tulip project <http://code.google.com/p/tulip/>`_