Skip to content

spatocode/lambda-wsgi-adapter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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