Skip to content

Instantly share code, notes, and snippets.

View GabrielSGoncalves's full-sized avatar
🏀
Data Engineer @ Perform-Billtrust

GabrielSGoncalves GabrielSGoncalves

🏀
Data Engineer @ Perform-Billtrust
View GitHub Profile
@GabrielSGoncalves
GabrielSGoncalves / lambda_function.py
Last active May 8, 2022 20:16
Amazon Lambda function used on medium article
import json
from io import StringIO
import boto3
import os
import pandas as pd
def write_dataframe_to_csv_on_s3(dataframe, filename, bucket):
""" Write a dataframe to a CSV on S3 """