Skip to main content

Wrap a WSGI application in an AWS Lambda handler function for running on API Gateway or an ALB.

Project description

https://img.shields.io/github/workflow/status/adamchainz/apig-wsgi/CI/master?style=for-the-badge https://img.shields.io/pypi/v/apig-wsgi.svg?style=for-the-badge https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge pre-commit

Wrap a WSGI application in an AWS Lambda handler function for running on API Gateway or an ALB.

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:

python -m pip install apig-wsgi

Python 3.5 to 3.9 supported.


Deploying a Django Project? Check out my book Speed Up Your Django Tests which covers loads of best practices so you can write faster, more accurate tests.


Usage

Use apig-wsgi in your lambda function that you attach to one of:

  • An ALB.

  • An API Gateway “REST API”.

  • An API Gateway “HTTP API”.

Both “format version 1” and “format version 2” are supported (documentation). apig-wsgi will automatically detect the version in use. At time of writing, “format version 2” is only supported on HTTP API’s.

make_lambda_handler(app, binary_support=None, non_binary_content_type_prefixes=None)

app should be a WSGI app, for example from Django’s wsgi.py or Flask’s Flask() object.

binary_support configures whether responses containing binary are supported. The default, None, means to automatically detect this from the format version of the event - on it defaults to True for format version 2, and False for format version 1. Depending on how you’re deploying your lambda function, you may need extra configuration before you can enable binary responses:

  • ALB’s support binary responses by default.

  • API Gateway HTTP API’s support binary responses by default (and default to event format version 2).

  • API Gateway REST API’s (the “old” style) require you to add '*/*' in the “binary media types” configuration. You will need to configure this through API Gateway directly, CloudFormation, SAM, or whatever tool your project is using. Whilst this supports a list of binary media types, using '*/*' is the best way to configure it, since it is used to match the request ‘Accept’ header as well, which WSGI applications often ignore. You may need to delete and recreate your stages for this value to be copied over.

Note that binary responses aren’t sent if your response has a ‘Content-Type’ starting ‘text/’, ‘application/json’ or ‘application/vnd.api+json’ - this is to support sending larger text responses, since the base64 encoding would otherwise inflate the content length. To avoid base64 encoding other content types, you can set non_binary_content_type_prefixes to a list of content type prefixes of your choice (which replaces the default list).

If the event from API Gateway contains the requestContext key, for example on format version 2 or from custom request authorizers, this will be available in the WSGI environ at the key apig_wsgi.request_context.

If you want to inspect the full event from API Gateway, it’s available in the WSGI environ at the key apig_wsgi.full_event.

If you need the Lambda Context object, it’s available in the WSGI environ at the key apig_wsgi.context.

If you’re using “format version 1”, multiple values for request and response headers and query parameters are supported. They are enabled automatically on API Gateway but need explict activation on ALB’s. If you need to determine from within your application if multiple header values are enabled, you can can check the apgi_wsgi.multi_value_headers key in the WSGI environ, which is True if they are enabled and False otherwise.

Example

An example application with Ansible deployment is provided in the example/ directory in the repository. See the README.rst there for guidance.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

apig-wsgi-2.9.2.tar.gz (21.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

apig_wsgi-2.9.2-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file apig-wsgi-2.9.2.tar.gz.

File metadata

  • Download URL: apig-wsgi-2.9.2.tar.gz
  • Upload date:
  • Size: 21.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.9.0

File hashes

Hashes for apig-wsgi-2.9.2.tar.gz
Algorithm Hash digest
SHA256 19ec7270e7cae7dabe2337bc252510b0d18607b2d8a6bdd8d034413e957471f5
MD5 b24234e20e09d5300524f1c595ca4375
BLAKE2b-256 2c43d97ee829028bc4af618be8627578a030be6cd225457ff3672d88fba662b1

See more details on using hashes here.

File details

Details for the file apig_wsgi-2.9.2-py3-none-any.whl.

File metadata

  • Download URL: apig_wsgi-2.9.2-py3-none-any.whl
  • Upload date:
  • Size: 6.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.9.0

File hashes

Hashes for apig_wsgi-2.9.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0891e32cb8d56d791b0659effe07a6730db8ba7f40e5311cf31c5f3d18b105cd
MD5 b0073f0ec963d51b713c5e64558913a0
BLAKE2b-256 ab09661a83adf1f9e2a1db69489ed799e902092e1b9165acd9a46ef06190a2ac

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page