Daniel Cloutier wrote:[color=blue]
> is it possible to edit or write Word-files out of a Python-Program?[/color]
Word uses a proprietary binary format, so you don't really
have as an option the simple "open file, make some changes,
write file" approach you might be picturing.
On the other hand, this *is* Python, so you have alternatives:
1. Use ActiveX and control Word from Python. This is described
well in Mark Hammond's book on Win32 programming with Python,
web pages (use Google), and posts in the comp.lang.pytho n archives.
2. Write HTML or RTF files, which are not proprietary binary
formats. These can be edited in Python and then written back
again. Not sure if there's an RTF library, but "it's just text".
3. Define in more detail what you are actually looking for
("edit" is ill-defined) including the context, and you'll
probably get another three or four ways of doing it.
[Daniel Cloutier][color=blue]
> is it possible to edit or write Word-files out of a Python-Program?[/color]
If you have access to Office 2003, are feeling brave, and have a lot
of time on your hands, you could create and manipulate the XML
structures that Word 2003 uses.
It thought the group members might find it interesting to see such a
file, so I have exported a "Hello World!" document as XML, and posted
the result below. I had to tidy it up a little, the original came out
all on one line. And I had to add an encoding declaration :-)
In terms of generating such structures, well, everybody has their own
favourite *ML templating language. I'd use TAL or XSLT in "Literal
Result Element as Stylesheet" mode ...
The World Wide Web Consortium (W3C) is an international community where Member organizations, a full-time staff, and the public work together to develop Web standards.
Daniel Cloutier <danielcloutier @yahoo.com> wrote in message news:<c63fgi$7e sh7$1@ID-47444.news.uni-berlin.de>...[color=blue]
>
> is it possible to edit or write Word-files out of a Python-Program?[/color]
Yes.
(a) You need the win32all modules from Mark Hammond.
(b) To try out the object model of MS Word, press ALT+F11 to bring up
the VBA environment, then F2 to view the object browser. It's a
complicated subject.
-------------------------------------------
import pythoncom
from win32com.client import Dispatch
app = Dispatch('Word. Application')
app.Visible = 1
doc = app.Documents.A dd()
s = doc.Sentences(1 )
s.Text = 'This is a test.'
doc.SaveAs('C:\ \mydoc2.doc')
app.Quit()
You may want to add better exception handling, otherwise, you may
often have danggling processes when exceptions happen. (You'll then
have to manually kill them from the task manager.)
Hung Jung Lu wrote:[color=blue]
> Daniel Cloutier <danielcloutier @yahoo.com> wrote in message news:<c63fgi$7e sh7$1@ID-47444.news.uni-berlin.de>...
>[color=green]
>>is it possible to edit or write Word-files out of a Python-Program?[/color]
>
>
> Yes.
>
> (a) You need the win32all modules from Mark Hammond.
>
> (b) To try out the object model of MS Word, press ALT+F11 to bring up
> the VBA environment, then F2 to view the object browser. It's a
> complicated subject.
>
> -------------------------------------------
> import pythoncom
> from win32com.client import Dispatch
>
> app = Dispatch('Word. Application')
> app.Visible = 1
> doc = app.Documents.A dd()
> s = doc.Sentences(1 )
> s.Text = 'This is a test.'
> doc.SaveAs('C:\ \mydoc2.doc')
> app.Quit()
>
> app = None
> pythoncom.CoUni nitialize()
> --------------------------------------------
>
> You may want to add better exception handling, otherwise, you may
> often have danggling processes when exceptions happen. (You'll then
> have to manually kill them from the task manager.)
>
> regards,
>
> Hung Jung[/color]
thanks a lot, yesterday i found out myself that i have to use the
win32com package, but i didn't know how to add some text
Comment