Simple HTTP server to invoke a Lambda function locally
Project description
Lambda Gateway
Test AWS Lambda functions invoked as API Gateway proxy integrations locally.
This tool extends the native Python SimpleHTTPRequestHandler to proxy requests to a local Lambda function using the ThreadingHTTPServer.
This tool is was specifically implemented to use the standard Python library only. No additional pip installation is required.
After installing, navigate to the directory where your Lambda function is defined and invoke it with the CLI tool using the configured handler, eg:
lambda-gateway [-p PORT] [-t TIMEOUT] lambda_function.lambda_handler
# => Serving HTTP on :: port 8000 (http://[::]:8000/) ...
Installation
Install with pip.
pip install lambda-gateway
Usage
Create a Lambda function handler in Python 3
# ./lambda_function.py
import json
def lambda_handler(event, context):
return {
'body': json.dumps({'text': 'Hello from Lambda Gateway!'}),
'statusCode': 200,
'headers': {
'Content-Type': 'application/json',
},
}
Start a local server with the signature of your Lambda handler as the argument.
Note — the handler must be importable from the current working directory
lambda-gateway [-H HOST] [-p PORT] [-b BASE_PATH] [-t TIMEOUT] lambda_function.lambda_handler
# => Starting LambdaRequestHandler at http://localhost:8000/
Test the function with cURL.
curl http://localhost:8000/
# => {"text": "Hello from Lambda Gateway!"}
Timeouts
API Gateway imposes a 30 second timeout on Lambda responses. This constraint is implemented in this project using Python's async/await syntax.
The timeout length can be adjusted using the -t / --timeout
CLI option.
lambda-gateway -t 3 lambda_function.lambda_handler
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.