Which library should I use to write an XLS from Linux / Python?

后端 未结 5 1481
南方客
南方客 2020-12-31 21:28

I\'d love a good native Python library to write XLS, but it doesn\'t seem to exist. Happily, Jython does.

So I\'m trying to decide between jexcelapi and Ap

5条回答
  •  暖寄归人
    2020-12-31 22:06

    Excel exposes the same OLE automation API used by VBA to anything that supports COM. You can use win32com (which is included with ActiveState Python by default) to manipulate spreadsheets in much the same way that you would do in VBA.

提交回复
热议问题