Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicor88/aws-python-lambdas
Collection of AWS Lambda functions in Python
https://github.com/nicor88/aws-python-lambdas
aws aws-lambda boto3 conda python python-3-6
Last synced: about 1 month ago
JSON representation
Collection of AWS Lambda functions in Python
- Host: GitHub
- URL: https://github.com/nicor88/aws-python-lambdas
- Owner: nicor88
- License: mit
- Created: 2017-05-07T14:44:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-13T10:54:01.000Z (over 5 years ago)
- Last Synced: 2024-10-07T22:46:19.392Z (about 1 month ago)
- Topics: aws, aws-lambda, boto3, conda, python, python-3-6
- Language: Python
- Homepage:
- Size: 35.5 MB
- Stars: 11
- Watchers: 2
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/nicor88/aws-python-lambdas.svg?branch=master)](https://travis-ci.org/nicor88/aws-python-lambdas)
# aws-python-lambdas
Collection of python lambda function## Setup Conda Env
# 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# Structure
└── src/
├── hello_world_lambda
│ ├── __init__.py
│ ├── requirements.txt
│ └── lambda_function.py
└── lambda_function_test_
├── __init__.py
├── requirements.txt
└── lambda_function.pyWhere:
* requirements.txt: contains the libs needed by the lambda
* lambda_function.py contains the lambda handlerdef lambda_handler(event, context):
something = 'hello_world'
return something