Skip to main content

for invoking aws lambda functions

Project description

lambdaSdk

easy invoking lambda functions

written on top of boto3, for the shortest way to invoke aws lambda functions

Install

pip install lambdasdk

How to use

prepare

Create user and set up creds

If not on aws, you need to create iam account and map the following keys

user and pw

if not on aws
user = aws_access_key_id
pw = aws_secret_access_key
if run on aws
user = None
pw = None
from lambdasdk.lambdasdk import Lambda
lambda_ = Lambda(
    user = USER,
    pw = PW,
    region = 'ap-southeast-1'
)
lambda_.invoke(
    functionName= 'lambda-pip' ,
    input = {'test':'test'}, 
    invocationType= 'RequestResponse' 
)
{'statusCode': 200, 'body': '"Hello from Lambda!"'}

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

lambdasdk-0.0.15.tar.gz (9.4 kB view hashes)

Uploaded Source

Built Distribution

lambdasdk-0.0.15-py3-none-any.whl (7.2 kB view hashes)

Uploaded Python 3

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