🌐
GitHub
github.com › grantcooksey › aws-lambda-python-examples
GitHub - grantcooksey/aws-lambda-python-examples: Lessons and examples to get started using aws lambda function in python · GitHub
Lessons and examples to get started using aws lambda function in python - grantcooksey/aws-lambda-python-examples
Starred by 61 users
Forked by 41 users
🌐
GitHub
github.com › shreyasgaonkar › aws-lambda-code-samples
GitHub - shreyasgaonkar/aws-lambda-code-samples: Lambda sample codes for EC2, Lambda, API Gateway and SNS in python runtime. · GitHub
Lambda sample codes for EC2, Lambda, API Gateway and SNS in python runtime. - shreyasgaonkar/aws-lambda-code-samples
Starred by 29 users
Forked by 20 users
Languages   Python
🌐
GitHub
github.com › LukasRychtecky › aws-lambda-python-example
GitHub - LukasRychtecky/aws-lambda-python-example: An example of AWS Lambda in Python with libraries. · GitHub
An example of AWS Lambda in Python with libraries. - LukasRychtecky/aws-lambda-python-example
Starred by 4 users
Forked by 3 users
Languages   Python 55.9% | Makefile 44.1%
🌐
GitHub
github.com › alfonsof › aws-python-examples
GitHub - alfonsof/aws-python-examples: Python examples on AWS (Amazon Web Services) using AWS SDK for Python (Boto3). How to manage EC2 instances, Lambda Functions, S3 buckets, etc. · GitHub
Python examples on AWS (Amazon Web Services) using AWS SDK for Python (Boto3). How to manage EC2 instances, Lambda Functions, S3 buckets, etc. - alfonsof/aws-python-examples
Starred by 62 users
Forked by 60 users
Languages   Python
🌐
GitHub
github.com › nficano › python-lambda
GitHub - nficano/python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda. · GitHub
First, you must create an IAM Role on your AWS account called lambda_basic_execution with the LambdaBasicExecution policy attached. On your computer, create a new virtualenv and project folder. $ mkvirtualenv pylambda (pylambda) $ mkdir pylambda · Next, download Python-Lambda using pip via pypi.
Starred by 1.5K users
Forked by 225 users
Languages   Python 97.3% | Makefile 2.7%
🌐
GitHub
github.com › aws › aws-lambda-python-runtime-interface-client
GitHub - aws/aws-lambda-python-runtime-interface-client · GitHub
docker run -d -v ~/.aws-lambda-rie:/aws-lambda -p 9000:8080 \ --entrypoint /aws-lambda/aws-lambda-rie \ myfunction:latest \ /usr/local/bin/python -m awslambdaric app.handler
Starred by 294 users
Forked by 83 users
Languages   Python 92.0% | Shell 3.6% | C++ 3.4% | Makefile 1.0%
🌐
GitHub
github.com › awsdocs › aws-doc-sdk-examples › blob › main › python › example_code › lambda › lambda_basics.py
aws-doc-sdk-examples/python/example_code/lambda/lambda_basics.py at main · awsdocs/aws-doc-sdk-examples
Welcome to the AWS Code Examples Repository. This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below. - aws-doc-sdk-examples/python/example_code/lambda/lambda_basics.py at main · awsdocs/aws-doc...
Author   awsdocs
🌐
GitHub
github.com › aws › aws-lambda-builders
GitHub - aws/aws-lambda-builders: Python library to compile, build & package AWS Lambda functions for several runtimes & framework · GitHub
Python library to compile, build & package AWS Lambda functions for several runtimes & framework - aws/aws-lambda-builders
Starred by 381 users
Forked by 158 users
Languages   Python 99.9% | Makefile 0.1%
🌐
GitHub
github.com › joelparkerhenderson › demo_aws_lambda_function_hello_world_as_python
GitHub - joelparkerhenderson/demo_aws_lambda_function_hello_world_as_python: Demo AWS lambda function HelloWorld.py as python · GitHub
aws lambda create-function \ --function-name HelloWorld \ --runtime python3.6 \ --role arn:aws:iam::048251220134:role/demo-aws-cloudwatch-lambda-role \ --handler HelloWorld.lambda_handler \ --zip-file fileb://HelloWorld.zip
Author   joelparkerhenderson
Find elsewhere
🌐
GitHub
github.com › nicor88 › aws-python-lambdas
GitHub - nicor88/aws-python-lambdas: Collection of AWS Lambda functions in Python · GitHub
# create env conda create --name aws-python-lambdas python=3.6.2 # activate env source activate aws-python-lambdas pip install boto3 pip install pytest # install libs from the requirements of each single lambda for i in src/*/; do pip install -r $i"requirements.txt"; done
Starred by 11 users
Forked by 9 users
Languages   Python 97.6% | Shell 2.4%
🌐
GitHub
github.com › aws-samples › aws-cloudformation-inline-python-lambda-example
GitHub - aws-samples/aws-cloudformation-inline-python-lambda-example: Example AWS Lambda function deployed inline in a CloudFormation template · GitHub
This CloudFormation template deploys an AWS Lambda function, Amazon DynamoDB table, Amazon CloudWatch Logs log group, and all IAM roles with the minimum necessary permissions. The Lambda function itself inserts a random 10-character alphabetic ...
Starred by 2 users
Forked by 8 users
🌐
GitHub
github.com › Moesif › moesif-aws-lambda-python-example
GitHub - Moesif/moesif-aws-lambda-python-example: Example using Moesif API Analytics with AWS Lambda · GitHub
Example using Moesif API Analytics with AWS Lambda - Moesif/moesif-aws-lambda-python-example
Forked by 3 users
Languages   Python
🌐
GitHub
github.com › topics › aws-lambda-python
aws-lambda-python · GitHub Topics · GitHub
An AWS Lambda function created in Python 2.7 that triggers on CloudWatch Event of an EC2 instance starting and takes the Public IPv4 Address and updates an A-record within Cloudflare DNS using Cloudflare's API.
🌐
GitHub
github.com › awsdocs › aws-doc-sdk-examples › blob › main › python › example_code › lambda › lambda_handler_basic.py
aws-doc-sdk-examples/python/example_code/lambda/lambda_handler_basic.py at main · awsdocs/aws-doc-sdk-examples
This repo contains code examples used in the AWS documentation, AWS SDK Developer Guides, and more. For more information, see the Readme.md file below. - aws-doc-sdk-examples/python/example_code/lambda/lambda_handler_basic.py at main · awsdocs/aws-doc-sdk-examples
Author   awsdocs
🌐
GitHub
github.com › chrisnappin › hello-world-python-lambda
GitHub - chrisnappin/hello-world-python-lambda: Hello World Lambda function, converted from node.js to python · GitHub
Very simple AWS Lambda example, adated from https://github.com/aj-ali/my-app-repo and converted to Python.
Forked by 2 users
Languages   Python
🌐
GitHub
github.com › aws-samples › aws-lambda-extensions
GitHub - aws-samples/aws-lambda-extensions: A collection of sample extensions to help you get started with AWS Lambda Extensions · GitHub
Custom runtime extension: A demo showing how to learn about the Extensions API as explained in the blog post Building Extensions for AWS Lambda. Caching Extension: The cache demo code sample is written in Go and acts as a companion process which a Lambda function can use as both a data cache (using DynamoDB) and configuration cache (using Systems Manager Parameter Store). Go Extension: Sample: how to get a basic extension written in Go up and running. Python Extension: Sample: how to get a basic extension written in Python 3 up and running.
Starred by 488 users
Forked by 145 users
Languages   Go 46.1% | Python 18.5% | Shell 11.3% | JavaScript 8.1% | Rust 7.6% | C# 4.2%
🌐
GitHub
github.com › 4dn-dcic › python-lambda
GitHub - 4dn-dcic/python-lambda: A toolkit for developing and deploying serverless Python code in AWS Lambda.
A toolkit for developing and deploying serverless Python code in AWS Lambda. - 4dn-dcic/python-lambda
Author   4dn-dcic
🌐
GitHub
github.com › TailorDev › hello-lambda
GitHub - TailorDev/hello-lambda: :fire: An example of a Python (AWS) Lambda exposed with API Gateway, configured with Terraform.
April 6, 2021 - :fire: An example of a Python (AWS) Lambda exposed with API Gateway, configured with Terraform. - TailorDev/hello-lambda
Starred by 119 users
Forked by 59 users
Languages   HCL 93.8% | Makefile 3.7% | Python 2.5% | HCL 93.8% | Makefile 3.7% | Python 2.5%