summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-12-03 00:28:13 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-12-03 00:28:13 +0100
commitae7b7415d81e1d5d8f09637a5c0abb1455fdfe40 (patch)
treefc2e5bc933fc6940ce0fcc57383f97fd6635a372 /README
parent3e99c1b0b5e7921abde1cdb7d1450a30a7157794 (diff)
downloadaioeventlet-ae7b7415d81e1d5d8f09637a5c0abb1455fdfe40.tar.gz
rename the project from aiogreen to aioeventlet
Diffstat (limited to 'README')
-rw-r--r--README25
1 files changed, 13 insertions, 12 deletions
diff --git a/README b/README
index 7e71364..a442f82 100644
--- a/README
+++ b/README
@@ -1,17 +1,18 @@
-aiogreen implements the asyncio API (PEP 3156) on top of eventlet. It makes
+aioeventlet implements the asyncio API (PEP 3156) on top of eventlet. It makes
possible to write asyncio code in a project currently written for eventlet.
-aiogreen allows to use greenthreads in asyncio coroutines, and to use asyncio
-coroutines, tasks and futures in greenthreads: see ``link_future()`` and
-``wrap_greenthread()`` functions.
+aioeventlet allows to use greenthreads in asyncio coroutines, and to use
+asyncio coroutines, tasks and futures in greenthreads: see ``link_future()``
+and ``wrap_greenthread()`` functions.
-The main visible difference between aiogreen and trollius is the behaviour of
-``run_forever()``: ``run_forever()`` blocks with trollius, whereas it runs in a
-greenthread with aiogreen. It means that aiogreen event loop can run in an
-greenthread while the Python main thread runs other greenthreads in parallel.
+The main visible difference between aioeventlet and trollius is the behaviour
+of ``run_forever()``: ``run_forever()`` blocks with trollius, whereas it runs
+in a greenthread with aioeventlet. It means that aioeventlet event loop can run
+in an greenthread while the Python main thread runs other greenthreads in
+parallel.
-* `aiogreen documentation <http://aiogreen.readthedocs.org/>`_
-* `aiogreen project in the Python Cheeseshop (PyPI)
- <https://pypi.python.org/pypi/aiogreen>`_
-* `aiogreen project at Bitbucket <https://bitbucket.org/haypo/aiogreen>`_
+* `aioeventlet documentation <http://aioeventlet.readthedocs.org/>`_
+* `aioeventlet project in the Python Cheeseshop (PyPI)
+ <https://pypi.python.org/pypi/aioeventlet>`_
+* `aioeventlet project at Bitbucket <https://bitbucket.org/haypo/aioeventlet>`_
* Copyright/license: Open source, Apache 2.0. Enjoy!