Is it possible to read and write Word (2003 and 2007) files in Python without using a COM object?
I know that I can:
f = open('c:\file.doc', "w")
f.write(text)
f.close()
but Word will read it as an HTML file not a native .doc file.
|
Is it possible to read and write Word (2003 and 2007) files in Python without using a COM object?
but Word will read it as an HTML file not a native .doc file. |
||||
|
|
I'd look into IronPython which intrinsically has access to windows/office APIs because it runs on .NET runtime. |
||||
|
|
|
See python-docx https://github.com/mikemaccana/python-docx This has worked very well for me. |
|||
|
|
|
The answers to this question may be helpful. |
|||
|
|
|
doc (Word 2003 in this case) and docx (Word 2007) are different formats, where the latter is usually just an archive of xml and image files. I would imagine that it is very possible to write to docx files by manipulating the contents of those xml files. However I don't see how you could read and write to a doc file without some type of COM component interface. |
|||
|
|