I've programatically made a bunch of Excel sheets with xlwt in python. It's all gone fine, but now I need to convert them all to pdf. I've been trying to do this with pywin32 and the com interface. I can get somewhat close by going like this:

import win32com.client
o = win32com.client.Dispatch("Excel.Application")
o.Visible = 1
wb = o.Workbooks.Open('foo.xls')
ws = wb.Worksheets[1]
ws.printout()

But unfortunately when I do this it pops up the adobe printer screen asking me for the path I want to save the pdf to, and if I have to enter that in or click ok for every page it defeats the purpose of doing it programatically. Is there any way I can enter this path in the python code rather than manually? Is there a better way of converting each of these sheets in each of these workbooks to pdf? Thanks a lot, Alex

link|improve this question

1  
Unfortunately that's the default behavior of the Adobe PDF printer driver. – SimpleCoder Feb 1 at 2:01
feedback

2 Answers

up vote 2 down vote accepted

Instead of using the PrintOut method, use ExportAsFixedFormat. You can specify the pdf format and supply a file name. Try this:

ws.ExportAsFixedFormat(0, 'c:\users\alex\foo.pdf')
link|improve this answer
That did it! Thanks a lot. – Alex S Feb 1 at 15:16
feedback

You can do a save as PDF or print to PDF. That should bypass your print driver issues.

link|improve this answer
hmm ok, sorry how do I do that? – Alex S Feb 1 at 2:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.