Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kamalber/aws-s3-trigger

This projects is about converting a file from json to csv , the lambda function is triggered once a file is being added to s3
https://github.com/kamalber/aws-s3-trigger

Last synced: 25 days ago
JSON representation

This projects is about converting a file from json to csv , the lambda function is triggered once a file is being added to s3

Awesome Lists containing this project

README

        

### lambda fucntion to convert json file to csv file

- the lambda function is triggered once the file is uploaded to S3,
- json file is not a json list, data in the file is lines of json obejcts , tat way the script read the file line by line and load it a json objects

### required packages
boto3

# Deploy packages for AWS lambda
- $ python -m virtualenv venv
- $ .\venv\Scripts\activate
- $ pip install -r requirements.tx
- $ deactivate