Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 782 Bytes

README.md

File metadata and controls

29 lines (17 loc) · 782 Bytes

lambda-wsgi-adapter version downloads License: MIT issues

WSGI adapter for AWS Lambda

Install

$ pip install lambda-wsgi-adapter

Usage

from wsgi_adapter import LambdaWSGIHandler
from django_project.wsgi import application

def lambda_handler(event, context):
    handler = LambdaWSGIHandler(application)
    return handler(event, context)

License

MIT License

Copyright (c) 2023 Ekene Izukanne