I'm having some trouble with this bit of code
#data_list = some data
wb = xlwt.Workbook()
s = wb.add_sheet("Test Sheet")
for c, data in enumerate(data_list):
xf=None
if isinstance(data, datetime.time):
xf = xlwt.easyxf(num_format_str='HH:MM:SS') #works
elif isinstance(data, datetime.date):
xf = xlwt.easyxf(num_format_str='MM/DD/YYYY') #doesn't work
if xf:
sheet.write(r+1,c,data, xf)
else:
sheet.write(r+1,c,data)
In the output, the dates all appear as "#####" initially. I can get excel to format them properly by interacting with a cell in each column, but it's time consuming. I'm tried playing with the num_format_str a little, but no luck so far.
style_compressionarg of theWorkbookconstructor. – John Machin Jun 29 '11 at 20:44