[python] create excel file with multicolumns/multistrings

Hello, forums!
Im writing a little python script for generating OS stats/hw info/etc report into xls format (dont tell me xls is evil: tell it to clients that want it, not accepting even pdf:)).
Ive found pyExcelerator lib that (should) work for that, but well, there is NO documentation for how to use that lib. Any other variants?
Or, which would be much better, is there any good, opensource and platform-independant TeX -> doc/xls converter, that will work ok for complicated tables with multicolumns, colours and multilines?
 
I don't use python but I have used similar perl modules. They all use the same technique; OLE.

You can find a lot of information on Microsoft's MSDN website. It's usually quite easy to 'translate' a visual basic script to something else. As long as you handle the objects the same it doesn't matter what language you use.
 
CSV files can't have any formatting.

HTML however will work fine for excel. You could make an .xls file with html in it. It is supported by Microsoft and the client wouldn't even know.
 
Back
Top