Script to create automatically lambda layers in AWS
- pip
- zip
- aws-cli (if you want to deploy)
Define your desired python libraries
# Define the list of Python libraries
LIBRARIES=(
"azure-storage-blob"
"pandas pyarrow fastparquet" # Separate libraries by space
)
run ./create.sh
/lib
/azure-storage-blob
/pandas_pyarrow_fastparquet
azure-storage-blob.zip
pandas_pyarrow_fastparquet.zip
create.sh