我已经设法访问 LibreOffice.calc,打开我的文件,选择我的工作表和 getValue() 和 getFormula()...也就是说,我的工作(几乎)完成了,但是... PyUno 桥只是一个桥而且不是很Pythonic。
例如,for sheet in sheets:
抛出以下异常:TypeError: 'pyuno' object is not iterable
那么,问题是,是否有人在某个地方拥有一个针对 LibreOffice(calc)对象模型的开源 Pythonic 库?
off = LibreOffice()
calc = off.Open(file)
sheets = calc.getSheets()
for sheet in sheets:
print(sheet.name)
rng = sheet.Range("A1:C5")
...