AWS Lambda WSGI - WSGI adapter for AWS API Gateway/Lambda Proxy Integration
Project description
aws-lambda-wsgi
A WSGI adapter for AWS API Gateway/Lambda Proxy Integration
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.
Installation
aws_lambda_wsgi
is available from PyPI as aws_lambda_wsgi
:
pip install aws_lambda_wsgi
Example
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)
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
aws_lambda_wsgi-0.0.4.tar.gz
(2.9 kB
view hashes)
Built Distribution
Close
Hashes for aws_lambda_wsgi-0.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe0bf225adfa98b2ab33c6e4109b8159629793cd18dc12fa780fe0d08f93df45 |
|
MD5 | 80ec34fe385f156ea734ddaca9fa0499 |
|
BLAKE2b-256 | 8bd5d03bf6dbb70fc2d58977030ec29e9218553499846af84165c96f547ad3c1 |