""" 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' }