Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kamalber/aws-s3-trigger
- Owner: kamalber
- Created: 2021-05-29T15:36:29.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-24T17:38:41.000Z (over 2 years ago)
- Last Synced: 2024-10-21T01:43:08.943Z (2 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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