Closed
Description
Is your feature request related to a problem?
In experimenting with openpyxl, I have found that I can load my files in faster when read_only=True, and I would like to pass in that argument to read_excel
Describe the solution you'd like
Similar to ExcelWriter, I would like to have engine_kwargs added to read_excel to pass in engine specific kwargs.
API breaking implications
This shouldn't break it.
Describe alternatives you've considered
Just use read_excel as is, works fine but I can load large excel files more quickly with using engine specific kwargs
Additional context
I imgine it would look like pd.read_excel('example.xlsx', engine='openpyxl', engine_kwargs={'read_only : True}) for am example