You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changing the delimiter to semicolon and removing quotation marks will help to open the csv file in excel.
Can you please add an option for that? Also in comment would be very helpful - so everyone can use what he needs :)
The text was updated successfully, but these errors were encountered:
For whoever will find this useful - to remove quotation, change writer = csv.DictWriter(f, header, quoting=csv.QUOTE_ALL)
to writer = csv.DictWriter(f, header, quoting=csv.QUOTE_NONE)
Changing the delimiter to semicolon and removing quotation marks will help to open the csv file in excel.
Can you please add an option for that? Also in comment would be very helpful - so everyone can use what he needs :)
The text was updated successfully, but these errors were encountered: