Metadata-Version: 1.0
Name: vanilla.bean
Version: 0.1.1
Summary: Obligatory Sinatra style (but concurrent!) micro-web framework for Vanilla.
Home-page: https://github.com/cablehead/vanilla.bean
Author: Andy Gayton
Author-email: andy@thecablelounge.com
License: MIT
Description: |Vanilla| Welcome to Vanilla Bean!
        ==================================
        
        Obligatory Sinatra style (but concurrent!) micro-web framework for
        `Vanilla <https://github.com/cablehead/vanilla>`__.
        
        Example
        -------
        
        .. code:: python
        
            h = vanilla.Hub()
            b = h.bean(port=8000)
        
            @b.get('/')
            def index(request, response):
                response.send('Hello ')
                h.sleep(1000)
                return 'World.\n'
        
        .. figure:: https://github.com/cablehead/vanilla.bean/raw/master/docs/images/terminal.gif
           :alt: terminal
        
        Installation
        ------------
        
        ::
        
                pip install vanilla.bean
        
        
        .. |Vanilla| image:: http://vanillapy.readthedocs.org/en/latest/_static/logo.png
        
Platform: UNKNOWN
