I want to use pandas.read_excel
to read an Excel file with the option engine="openpyxl"
. However, I also want to pass additional optimization options to openpyxl
such as:
read_only=True
data_only=True
keep_links=False
How do I do this?
I want to use pandas.read_excel
to read an Excel file with the option engine="openpyxl"
. However, I also want to pass additional optimization options to openpyxl
such as:
read_only=True
data_only=True
keep_links=False
How do I do this?