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
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for lambda_router-2021.3.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e201c0c24a7e46377cf098c9a48640df1ff7d2c5eee7b011df8d494103477649 |
|
MD5 | 175beee6053d2734be1073150e5f06d5 |
|
BLAKE2b-256 | d3940c2b0b92b6bfea702a0d6dba9ed2fe9ece1b910971a8a883b9ae442a2221 |