AWS Lambda Routing Utility
Project description
lambda_router: Python Helpers for AWS Lambdas
lambda_router is a Python package that provides a few helpers for writing Python-based AWS Lambda functions.
Its main goal is to reduce the boilerplate code when writing lambda functions that need to handle multiple routes.
Getting Started
Install with:
$ pip install lambda_router
Creating a basic, single-route app:
import lambda_router
config = lambda_router.Config()
# Load all environment variables prefix with JSR_.
config.load_from_environment(prefix="JSR_")
app = lambda_router.App(name="example_lambda", config=config)
app.route()
def main(event):
# This is the main route of your lambda
return {"message": "success"}
Or a multi-route app that uses the type field in the lambda event for routing:
import lambda_router
config = lambda_router.Config()
# Load all environment variables prefix with JSR_.
config.load_from_environment(prefix="JSR_")
app = lambda_router.App(name="example_lambda", config=config, route=lambda_router.routers.EventField(key="type"))
app.route("route_one")
def main(event):
return {"message": "success from route_one"}
app.route("route_two")
def main(event):
return {"message": "success from route_two"}
Contributing
Use poetry to install the dev requirements:
$ poetry install
Install the git pre-commit hooks:
$ poetry run pre-commit install
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.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lambda_router-2021.3.1-py2.py3-none-any.whl.
File metadata
- Download URL: lambda_router-2021.3.1-py2.py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/49.1.3 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e201c0c24a7e46377cf098c9a48640df1ff7d2c5eee7b011df8d494103477649
|
|
| MD5 |
175beee6053d2734be1073150e5f06d5
|
|
| BLAKE2b-256 |
d3940c2b0b92b6bfea702a0d6dba9ed2fe9ece1b910971a8a883b9ae442a2221
|