Metadata-Version: 1.1
Name: cellulario
Version: 0
Summary: Cellular IO
Home-page: https://github.com/mayfield/cellulario/
Author: Justin Mayfield
Author-email: tooker@gmail.com
License: MIT
Description: cellulario
        ==========
        
        **Cellular IO - A self-contained and self-managed IO loop**
        
        |Maturity| |License| |Change Log| |Build Status| |Version|
        
        About
        -----
        
        Cellular IO is an interface for IO loop style programming that bundles
        the IOloop lifecycle into the inner cell of a standard python data
        interface. If the cell is used like a generator then the ioloop is
        managed inside the generator during calls to **next**. If callbacks are
        used then the cell will block the current execution context until the
        sum of IO routines are complete.
        
        An IOCell can consist of multiple levels of cascading IO routines. A
        first tier may do requests that add requests of a second tier to the
        workqueue. The cell coordinator keeps track of the different io tiers to
        ensure they are scheduled according to the strategy chosen by the user,
        be it latency, bandwidth, or just FIFO.
        
        Installation
        ------------
        
        ::
        
            python3 ./setup.py build
            python3 ./setup.py install
        
        Compatibility
        -------------
        
        -  Python 3.4+
        
        .. |Maturity| image:: https://img.shields.io/pypi/status/cellulario.svg
           :target: https://pypi.python.org/pypi/cellulario
        .. |License| image:: https://img.shields.io/pypi/l/cellulario.svg
           :target: https://pypi.python.org/pypi/cellulario
        .. |Change Log| image:: https://img.shields.io/badge/change-log-blue.svg
           :target: https://github.com/mayfield/cellulario/blob/master/CHANGELOG.md
        .. |Build Status| image:: https://semaphoreci.com/api/v1/projects/a1b17c52-185a-4cc6-ad28-d7f5883bca42/533645/shields_badge.svg
           :target: https://semaphoreci.com/mayfield/cellulario
        .. |Version| image:: https://img.shields.io/pypi/v/cellulario.svg
           :target: https://pypi.python.org/pypi/cellulario
        
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
