如何使用终端在 Ubuntu 中用 Python 访问和编辑 LibreOffice Writer 文件?
答案1
将 odt 转换为文本。您可以使用 python 中的常规“打开方式”来读取、写入文本文件,然后将文本文件转换回 odt 文件。
Libreoffice 有自己的工具来实现这一点:
libreoffice --convert-to txt {file}.odt
和
libreoffice --convert-to odt {file}.txt
Python“打开方式”是7.2章在文档中。