AWS-Lambda-WSGI allows you to use WSGI-compatible middleware and frameworks like Bottle, Django and Flask with the AWS API Gateway/Lambda proxy integration.
Based on awsgi, by Matthew Wedgwood.
aws_lambda_wsgi
is available from PyPI as aws_lambda_wsgi
:
pip install aws_lambda_wsgi
import aws_lambda_wsgi
from bottle import Bottle
app = Bottle()
@app.route('/')
def index():
return {'message': 'OK'}
def lambda_handler(event, context):
return aws_lambda_wsgi.response(app, event, context)