My point is that using either pod (from appy framework, which is a pain to use for me) or the OpenOffice UNO bridge that seems soon to be deprecated, and that requires OOo.org to run while launching my script is not satisfactory at all.

Can anyone point me to a neat way to produce a simple yet clean ODT (tables are my priority) without having to code it myself all over again ?

edit: I'm giving a try to ODFpy that seems to do what I need, more on that later.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Your mileage with odfpy may vary. I didn't like it - I ended up using a template ODT, created in OpenOffice, oppening the contents.xml with ziplib and elementtree, and updating that. (In your case, it would create only the relevant table rows and table cell nodes), then recorded everything back.

It is actually straightforward, but for making ElementTree properly work with the XML namespaces. (it is badly documente) But it can be done. I don't have the example, sorry.

link|improve this answer
Thanks for your answer. I'm thinking that it will be limited as you said. But what's the most important for now is that my Python program is really user-friendly and for that I don't what user to create their own templates, because non experimented users are not at ease with templates : so the more is on the programs part, the better. – EEva Apr 2 '11 at 12:30
feedback

Your Answer

 
or
required, but never shown

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