I am trying to write and save a CSV file to a specific folder in s3 (exist). this is my code:
from io import BytesIO import pandas as pd import boto3 s3 =
This should work
def to_s3(bucket,filename, content): client = boto3.client('s3') k = "folder/subfolder"+filename client.put_object(Bucket=bucket, Key=k, Body=content)