以编程方式删除ODS文件中的工作表(最好是Python)

时间:2015-01-07 03:09:45

标签: python openoffice.org ods

如何以编程方式删除打开的文档电子表格中的工作表,最好是用Python?

我查看了https://pypi.python.org/pypi/pyexcel-ods/0.0.3,但我没有看到有关如何执行此操作的任何文档。

如果我运行data.update({"WORKSHEET1": "",}),我只会删除我要保留的工作表和WORKSHEET1的内容,我想完全删除它。

由于

2 个答案:

答案 0 :(得分:1)

简短的回答是:将其作为OrderedDict读回,然后删除密钥(您的工作表名称)并将修改后的字典保存到文件中。

解决方案A.使用ezodf的示例解决方案

>>> import ezodf
>>> doc = ezodf.opendoc("sample.ods")
>>> list(doc.sheets.names())
['Sheet1', 'Sheet2', 'Sheet3']
>>> del doc.sheets[1]
>>> doc.save()
>>> exit()

可以找到更多文档here

解决方案B.使用pyexcel-ods的示例解决方案: 1.设置示例文件:

>>> from pyexcel_ods import ODSWriter
>>> from collections import OrderedDict
>>> data = OrderedDict()
>>> data.update({"Sheet 1": [[1, 2, 3], [4, 5, 6]]})
>>> data.update({"Sheet 2": [["row 1", "row 2", "row 3"]]})
>>> writer = ODSWriter("your_file.ods")
>>> writer.write(data)
>>> writer.close()

2。让我们回读一下:

>>> from pyexcel_ods import ODSBook
>>> book2 = ODSBook("your_file.ods")
>>> data=book2.sheets()
>>> data
OrderedDict([(u'Sheet 1', [[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]]), (u'Sheet 2', [[u'row 1', u'row 2', u'row 3']])])

3。现在删除"表1":

>>> data.pop('Sheet 1')
[[1.0, 2.0, 3.0], [4.0, 5.0, 6.0]]
>>> data
OrderedDict([(u'Sheet 2', [[u'row 1', u'row 2', u'row 3']])])

4。然后将其保存到您选择的文件中:

>>> writer2=ODSWriter("your_file2.ods")
>>> writer2.write(data)
>>> writer2.close()

5。让我们回读并验证:

>>> book3=ODSBook("your_file2.ods")
>>> book3.sheets()
OrderedDict([(u'Sheet 2', [[u'row 1', u'row 2', u'row 3']])])

答案 1 :(得分:0)

原始问题是:

  

删除打开的文档电子表格中的工作表

答:同样的,就像在StarBasic中一样:

# get the model of document
    model = XSCRIPTCONTEXT.getDocument()
# get all sheets
    sheets = model.Sheets
# delete a sheet by name
    sheets.removeByName("Sheet2") 

无需使用外部库,导入,Dicts,......

这有帮助吗?