Metadata-Version: 1.1
Name: aiogreen
Version: 0.3
Summary: asyncio event loop scheduling callbacks in eventlet.
Home-page: http://aiogreen.readthedocs.org/
Author: Victor Stinner
Author-email: victor.stinner@gmail.com
License: Apache License 2.0
Description: aiogreen 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.
        
        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.
        
        * `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>`_
        * Copyright/license: Open source, Apache 2.0. Enjoy!
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
