Append data frame to S3 existing data

Hi all, is it possible to append a data frame from streamlit to an existing dataset (CSV) in S3

Technically yes, you will need to get the current bytes of the CSV in S3, parse it as a CSV object in Python and using Pandas Append your data frame to it and re-upload it using put_object. You can do all the S3 operations using BOTO3 library.

hi ! can you share more details like explain your architecture simply in detail. aside you can check out connection to source docs

is seems you need to phare you S3 data to csv yes it possible once you covert all data ti data
frame with pandas

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.