I don't think this question has been asked before so I'd greatly appreciate it if someone could guide me in the right direction.
I'll keep it short and sweet, Is it possible to only quote the column values and keep the column headers unquoted when using CSV.QUOTE_NONNUMERIC?
docs.to_csv("test.csv", index = False, quoting = csv.QUOTE_NONNUMERIC)
Actual Output:
"id","reportname"
1,"TestReport"
Expected Output:
id,reportname
1,"TestReport"