Name | apig-wsgi JSON |
Version |
2.20.0
JSON |
| download |
home_page | None |
Summary | Wrap a WSGI application in an AWS Lambda handler function for running on API Gateway or an ALB. |
upload_time | 2025-09-08 15:30:31 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | None |
keywords |
api gateway
apig
aws
lambda
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
=========
apig-wsgi
=========
.. image:: https://img.shields.io/github/actions/workflow/status/adamchainz/apig-wsgi/main.yml.svg?branch=main&style=for-the-badge
:target: https://github.com/adamchainz/apig-wsgi/actions?workflow=CI
.. image:: https://img.shields.io/badge/Coverage-100%25-success?style=for-the-badge
:target: https://github.com/adamchainz/apig-wsgi/actions?workflow=CI
.. image:: https://img.shields.io/pypi/v/apig-wsgi.svg?style=for-the-badge
:target: https://pypi.org/project/apig-wsgi/
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge
:target: https://github.com/psf/black
.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white&style=for-the-badge
:target: https://github.com/pre-commit/pre-commit
:alt: pre-commit
Wrap a `WSGI <https://peps.python.org/pep-3333/>`__ application in an AWS Lambda handler function for running on API Gateway or an ALB.
A quick example:
.. code-block:: python
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)
----
**Improve your Django and Git skills** with `my books <https://adamj.eu/books/>`__.
----
Installation
============
Use **pip**:
.. code-block:: sh
python -m pip install apig-wsgi
Python 3.9 to 3.14 supported.
Usage
=====
Use apig-wsgi in your AWS Lambda Function that you attach to one of:
* A `Lambda Function URL <https://docs.aws.amazon.com/lambda/latest/dg/lambda-urls.html>`__
* An `API Gateway “HTTP API” <https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api.html>`__
* An `API Gateway “REST API” <https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-rest-api.html>`__
* An `ALB <https://docs.aws.amazon.com/lambda/latest/dg/services-alb.html>`__
Both “format version 1” and “format version 2” are supported (`documentation <https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-lambda.html>`__).
apig-wsgi will automatically detect the version in use.
At time of writing, “format version 2” is used for Lambda Function URLs and API Gateway HTTP APIs.
``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:
* ALBs support binary responses by default.
* API Gateway HTTP APIs support binary responses by default (and default to event format version 2).
* API Gateway REST APIs (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.
While 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 no 'content-encoding' header and a 'content-type' header starting 'text/', 'application/json', or 'application/vnd.api+json'.
This behaviour is to support sending larger text responses, since the base64 encoding would otherwise inflate the content length.
To avoid base64 encoding other content types, set ``non_binary_content_type_prefixes`` to a list or tuple 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 <https://docs.aws.amazon.com/lambda/latest/dg/python-context.html>`__, 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 `explicit activation on ALBs <https://docs.aws.amazon.com/elasticloadbalancing/latest/application/lambda-functions.html#multi-value-headers>`__.
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 Django project with Ansible deployment is provided in the ``example/`` directory in the repository.
See the ``README.rst`` there for guidance.
Raw data
{
"_id": null,
"home_page": null,
"name": "apig-wsgi",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "API Gateway, APIG, AWS, Lambda",
"author": null,
"author_email": "Adam Johnson <me@adamj.eu>",
"download_url": "https://files.pythonhosted.org/packages/90/4a/3036a3cd4fdec296b510b366a5e69e4784abce836d57de5f8a3c6ee96691/apig_wsgi-2.20.0.tar.gz",
"platform": null,
"description": "=========\napig-wsgi\n=========\n\n.. image:: https://img.shields.io/github/actions/workflow/status/adamchainz/apig-wsgi/main.yml.svg?branch=main&style=for-the-badge\n :target: https://github.com/adamchainz/apig-wsgi/actions?workflow=CI\n\n.. image:: https://img.shields.io/badge/Coverage-100%25-success?style=for-the-badge\n :target: https://github.com/adamchainz/apig-wsgi/actions?workflow=CI\n\n.. image:: https://img.shields.io/pypi/v/apig-wsgi.svg?style=for-the-badge\n :target: https://pypi.org/project/apig-wsgi/\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge\n :target: https://github.com/psf/black\n\n.. image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white&style=for-the-badge\n :target: https://github.com/pre-commit/pre-commit\n :alt: pre-commit\n\nWrap a `WSGI <https://peps.python.org/pep-3333/>`__ application in an AWS Lambda handler function for running on API Gateway or an ALB.\n\nA quick example:\n\n.. code-block:: python\n\n from apig_wsgi import make_lambda_handler\n from myapp.wsgi import app\n\n # Configure this as your entry point in AWS Lambda\n lambda_handler = make_lambda_handler(app)\n\n\n----\n\n**Improve your Django and Git skills** with `my books <https://adamj.eu/books/>`__.\n\n----\n\n\nInstallation\n============\n\nUse **pip**:\n\n.. code-block:: sh\n\n python -m pip install apig-wsgi\n\nPython 3.9 to 3.14 supported.\n\nUsage\n=====\n\nUse apig-wsgi in your AWS Lambda Function that you attach to one of:\n\n* A `Lambda Function URL <https://docs.aws.amazon.com/lambda/latest/dg/lambda-urls.html>`__\n* An `API Gateway \u201cHTTP API\u201d <https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api.html>`__\n* An `API Gateway \u201cREST API\u201d <https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-rest-api.html>`__\n* An `ALB <https://docs.aws.amazon.com/lambda/latest/dg/services-alb.html>`__\n\n\nBoth \u201cformat version 1\u201d and \u201cformat version 2\u201d are supported (`documentation <https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-lambda.html>`__).\napig-wsgi will automatically detect the version in use.\nAt time of writing, \u201cformat version 2\u201d is used for Lambda Function URLs and API Gateway HTTP APIs.\n\n``make_lambda_handler(app, binary_support=None, non_binary_content_type_prefixes=None)``\n----------------------------------------------------------------------------------------\n\n``app`` should be a WSGI app, for example from Django's ``wsgi.py`` or Flask's ``Flask()`` object.\n\n``binary_support`` configures whether responses containing binary are supported.\nThe 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.\nDepending on how you're deploying your lambda function, you may need extra configuration before you can enable binary responses:\n\n* ALBs support binary responses by default.\n\n* API Gateway HTTP APIs support binary responses by default (and default to event format version 2).\n\n* API Gateway REST APIs (the \u201cold\u201d style) require you to add ``'*/*'`` in the \u201cbinary media types\u201d configuration.\n You will need to configure this through API Gateway directly, CloudFormation, SAM, or whatever tool your project is using.\n While 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.\n You may need to delete and recreate your stages for this value to be copied over.\n\nNote that binary responses aren't sent if your response has no 'content-encoding' header and a 'content-type' header starting 'text/', 'application/json', or 'application/vnd.api+json'.\nThis behaviour is to support sending larger text responses, since the base64 encoding would otherwise inflate the content length.\nTo avoid base64 encoding other content types, set ``non_binary_content_type_prefixes`` to a list or tuple of content type prefixes of your choice, which replaces the default list.\n\nIf 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``.\n\nIf you want to inspect the full event from API Gateway, it's available in the WSGI environ at the key ``apig_wsgi.full_event``.\n\nIf you need the `Lambda Context object <https://docs.aws.amazon.com/lambda/latest/dg/python-context.html>`__, it's available in the WSGI environ at the key ``apig_wsgi.context``.\n\nIf you\u2019re using \u201cformat version 1\u201d, multiple values for request and response headers and query parameters are supported.\nThey are enabled automatically on API Gateway but need `explicit activation on ALBs <https://docs.aws.amazon.com/elasticloadbalancing/latest/application/lambda-functions.html#multi-value-headers>`__.\nIf 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.\n\nExample\n=======\n\nAn example Django project with Ansible deployment is provided in the ``example/`` directory in the repository.\nSee the ``README.rst`` there for guidance.\n",
"bugtrack_url": null,
"license": null,
"summary": "Wrap a WSGI application in an AWS Lambda handler function for running on API Gateway or an ALB.",
"version": "2.20.0",
"project_urls": {
"Changelog": "https://github.com/adamchainz/apig-wsgi/blob/main/CHANGELOG.rst",
"Funding": "https://adamj.eu/books/",
"Repository": "https://github.com/adamchainz/apig-wsgi"
},
"split_keywords": [
"api gateway",
" apig",
" aws",
" lambda"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "38d2dfdc29f172c9c8f73b895aeae285717585905a4a9c0d677ed7a1cd7f9812",
"md5": "c3f05a104109ebaf9dc9beca50ce00fc",
"sha256": "5489b3590a748d42b8c040ca11e776ce9eecbb00ae34f509ce82a89f5babfc47"
},
"downloads": -1,
"filename": "apig_wsgi-2.20.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c3f05a104109ebaf9dc9beca50ce00fc",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 8420,
"upload_time": "2025-09-08T15:30:30",
"upload_time_iso_8601": "2025-09-08T15:30:30.552704Z",
"url": "https://files.pythonhosted.org/packages/38/d2/dfdc29f172c9c8f73b895aeae285717585905a4a9c0d677ed7a1cd7f9812/apig_wsgi-2.20.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "904a3036a3cd4fdec296b510b366a5e69e4784abce836d57de5f8a3c6ee96691",
"md5": "c0be9de042c55d69edfcffe61074b13e",
"sha256": "9c6aea1e96688b5848efb409ae3c3afb4ed2b162cd71dab683b1466a7387b964"
},
"downloads": -1,
"filename": "apig_wsgi-2.20.0.tar.gz",
"has_sig": false,
"md5_digest": "c0be9de042c55d69edfcffe61074b13e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 17158,
"upload_time": "2025-09-08T15:30:31",
"upload_time_iso_8601": "2025-09-08T15:30:31.767135Z",
"url": "https://files.pythonhosted.org/packages/90/4a/3036a3cd4fdec296b510b366a5e69e4784abce836d57de5f8a3c6ee96691/apig_wsgi-2.20.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-09-08 15:30:31",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "adamchainz",
"github_project": "apig-wsgi",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "apig-wsgi"
}