This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 """ |
NewerOlder