An adaptor for serving WSGI applications using AWS Lambda and API Gateway
Project description
Python Adaptor for Serving WSGI Applications with AWS Lambda and API Gateway
Sippy Cup is an extremely minimalistic Python adaptor that allows WSGI applications to be served using using AWS API Gateway and AWS Lambda proxy integration.
Sippy Cup converts the input format sent to an AWS Lambda function by API Gateway into a WSGI environment that is used to run a the application. The application’s response is then converted to a format that can be understood by API Gateway.
When the WSGI environment is created, some additional values from the event sent to AWS Lambda from API Gateway are also added. See the demo app below for how to access these.
apigateway: True
apigateway.stageVariables: API Gateway stage variables
apigateway.requestContext: The event request context
Background
https://ben.fogbutter.com/2016/11/09/introducing-sippy-cup.html
Getting started
Installation
Because you will eventually need to create a deployment package, it is highly recommended that you use a virtualenv when using Sippy Cup.
pip install sippycup
Create a simple application
lambda_function.py provides a demo application
# lambda_function.py
from flask import Flask, Response, request, jsonify
from sippycup import sippycup
app = Flask(__name__)
@app.route('/hello/', methods=['GET', 'POST'])
@app.route('/hello/<string:name>', methods=['GET', 'POST'])
def hello_world(name='World'):
return Response('Hello, {0}!'.format(name), mimetype='text/plain')
@app.route('/')
def index():
# return the additional WSGI environment variables that SippyCup
# provides
return jsonify({
'requestContext': request.environ['apigateway.requestContext'],
'stageVariables': request.environ['apigateway.stageVariables']
})
def lambda_handler(event, context):
return sippycup(app, event, context)
if __name__ == '__main__':
app.run()
You will need to create a deployment package and use that to create a new AWS Lambda function.
Finally, set up an API Gateway proxy resource with the lambda proxy integration. It is recommended to create resources on both ‘/’ and ‘/SOMEPREFIX’ unless you don’t need the ‘/’ route.
A note about URL generation and redirection
In order to properly execute things like URL generation and redirection, WSGI applications use an environment variable called SCRIPT_NAME. By default, this works as one might expect. However, if your API is mapped to a custom domain using base path mapping, you need to tell the application about this. This is a common problem with more traditional setups as well (e.g. applications behind a reverse proxy).
The solution in Sippy Cup is to set a stage variable called SIPPYCUP_SCRIPT_NAME_BASE, which will be used by Sippy Cup to properly construct SCRIPT_NAME so that things work as expected.
e.g. If you are mapping your ‘production’ stage to api.mydomain.com using the default configuration in ApiGateway, you should set the ‘SIPPYCUP_SCRIPT_NAME_BASE’ stage variable for that stage to ‘/’.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file sippycup-0.5.1.tar.gz
.
File metadata
- Download URL: sippycup-0.5.1.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce1bf9ab6ebdb9574e344dfa783c0aa4a42ff99eb131b4446f9624de85e603d9 |
|
MD5 | 3b6695baa30d581baa99a1ae3e70c1bc |
|
BLAKE2b-256 | 4cc83e9f1309ef428419d60e194e48c1b39a4d646120933f00e2977b654bc4b9 |