Skip to main content

A toolkit for serverless and AWS, with a focus on AWS Lambda and dynamodb.

Project description

Py aws Lambda Toolkit

This is a lightweight Python toolkit for easily and quickly creating AWS Lambda functions with the Serverless Framework. It includes the following features:

  • DynamoDB shortcuts: Avoid boilerplate code for DynamoDB operations.
  • HTTP event processing: Get the event of the HTTP request and parse it, splitting it into the path, query string, body, headers, etc.
  • HTTP response shortcuts: Create HTTP responses with the correct format and status code.
  • JWT authentication: Create and verify JWT tokens as easily as possible.
  • Logger: Log messages with a format that is easy to read.
  • Mappers: Remove specified fields from a dictionary or list of dictionaries.
  • Parser: Convert dictionary keys to snake case or camel case.
  • Password hashing: Hash passwords with salt and verify them.
  • DynamoDB scan builder: Build a scan query with specified filters.
  • Validator: Validate a dictionary with specified rules.

Installation

Install the package with pip:

pip install py-aws-lambda-toolkit

Usage

Use the package in your code:

import logging
from py_aws_lambda_toolkit.http_event import process_event
from py_aws_lambda_toolkit.http_response import create_response
from py_aws_lambda_toolkit.status import StatusCode
from py_aws_lambda_toolkit.logger import logging

status = StatusCode()

def handler(event, context):
    # Process the event
    event_data = process_event(event)
    event_body = event_data.get("body", {})

    logging.info("Event body: %s", event_body)

    # Create a response
    response = create_response(
        { "ok": True, "message": "Processed event successfully" },
        status=status.code_200_success,
    )

    return response

Contributing

Contributions are welcome! For bug reports or requests please submit an issue. For code contributions please create a pull request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Further Reading

This project is in an starting phase. More documentation will be added soon and the project will be improved with more features.

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

py-aws-lambda-toolkit-0.0.5.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

py_aws_lambda_toolkit-0.0.5-py3-none-any.whl (15.5 kB view details)

Uploaded Python 3

File details

Details for the file py-aws-lambda-toolkit-0.0.5.tar.gz.

File metadata

  • Download URL: py-aws-lambda-toolkit-0.0.5.tar.gz
  • Upload date:
  • Size: 11.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for py-aws-lambda-toolkit-0.0.5.tar.gz
Algorithm Hash digest
SHA256 5ad4b833e90154dcedce15fb18bd6f37535dc368fa9de6a04f61b71d59fbffbb
MD5 4f2f0da96b01d3c3fea293beee916776
BLAKE2b-256 bf430cd8bef35a1eeabe619804a992dfec1f7551ec08ae4944771cd1ed9773a2

See more details on using hashes here.

File details

Details for the file py_aws_lambda_toolkit-0.0.5-py3-none-any.whl.

File metadata

File hashes

Hashes for py_aws_lambda_toolkit-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 330b1f50e172b20b074f46491e490f7d21d06efbc37c444f672583fa52a3f2f0
MD5 9f7d5d37abfa7017c9fc102375b676f9
BLAKE2b-256 c05a87ac316a7d55d4023e84dc8cebdf685a8fe42d79a7f0a8ed9c1ef51933b1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page