I want to remove the header from my csv writer (the output file). Not sure what to do. Below is my code:
def WriteToCSV(OutPutFile, dataOut):
global logger
try:
with open(OutPutFile, 'w', newline='') as csvfile:
writer = csv.writer(csvfile, delimiter='|', quotechar='"', quoting=csv.QUOTE_ALL)
for data in dataOut :
writer.writerow(data)