i would like to read a csv sheet. So far i have a loop which reads all rows from sheet and creates a specific txt file for each row.
with openCSV(file) as newData:
reader = csv.reader(newData)
next(reader)
dictData = {}
for i, row in enumerate(reader, 1)
dictData = {'articleID' = row[0], 'Desc':row[1], ....}
thats working fine.
Now what i want is:
If there are more articleID's with the same numbers it should be added in one txt file.
How can i do this?
My CSV File: