Skip to main content

A sidekick to make your AWS Lambda async

Project description


Logo

lambchop

A sidekick that makes your AWS Lambda async

version

Overview

lambchop is an Python package that gives regular AWS Lambda asyncronous functionality by allow them to run background processes. This works by utilizing AWS Lambda extensions which runs in a different process than the main lambda function code.

Installation

pypi:

pip install lambchop

github:

pip install git+ssh://git@github.com/dave-lanigan/lambchop.git
pip install git+https://git@github.com/dave-lanigan/lambchop.git

📝 Sudo privileges may be required because the lambda extension resides in the /opt/extensions/ directory

Usage

import time
from lambchop import SideKick

def long_running_process(x, y):
    print("Starting process 1.")
    time.sleep(x + y)
    print("Completed.")


def long_running_process2(x, y):
    print("Starting process 2.")
    time.sleep(x + y)
    print("Completed.")


def main():
    sk = SideKick()
    sk.add_task(long_running_process, x=5, y=3)
    sk.add_task(long_running_process2, x=5, y=3)
    sk.process()

if __name__ == "__main__":
    main()

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

lambchop-0.0.13.tar.gz (5.8 kB view hashes)

Uploaded Source

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