I am currently opening a csv file as is:
request_csv = s3_client.get_object(Bucket='bucketname', Key='dw/file.csv')
I’d like to change this to open all files inside dw/folder
(they are all CSV) into a single Dataframe. How can I approach this? Any pointers would be appreciated.
1