survey-extraction/deployment/lambda_example/app.py
2025-07-15 12:27:23 +00:00

11 lines
285 B
Python

"""
A quick example of lambda working a function in python
"""
def handler(event, context):
print("Hello from Python function. This shold be running from a dockerfile env and executed on a aws lambda!")
return {
'statusCode': 200,
'body': 'Hello World'
}