[EMAIL PROTECTED] wrote:
> Is it possible to create a executable of a python program that refers
> to Excel COM objects with the help of py2exe.
Hi, I just used py2exe to create an executable. If you want to deliver
the package with an installation wizard, just use Inno Setup tools
(http://www.jr
Gentlemen,
Thanks for your responses. I also found some additional threads on this
newsgroup that gave me insight into how to use the MS Excel com objects
(or whatever they are called)...
So I used this:
xl = win32com.client.Dispatch("Excel.Application")
wb = xl.Workbooks.Open(outfile01)
prodws
Greetings,
I'm new to python and am in the process of writing a script to parse
some CSV data, spread it across multiple Excel worksheets and then
generate charts. I searched the internet to find some place where I
could look up a HOWTO doc/recipe to do that using either pyExcelerator
or win32com.