Metadata-Version: 2.1
Name: little-api
Version: 0.0.1
Summary: Little API the web framework that could
Home-page: UNKNOWN
Author: j dunham
Author-email: 
License: MIT
Description: 
        # Little-API: The little web framework that could
        
        ![PyPI](https://img.shields.io/pypi/v/little-api.svg)
        
        It's a WSGI framework and can be used with any WSGI application server such as Gunicorn.
        
        ## Installation
        
        ```shell
        pip install little-api
        ```
        
        ## Usage
        
        ``` python
        from little_api.api import API
        
        app = API()
        
        @app.route("/home")
        def home(request, response):
            response.json = {"name": "little-api"}
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
