I have a folder, where I have several zip files saved, e.g.:
Folder path: C:\Users\FolderA
Files in the folder: A.Zip, B.Zip,....,Z.Zip
this zip files are all protected with the same password: lordoftherings
How Can i load all files in that zip files into one dataframe (note that every zip file contains exactly one csv file).
So far I only know how can i load multiple csv files. And I know how I can load a zip file:
zf = zipfile.ZipFile('C:/...')
dfClearstream = pd.read_csv(zf.open('....csv'), sep=';')
So the desired outcome would be one dataframe in pandas.