Skip to content

alokinsoft/starlette-lambda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Create Python async AWS Lambda functions with Starlette.

Currently supports exposing Starlette routes via ALB.

How to use Starlette Lambda with FastAPI:

import json

from starlette_lambda.aws import LambdaFunction
from fastapi import FastAPI

app = FastAPI()


@app.get("/")
def read_root():
    return {"Hello": "World"}


@app.get("/items/{item_id}")
def read_item(item_id: int, q: str = None):
    return {"item_id": item_id, "q": q}


handler = LambdaFunction(app).lambda_handler

About

Develop AWS Lambda functions with Starlette

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages