Tagged Questions

5
votes
1answer
510 views

How do I search & replace all occurrences of a string in a ms word doc with python?

I am pretty stumped at the moment. Based on http://stackoverflow.com/questions/1045628/can-i-use-win32-com-to-replace-text-inside-a-word-document I was able to code a simple template system that ...
4
votes
2answers
851 views

How can I use Microsoft Word's spelling/grammar checker programmatically?

I want to process a medium to large number of text snippets using a spelling/grammar checker to get a rough approximation and ranking of their "quality." Speed is not really of concern either, so I ...
0
votes
5answers
213 views

.doc to pdf using python

I'am tasked with converting tons of .doc files to .pdf. And the only way my supervisor wants me to do this is through MSWord 2010. I know I should be able to automate this with python COM automation. ...
0
votes
0answers
75 views

Parsing MS Word Lists with win32com

How to step through a numbered list in a Word doc, stop at the desired number then pull out the content beneath it (everything before the next item in that list)? I've iterated over Tables in a Word ...
0
votes
1answer
545 views

Using python win32com can't make two separate tables in MS Word 2007

I am trying to create multiple tables in a new Microsoft Word document using Python. I can create the first table okay. But I think I have the COM Range object configured wrong. It is not pointing ...
0
votes
1answer
220 views

How to save pictures to document with Python win32com

I am making html to doc converter from win32com.client import Dispatch wrd=Dispatch('Word.Application') doc=wrd.Documents.Open(inputfile) doc.SaveAs(outputfile, FileFormat=0) ...