Metadata-Version: 1.1
Name: Rhino
Version: 0.0.1
Summary: A microframework for building RESTful web services
Home-page: https://github.com/trendels/rhino
Author: Stanis Trendelenburg
Author-email: stanis.trendelenburg@gmail.com
License: MIT
Description: Rhino
        =====
        
        |build-status| |docs|
        
        Rhino is a python microframework for building RESTful web services.
        
        Minimal "Hello World" example:
        
        .. code-block:: python
        
            from rhino import Mapper, get
        
            @get
            def hello(request):
                return "Hello, world!"
        
            app = Mapper()
            app.add('/', hello)
            app.start_server()
        
        Features
        --------
        
        - Build reusable, nested applications
        - Resource-centric design
        - Support for content negotiation
        
        Documentation
        -------------
        
        Read the `documentation at readthedocs. <http://rhino.readthedocs.org/>`_.
        
        .. |build-status| image:: https://travis-ci.org/trendels/rhino.svg?branch=github
           :target: https://travis-ci.org/trendels/rhino
           :alt: Build Status
           :scale: 100%
        
        .. |docs| image:: https://readthedocs.org/projects/rhino/badge/?version=latest
           :target: https://readthedocs.org/projects/rhino/?badge=latest
           :alt: Documentation Status
           :scale: 100%
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
