I have a Sqlite 3 and/or MySQL table named \"clients\"..
Using python 2.6, How do I create a csv file named Clients100914.csv with headers? excel dialect...
unless i'm missing something, you just want to do something like so...
f = open("somefile.csv") f.writelines("header_row")
logic to write lines to file (you may need to organize values and add comms or pipes etc...)
f.close()