Metadata-Version: 1.1
Name: apigwsgi
Version: 0.1.2
Summary: WSGI compatibility for AWS API Gateway proxy resources
Home-page: https://github.com/nathforge/apigwsgi
Author: Nathan Reynolds
Author-email: email@nreynolds.co.uk
License: UNKNOWN
Description: APIG WSGI
        =========
        
        Makes Python WSGI apps compatible with AWS API Gateway proxy resources.
        
        Example
        -------
        
        .. code:: python
        
            from flask import Flask
            import apigwsgi
        
            app = Flask(__name__)
        
            @app.route("/")
            def index():
                return "Hello from Flask!"
        
            handler = apigwsgi.Handler(my_wsgi_app)
        
        Limitations
        -----------
        
        API Gateway doesn’t currently support binary responses, and fails if your
        application sends non-unicode data.
        
        See also
        --------
        
        -  `API Gateway proxy resource docs`_
        -  `WSGI spec`_
        
        .. _API Gateway proxy resource docs: https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-set-up-simple-proxy.html#api-gateway-proxy-resource?icmpid=docs_apigateway_console
        .. _WSGI spec: https://www.python.org/dev/peps/pep-3333/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
