Extracting Hyperlinks From Excel (.xlsx) with Python
问题 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 .xlsx files, so I can not use the xlrd hyperlink_map function. So I turned to openpyxl, but have also had no luck extracting a hyperlink from an excel file with it. Test code below (the test file contains a simple hyperlink to google with hyperlink text set to "test"): import openpyxl wb = openpyxl.load_workbook('testFile.xlsx') ws = wb