从python中的ODS文件获取超链接?

时间:2018-05-12 21:16:56

标签: python ods pyexcel

我需要用Python解析ODS电子表格。没什么大不了的,我可以这样做:

import pyexcel
book = pyexcel.get_book(file_name="/path/to/my/file.ods")
sheet = book.sheet_by_index(0)
for row in sheet:
   print row

这就是问题。其中一列包含超链接。在LibreOffice中,单元格显示为“Bob”,“Dick”,“Hal”,分别以http://example.com/robert.htmlhttp://example.com/richard.htmlhttp://example.com/harold.html作为基础链接。

我想要链接的值,但引用row[0]会给出显示值,而不是基础值。

pyexcel中是否有可用于获取这些链接的功能?

编辑:根据请求,您可以在https://www.government.nl/binaries/government/documents/reports/2016/01/15/national-terrorism-list/eng-terrorismelijst.ods

找到该文件

0 个答案:

没有答案