Extracting Hyperlinks From Excel (.xlsx) with Python

前端 未结 7 1563
闹比i
闹比i 2020-12-16 16:29

I have been looking at mostly the xlrd and openpyxl libraries for Excel file manipulation. However, xlrd currently does not support formatting_info=True for .xl

7条回答
  •  一向
    一向 (楼主)
    2020-12-16 16:46

    A successful solution I've worked with is to install unoconv on the server and implement a method that invokes this command line tool via the subprocess module to convert the file from xlsx to xls since hyperlink_map.get() works with xls.

提交回复
热议问题