I have a script which pulls in data from a csv file, does some manipulations to it and creates an output excel file. But, its a tedious process as I need to do it for multiple f
you can run this scrip inside a for loop:
for file in os.listdir(INPUT_PATH): if file.endswith('.csv') or file.endswith('.CSV'): INPUT_FILE = INPUT_PATH + '/' + file OUTPUT_FILE = INPUT_PATH + '/Outputs/' + file.[:-4] + 'xlsx'