b-lambda-layer-common


Nameb-lambda-layer-common JSON
Version 4.5.0 PyPI version JSON
download
home_pagehttps://github.com/biomapas/B.LambdaLayerCommon.git
SummaryCommon opinionated utilities for every day development.
upload_time2024-05-02 12:44:36
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseApache License 2.0
keywords aws cdk lambda layer
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # B.LambdaLayerCommon

![Pipeline](https://github.com/Biomapas/B.LambdaLayerCommon/workflows/Pipeline/badge.svg?branch=master)

> **DEPRECATION WARNING !!!**</br></br>
> This library no longer supports lambda layers and eventually will be moved to another repository. 
> It is a simple python library of common methods to develop in AWS environment.
> Create your own lambda layer using ![B.CfnLambdaLayer](https://github.com/Biomapas/B.CfnLambdaLayer)
> and specify this library as a dependency. Example given below.
> ```python
> from b_cfn_lambda_layer.lambda_layer import LambdaLayer
> layer = LambdaLayer(
>   ...,
>   dependencies={
>      'b-lambda_layer_common': PackageVersion.from_string_version('4.0.0'),
>   }
> )
> ```

### Description

This is a simple python library, that contains various useful methods that will make infrastructure development 
much easier. 

### Remarks

[Biomapas](https://www.biomapas.com/) aims to modernise life-science industry by sharing its IT knowledge with other companies and the community. 
This is an open source library intended to be used by anyone. 
Improvements and pull requests are welcome. 

### Related technology

- Python3
- Docker
- AWS CDK
- AWS Lambda

### Assumptions

This project assumes you have good knowledge in AWS. 

- Good Python skills and basis of OOP.

### Useful sources

- None.

### Install

Before installing this library, ensure you have these tools setup:

- Python / Pip

To install this project from source run:

```
pip install .
```

Or you can install it from a PyPi repository:

```
pip install b-lambda_layer_common
```

### Usage & Examples

Main modules:

- _api_gateway_
  <br>Contains various functionalities related to API Gateway service and integrations.
<br><br>
- _cache_
  <br>Contains caching mechanisms for lambda functions.
<br><br>
- _events_
  <br>Contains functionality that supports event-driven architectures.
<br><br>  
- _exceptions_
  <br>Contains advanced exception handling and propagation between lambda function chains.
<br><br>  
- _ssm_
  <br>Contains SSM parameter store handling logic.
<br><br>  
- _util_
  <br>Contains random fun stuff ;) 
<br><br>
- _validation_
  <br>Various value validations for python.
<br><br>  
- _ws_api_gateway_
  <br>Contains various functionalities related to API Gateway websocket service and integrations.

### Testing

This package has unit tests based on **pytest**.
To run tests simply run:

```
pytest --cov=b_lambda_layer_common b_lambda_layer_common_test/unit --cov-fail-under=80
```

### Contribution

Found a bug? Want to add or suggest a new feature? 
Contributions of any kind are gladly welcome. 
You may contact us directly, create a pull-request or an issue in github platform. 
Lets modernize the world together.


# Release history

### 4.5.0
* Update of the `CognitoAccessToken` class to parse authentication token either from the request headers or 
from the request context.

### 4.4.0
* Add decorator `remove_header` removing desired headers from API Gateway integration lambda event.

### 4.3.0
* Improve `ValueValidator` by adding `not_contains_whitespace` method.
* Make `ValueValidatorPresets` more flexible.

### 4.2.2
* Make `MalformedPermissionErorr` inherit straight from `HttpException`.

### 4.2.1
* Typehint fixes.

### 4.2.0
* Add more custom `BException` exceptions.
* 420 hehe...

### 4.1.0
* Add ability to specify custom exception when performing value validation.

### 4.0.0
* Deprecate lambda layer functionality. Now this is a simple python lib with common AWS-related functionality.
  Use https://github.com/Biomapas/B.CfnLambdaLayer to create lambda layers.
* Remove `DynamoDb` & `PynamoDb` functionality from this code. It has been moved and improved. 
  Find everything here: https://github.com/Biomapas/B.DynamoDbCommon. 

### 3.3.0
* Allow access of the value within validators.

### 3.2.0
* Add epic validation!
* Add `ValueValidator` for basic validation.
* Add `ValueValidatorPreset` for convenient validation.

### 3.1.0
* Extract api key from lambda event.
* Extract body from lambda event.

### 3.0.1
* Extend boto3 step-functions call timeout to maximum lambda execution time (15 minutes).

### 3.0.0
* Use the newest base layer `B.CfnLambdaLayer` 
  which uses new asset bundling mechanism (Dockerfile).

### 2.4.0
* Add Boto3 client validation under SfnCall function.

### 2.3.4
* Add functionality to pass Boto3 client to SfnCall function for multithreding support.

### 2.3.3
* Fix api empty dict serialization.

### 2.3.2
* Improve parsing of JWT claims from API Gateway authorizer output.

### 2.3.1
* If you want to use `cryptography` module, you must use Python 3.8.
* Add explanations for Python 3.8 versions.
* Fix supported layer python versions.

### 2.3.0
* Add Fernet encryption PynamoDB attribute.

### 2.2.1
* Fix KmsAttribute by introducing base64 encode/decode.

### 2.2.0
* Add field validator in util directory. Simple string validation.
* Add KMS attribute for PynamoDB.

### 2.1.2
* Add a list bytes batching utility.

### 2.0.6
* Handle errors when raising ValueError in SfnCall class.

### 2.0.4
* Simple return JSON of an output if SfnCall raised ValueError.

### 2.0.1
* Include .txt files.

### 2.0.0
* Complete refactor.
* Fix ugly if/else imports.
* Run unit tests inside lambda functions.
* Use b_cfn_lambda_layer dependency.
* Write more unit and integration tests.
* Add README documentation.

### 1.20.0
* Add validation when bundling with Docker.

### 1.19.0
* General testing improvements.
* Add Layer V2 integration tests.

### 1.18.0
* Add V2 Layer class to enable installation of dependencies.

### 1.16.0
* Add response method to return any type.
* Add `text/html` and `text/plain` headers.
* Add missing `fields` parameter support to `NeighbourEndpoint` class.

### 1.15.1
* Improve function return value handling for `InMemoryDataCache` class.

### 1.15.0
* Add in-memory data caching functionality.

### 1.14.0
* Add `fields` parameter support to `HttpEndpoint` class.

### 1.11.1
* Update DoNotUpdate class to be usable as a type.

### 1.11.0
* Add WebSocket Api Gateway message class to form consistent messages.

### 1.10.2
* Allow for changing HttpEndpoint behavior.

### 1.10.1
* Add ability to specify if to fail to errors.
* Try to read from env event bus name.

### 1.10.0
* Add factory to emit EventBridge events.

### 1.9.5
* Make the code a little more robust and less error prone.

### 1.9.4
* Assets input may contain garbage files too, hence, apply
cleanup commands directly on asset outputs folder.

### 1.9.3
* Add builds badge.

### 1.9.2
* Remove leftover code.
* Update requirements.

### 1.9.1
* Delete unnecessary files which result in different asset hash.
* Calculate hash when bundling.

### 1.9.0
* Add CSV headers.

### 1.8.3
* Ensure everything works with a robust integration test.

### 1.8.2
* Improve Boto3Version class.

### 1.8.1
* Fix bug when boto3 version is specified project files
are not copied.

### 1.8.0
* Change asset bundling to asset docker bundling if additional
dependencies are specified.
* Add ability to install boto3 library.
* Add more unit tests.
* Add integration tests to deploy and test the Layer in AWS.

### 1.7.0
* Simplify SSM parameters functionality.
* Add robust SSM parameter tests.

### 1.6.2
* Do not serialize returned ssm parameters.

### 1.6.1
* Add more logging for better visibility.

### 1.6.0
* SSM should_refresh function should be public.

### 1.5.1
* Add logging on ssm error decorator.

### 1.5.0
* Force using error_class to error_classes.

### 1.4.0
* Add functionality to fetch and cache SSM parameters.
* Add OS type parameters.

### 1.3.0
* Add media Response and wav/mpeg headers.

### 1.2.0
* Add DoNotUpdate class, useful when checking what parameters to update and what not.

### 1.1.3
* Implement retrying logic to HttpCall.

### 1.1.2
* Make sure test coverage is at least 80%.
* Add CI/CD pipeline.
* Add more encodings to decode responses.

### 1.1.1
* Add urllib3 dependency.

### 1.1.0
* Add DynamoDBEncoder that subclasses DecimalEncoder and additionally encodes sets as lists.

### 1.0.3
* Modify call_to_json function by checking whether the response contains body.

### 1.0.2
* Add exception logging for failed imports.

### 1.0.1
* Expose http_endpoint on NeigbourEndpoint class.

### 1.0.0
* Release version with major braking changes.
* Consistent naming for imports.
* Unit tests to cover all functions and classes.
* Add neighbour endpoint.
* General code improvements and cleanup.

### 0.0.16
* Fix logging imports.
* Add logging of exception tracebacks to exception_middleware.
* Add logging about HTTP requests.
* Set request scheme for parent API Gateway urls depending on current protocol.

### 0.0.15
* Add a CognitoAccessToken for parsing access token information provided by the API Gateway using Cognito authorizer.

### 0.0.14
* Add a LoggingManager for setting up logging configuration

### 0.0.13
* Add custom JSON encoder with support for decimal.Decimal encoding

### 0.0.12
* Implement API Gateway body parsing.

### 0.0.11
* Fix imports.

### 0.0.10
* Implement exceptions.

### 0.0.9
* Fix api gateway url.

### 0.0.8
* Add xml to dict converter utility. No dependencies.

### 0.0.7
* Fix imports.

### 0.0.6
* Add ability to check whether singleton was initialized.

### 0.0.5
* Remove description.

### 0.0.4
* Do not create an extra stack.

### 0.0.3
* Add safe initialization.

### 0.0.2
* Add Layer class and Singleton.

### 0.0.1
* Initial build.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/biomapas/B.LambdaLayerCommon.git",
    "name": "b-lambda-layer-common",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "AWS CDK Lambda Layer",
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/2a/7f/d5d97e2558935c8e7d2fc4051b4c0e963e82445c31d863f0793a9cd816ad/b_lambda_layer_common-4.5.0.tar.gz",
    "platform": null,
    "description": "# B.LambdaLayerCommon\n\n![Pipeline](https://github.com/Biomapas/B.LambdaLayerCommon/workflows/Pipeline/badge.svg?branch=master)\n\n> **DEPRECATION WARNING !!!**</br></br>\n> This library no longer supports lambda layers and eventually will be moved to another repository. \n> It is a simple python library of common methods to develop in AWS environment.\n> Create your own lambda layer using ![B.CfnLambdaLayer](https://github.com/Biomapas/B.CfnLambdaLayer)\n> and specify this library as a dependency. Example given below.\n> ```python\n> from b_cfn_lambda_layer.lambda_layer import LambdaLayer\n> layer = LambdaLayer(\n>   ...,\n>   dependencies={\n>      'b-lambda_layer_common': PackageVersion.from_string_version('4.0.0'),\n>   }\n> )\n> ```\n\n### Description\n\nThis is a simple python library, that contains various useful methods that will make infrastructure development \nmuch easier. \n\n### Remarks\n\n[Biomapas](https://www.biomapas.com/) aims to modernise life-science industry by sharing its IT knowledge with other companies and the community. \nThis is an open source library intended to be used by anyone. \nImprovements and pull requests are welcome. \n\n### Related technology\n\n- Python3\n- Docker\n- AWS CDK\n- AWS Lambda\n\n### Assumptions\n\nThis project assumes you have good knowledge in AWS. \n\n- Good Python skills and basis of OOP.\n\n### Useful sources\n\n- None.\n\n### Install\n\nBefore installing this library, ensure you have these tools setup:\n\n- Python / Pip\n\nTo install this project from source run:\n\n```\npip install .\n```\n\nOr you can install it from a PyPi repository:\n\n```\npip install b-lambda_layer_common\n```\n\n### Usage & Examples\n\nMain modules:\n\n- _api_gateway_\n  <br>Contains various functionalities related to API Gateway service and integrations.\n<br><br>\n- _cache_\n  <br>Contains caching mechanisms for lambda functions.\n<br><br>\n- _events_\n  <br>Contains functionality that supports event-driven architectures.\n<br><br>  \n- _exceptions_\n  <br>Contains advanced exception handling and propagation between lambda function chains.\n<br><br>  \n- _ssm_\n  <br>Contains SSM parameter store handling logic.\n<br><br>  \n- _util_\n  <br>Contains random fun stuff ;) \n<br><br>\n- _validation_\n  <br>Various value validations for python.\n<br><br>  \n- _ws_api_gateway_\n  <br>Contains various functionalities related to API Gateway websocket service and integrations.\n\n### Testing\n\nThis package has unit tests based on **pytest**.\nTo run tests simply run:\n\n```\npytest --cov=b_lambda_layer_common b_lambda_layer_common_test/unit --cov-fail-under=80\n```\n\n### Contribution\n\nFound a bug? Want to add or suggest a new feature? \nContributions of any kind are gladly welcome. \nYou may contact us directly, create a pull-request or an issue in github platform. \nLets modernize the world together.\n\n\n# Release history\n\n### 4.5.0\n* Update of the `CognitoAccessToken` class to parse authentication token either from the request headers or \nfrom the request context.\n\n### 4.4.0\n* Add decorator `remove_header` removing desired headers from API Gateway integration lambda event.\n\n### 4.3.0\n* Improve `ValueValidator` by adding `not_contains_whitespace` method.\n* Make `ValueValidatorPresets` more flexible.\n\n### 4.2.2\n* Make `MalformedPermissionErorr` inherit straight from `HttpException`.\n\n### 4.2.1\n* Typehint fixes.\n\n### 4.2.0\n* Add more custom `BException` exceptions.\n* 420 hehe...\n\n### 4.1.0\n* Add ability to specify custom exception when performing value validation.\n\n### 4.0.0\n* Deprecate lambda layer functionality. Now this is a simple python lib with common AWS-related functionality.\n  Use https://github.com/Biomapas/B.CfnLambdaLayer to create lambda layers.\n* Remove `DynamoDb` & `PynamoDb` functionality from this code. It has been moved and improved. \n  Find everything here: https://github.com/Biomapas/B.DynamoDbCommon. \n\n### 3.3.0\n* Allow access of the value within validators.\n\n### 3.2.0\n* Add epic validation!\n* Add `ValueValidator` for basic validation.\n* Add `ValueValidatorPreset` for convenient validation.\n\n### 3.1.0\n* Extract api key from lambda event.\n* Extract body from lambda event.\n\n### 3.0.1\n* Extend boto3 step-functions call timeout to maximum lambda execution time (15 minutes).\n\n### 3.0.0\n* Use the newest base layer `B.CfnLambdaLayer` \n  which uses new asset bundling mechanism (Dockerfile).\n\n### 2.4.0\n* Add Boto3 client validation under SfnCall function.\n\n### 2.3.4\n* Add functionality to pass Boto3 client to SfnCall function for multithreding support.\n\n### 2.3.3\n* Fix api empty dict serialization.\n\n### 2.3.2\n* Improve parsing of JWT claims from API Gateway authorizer output.\n\n### 2.3.1\n* If you want to use `cryptography` module, you must use Python 3.8.\n* Add explanations for Python 3.8 versions.\n* Fix supported layer python versions.\n\n### 2.3.0\n* Add Fernet encryption PynamoDB attribute.\n\n### 2.2.1\n* Fix KmsAttribute by introducing base64 encode/decode.\n\n### 2.2.0\n* Add field validator in util directory. Simple string validation.\n* Add KMS attribute for PynamoDB.\n\n### 2.1.2\n* Add a list bytes batching utility.\n\n### 2.0.6\n* Handle errors when raising ValueError in SfnCall class.\n\n### 2.0.4\n* Simple return JSON of an output if SfnCall raised ValueError.\n\n### 2.0.1\n* Include .txt files.\n\n### 2.0.0\n* Complete refactor.\n* Fix ugly if/else imports.\n* Run unit tests inside lambda functions.\n* Use b_cfn_lambda_layer dependency.\n* Write more unit and integration tests.\n* Add README documentation.\n\n### 1.20.0\n* Add validation when bundling with Docker.\n\n### 1.19.0\n* General testing improvements.\n* Add Layer V2 integration tests.\n\n### 1.18.0\n* Add V2 Layer class to enable installation of dependencies.\n\n### 1.16.0\n* Add response method to return any type.\n* Add `text/html` and `text/plain` headers.\n* Add missing `fields` parameter support to `NeighbourEndpoint` class.\n\n### 1.15.1\n* Improve function return value handling for `InMemoryDataCache` class.\n\n### 1.15.0\n* Add in-memory data caching functionality.\n\n### 1.14.0\n* Add `fields` parameter support to `HttpEndpoint` class.\n\n### 1.11.1\n* Update DoNotUpdate class to be usable as a type.\n\n### 1.11.0\n* Add WebSocket Api Gateway message class to form consistent messages.\n\n### 1.10.2\n* Allow for changing HttpEndpoint behavior.\n\n### 1.10.1\n* Add ability to specify if to fail to errors.\n* Try to read from env event bus name.\n\n### 1.10.0\n* Add factory to emit EventBridge events.\n\n### 1.9.5\n* Make the code a little more robust and less error prone.\n\n### 1.9.4\n* Assets input may contain garbage files too, hence, apply\ncleanup commands directly on asset outputs folder.\n\n### 1.9.3\n* Add builds badge.\n\n### 1.9.2\n* Remove leftover code.\n* Update requirements.\n\n### 1.9.1\n* Delete unnecessary files which result in different asset hash.\n* Calculate hash when bundling.\n\n### 1.9.0\n* Add CSV headers.\n\n### 1.8.3\n* Ensure everything works with a robust integration test.\n\n### 1.8.2\n* Improve Boto3Version class.\n\n### 1.8.1\n* Fix bug when boto3 version is specified project files\nare not copied.\n\n### 1.8.0\n* Change asset bundling to asset docker bundling if additional\ndependencies are specified.\n* Add ability to install boto3 library.\n* Add more unit tests.\n* Add integration tests to deploy and test the Layer in AWS.\n\n### 1.7.0\n* Simplify SSM parameters functionality.\n* Add robust SSM parameter tests.\n\n### 1.6.2\n* Do not serialize returned ssm parameters.\n\n### 1.6.1\n* Add more logging for better visibility.\n\n### 1.6.0\n* SSM should_refresh function should be public.\n\n### 1.5.1\n* Add logging on ssm error decorator.\n\n### 1.5.0\n* Force using error_class to error_classes.\n\n### 1.4.0\n* Add functionality to fetch and cache SSM parameters.\n* Add OS type parameters.\n\n### 1.3.0\n* Add media Response and wav/mpeg headers.\n\n### 1.2.0\n* Add DoNotUpdate class, useful when checking what parameters to update and what not.\n\n### 1.1.3\n* Implement retrying logic to HttpCall.\n\n### 1.1.2\n* Make sure test coverage is at least 80%.\n* Add CI/CD pipeline.\n* Add more encodings to decode responses.\n\n### 1.1.1\n* Add urllib3 dependency.\n\n### 1.1.0\n* Add DynamoDBEncoder that subclasses DecimalEncoder and additionally encodes sets as lists.\n\n### 1.0.3\n* Modify call_to_json function by checking whether the response contains body.\n\n### 1.0.2\n* Add exception logging for failed imports.\n\n### 1.0.1\n* Expose http_endpoint on NeigbourEndpoint class.\n\n### 1.0.0\n* Release version with major braking changes.\n* Consistent naming for imports.\n* Unit tests to cover all functions and classes.\n* Add neighbour endpoint.\n* General code improvements and cleanup.\n\n### 0.0.16\n* Fix logging imports.\n* Add logging of exception tracebacks to exception_middleware.\n* Add logging about HTTP requests.\n* Set request scheme for parent API Gateway urls depending on current protocol.\n\n### 0.0.15\n* Add a CognitoAccessToken for parsing access token information provided by the API Gateway using Cognito authorizer.\n\n### 0.0.14\n* Add a LoggingManager for setting up logging configuration\n\n### 0.0.13\n* Add custom JSON encoder with support for decimal.Decimal encoding\n\n### 0.0.12\n* Implement API Gateway body parsing.\n\n### 0.0.11\n* Fix imports.\n\n### 0.0.10\n* Implement exceptions.\n\n### 0.0.9\n* Fix api gateway url.\n\n### 0.0.8\n* Add xml to dict converter utility. No dependencies.\n\n### 0.0.7\n* Fix imports.\n\n### 0.0.6\n* Add ability to check whether singleton was initialized.\n\n### 0.0.5\n* Remove description.\n\n### 0.0.4\n* Do not create an extra stack.\n\n### 0.0.3\n* Add safe initialization.\n\n### 0.0.2\n* Add Layer class and Singleton.\n\n### 0.0.1\n* Initial build.\n\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Common opinionated utilities for every day development.",
    "version": "4.5.0",
    "project_urls": {
        "Homepage": "https://github.com/biomapas/B.LambdaLayerCommon.git"
    },
    "split_keywords": [
        "aws",
        "cdk",
        "lambda",
        "layer"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b486676565bdc13108fe0080d147eb39c2c32f843ec77b4071618b4014474a86",
                "md5": "ea19adf9a6477e2b745ba50b1729755a",
                "sha256": "c3909b16ec43543d2b81a1b9f84c660ec5b0d5599bfe41ac2caafb4f635aeb97"
            },
            "downloads": -1,
            "filename": "b_lambda_layer_common-4.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ea19adf9a6477e2b745ba50b1729755a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 68985,
            "upload_time": "2024-05-02T12:44:33",
            "upload_time_iso_8601": "2024-05-02T12:44:33.175828Z",
            "url": "https://files.pythonhosted.org/packages/b4/86/676565bdc13108fe0080d147eb39c2c32f843ec77b4071618b4014474a86/b_lambda_layer_common-4.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a7fd5d97e2558935c8e7d2fc4051b4c0e963e82445c31d863f0793a9cd816ad",
                "md5": "52247d2ae9b76a9c6c4c9f4c3d07ab08",
                "sha256": "b94e731823e2ee32e51d777384f9b0b52c672bab3875f4b750e92da41cf72d50"
            },
            "downloads": -1,
            "filename": "b_lambda_layer_common-4.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "52247d2ae9b76a9c6c4c9f4c3d07ab08",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 43832,
            "upload_time": "2024-05-02T12:44:36",
            "upload_time_iso_8601": "2024-05-02T12:44:36.233005Z",
            "url": "https://files.pythonhosted.org/packages/2a/7f/d5d97e2558935c8e7d2fc4051b4c0e963e82445c31d863f0793a9cd816ad/b_lambda_layer_common-4.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-02 12:44:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "biomapas",
    "github_project": "B.LambdaLayerCommon",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "b-lambda-layer-common"
}
        
Elapsed time: 0.23622s