A Library that extends the aws_lambda.Code.from_asset and allows for auto packaging of the project
Project description
AWS CDK Code Builder

This library work very similarly to how AWS sam build works. It will find the requirements.txt file and install all libraries and package them together with your code to then ship to a lambda function.
📝 CONTRIBUTIONS
Before doing any contribution read CONTRIBUTING.
📧 CONTACT
Email: amng835@gmail.com
General Discord: https://discord.gg/dFD5HHa
Developer Discord: https://discord.gg/rxNNHYN9EQ
📥 INSTALLING
pip install aws-cdk-code-builder
⚙ HOW TO USE
Folder tree (Simplified)
cdk_project
| -- lambda_function
| | -- main.py
| -- cdk_project
| | -- __init__.py
| | -- cdk_project_stack.py
| -- app.py
| -- ...
File: cdk_project_stack.py
import os
import aws_cdk
from aws_cdk import aws_lambda as lambda_
from aws_cdk_code_builder import Build
CURRENT_DIR = os.path.dirname(os.path.abspath(__file__))
PARENT_PATH = os.path.dirname(CURRENT_DIR)
LAMBDA_CODE = os.path.join(PARENT_PATH, 'lambda_function')
class CdkProjectStack(aws_cdk.Stack):
def __init__(self, scope: aws_cdk.Construct, construct_id: str, **kwargs) -> None:
super().__init__(scope, construct_id, **kwargs)
# This is a simplified representation of Function, more params are needed for it to compile
lambda_.Function(
code=Build(
project_path=LAMBDA_CODE,
work_dir=PARENT_PATH
).build(),
)
🤝 PARAMETERS
- project_path : str, required
- Path to the lambda function code
- work_dir : str, required
- Path to the working directory.
- Note: Build folder will be created in this path (
build/)
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 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-cdk-code-builder-1.2.4.tar.gz.
File metadata
- Download URL: aws-cdk-code-builder-1.2.4.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52648aa831bae84b59d39fb4cf7983df1136be312b1c9f908ea199c3bcafbc92
|
|
| MD5 |
5f4a51282afb5732cd476852092523f2
|
|
| BLAKE2b-256 |
c427fc757c55a327e71ec94dea9551f596959b92bfe7c2596d2faae6e1dff2a1
|
File details
Details for the file aws_cdk_code_builder-1.2.4-py3-none-any.whl.
File metadata
- Download URL: aws_cdk_code_builder-1.2.4-py3-none-any.whl
- Upload date:
- Size: 9.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a04df7341b8b6d171363b601909fbafce354fa6bbc8f23dd30fce34f8e3d1ed
|
|
| MD5 |
14ba9d2a8f1298b0d64f4422ec7bbe19
|
|
| BLAKE2b-256 |
b2fe5b6a928f9b5cc187bc917ed6199f51c0343fc0f45bff2acab38f253edfda
|