Metadata-Version: 2.1
Name: bails-lambda-utils
Version: 0.1.0
Summary: For making lambdas easier
Home-page: https://github.com/beverts312/lambda-utils
Author: Bailey Everts
Author-email: me@baileyeverts.net
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: pynamodb

# Bails Lambda Utils

For making lambda's easier


## Usage

### Decorators
The libarary provides a decorator `lambda_handler` which should be attached to the any handler recieiving API calls.
The decorator will automatically map exceptions to appriorate response types:
|Exception|Response|
|-|-|
|pynamodb.exceptions.DoesNotExist|404 - Not Found|
|bails_lambda_utils.errors.PermissionError|403 - Forbidden|
|bails_lambda_utils.errors.RequiredParamException|400 - Specifying which param is missing|
|Exception|500 - With reference to aws_request_id|

Example:
```
from bails_lambda_utils.handler import lambda_handler
from bails_lambda_utils.responses import Response

@lambda_handler
def get(event, context={}):
    #... some logic
    return Response(status_code=200, message="ok").to_dict()
```

### Responses + Encoders
Docs coming soon

### Misc Utils
Docs coming soon

