A tool for building AWS Lambda functions from Python projects.
Project description
AWS Python Lambda SAM Builder
Like https://github.com/serverless/serverless-python-requirements but much simpler and for AWS SAM.
Speeds up cross-building for x86_64 on ARM64 by using a local cache.
Usage
Put a Makefile (SAM requires capital M and a make target that matches the logical resources name) in your lambda function top dir:
install-builder:
@python -c "import aws_pylambda_sam_builder" || @pip install aws_pylambda_sam_builder
.PHONY: build-YourLambda
build-YourLambda: install-builder
@python -m aws_pylambda_sam_builder --aws-runtime py311 --aws-architecture x86_64 --source ./ --destination $(ARTIFACTS_DIR)
Set your SAM config to build with Makefile:
Resources:
YourLambda:
Metadata:
BuildMethod: makefile
Now sam build --build-in-source --parallel -t template.yaml YourLambda uses per-package caching, doesn't need a container, and builds in 100ms after the first build.
Issues
- probably not safe for concurrent builds
- can't build from source (only does binary wheels)
- requires all transitive deps to be listed in requirements.txt. I did
poetry export -f initial_requirements.txt -o requirements.txt --without-hashes
New in 0.2
- Support for AWS Lambda python 3.13 environment
- File lock for concurrent builds
- Bugfix: previously, if a download failed, e.g. because no compiled package existed, a folder with the metadata hash would still be created. Then the next run would "succeed", but the dependency would not end up in the lambda zip. Current version makes sure to crash and delete the folder if downloading fails.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 aws_pylambda_sam_builder-0.2.4.tar.gz.
File metadata
- Download URL: aws_pylambda_sam_builder-0.2.4.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.11.11 Darwin/23.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f9027cf5436a7c1e550e3e0103572f7ff5a718c6eb7167998c586038272470d
|
|
| MD5 |
a7df013c8856fbb15a1ca31a83f61af0
|
|
| BLAKE2b-256 |
21382be89625c19d756134fabf20cd711e8fc78d040a1d768a2ed517144de387
|
File details
Details for the file aws_pylambda_sam_builder-0.2.4-py3-none-any.whl.
File metadata
- Download URL: aws_pylambda_sam_builder-0.2.4-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.11.11 Darwin/23.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
242bc5ad716c5b24b8756d4753a8f470c4d9613d6e29bad83adf80682e983f9b
|
|
| MD5 |
63456454b456e52ae9c9083e7e02e0de
|
|
| BLAKE2b-256 |
db9aeccae1ced3265d6c137df021f54ca6674ef79e935dabb31982a124453f95
|