Wrap a WSGI application in an AWS Lambda handler function for running on API Gateway.
Project description
Wrap a WSGI application in an AWS Lambda handler function for running on API Gateway.
A quick example:
from apig_wsgi import make_lambda_handler
from myapp.wsgi import app
# Configure this as your entry point in AWS Lambda
lambda_handler = make_lambda_handler(app)
Installation
Use pip:
pip install apig-wsgi
Tested on Python 2.7 and Python 3.6.
Usage
make_lambda_handler(app, binary_support=False)
app should be a WSGI app, for example from Django’s wsgi.py or Flask’s Flask() object.
If you want to support sending binary responses, set binary_support to True and make sure you have '*/*' in the ‘binary media types’ configuration on your Rest API on API Gateway. Note, whilst API Gateway supports a list of media types, using ‘/’ is the best way to do it, since it is used to match the request ‘Accept’ header as well.
Note that binary responses aren’t sent if your response has a ‘Content-Type’ starting ‘text/html’ or ‘application/json’ - this is to support sending larger text responses.
History
Pending Release
1.1.0 (2018-05-10)
Add binary_support flag to enable sending binary responses, if enabled on API Gateway.
1.0.0 (2018-03-08)
First release on PyPI, working basic integration for WSGI apps on API Gateway.
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
Built Distribution
Hashes for apig_wsgi-1.1.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 331f4c1027d1cf59c3b751108d13f285da52709eb4b33c7c861c1bd2574258d6 |
|
MD5 | 398efdbb84e263d713b2bdcee9d6bec0 |
|
BLAKE2b-256 | eccf9dfbacc16a131011d73dac812241b783ae18b87bb7ff1a8be9858d844320 |