Write ooxml .ods (spreadsheat) from python?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Neal Becker

    Write ooxml .ods (spreadsheat) from python?

    I'd like to output some data directly in .ods format. This format appears
    to be quite complex. Is there any python software available to do this? I
    did look at pyuno briefly. It looks pretty complicated also, and it looks
    like it uses it's own private version of python, which would not help me.

  • johnf

    #2
    Re: Write ooxml .ods (spreadsheat) from python?

    Neal Becker wrote:
    I'd like to output some data directly in .ods format. This format appears
    to be quite complex. Is there any python software available to do this?
    I
    did look at pyuno briefly. It looks pretty complicated also, and it looks
    like it uses it's own private version of python, which would not help me.
    Try
    import ooolib
    #http://ooolib.sourceforge.net

    Comment

    Working...