WSGI adapter for AWS Lambda
$ pip install lambda-wsgi-adapter
from wsgi_adapter import LambdaWSGIHandler
from django_project.wsgi import application
def lambda_handler(event, context):
handler = LambdaWSGIHandler(application)
return handler(event, context)
Copyright (c) 2023 Ekene Izukanne