You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looping through 1000 rows and finding the first cell in each row in a read-only workbook takes 13s and calls openpyxl.worksheet._reader.WorkSheetParser.parse_cell() over 7 million times.
I have a ~large workbook with some ~large sheets. The .xlsx is 583kB, there are 9 worksheets:
Looping through 1000 rows and finding the first cell in each row in a read-only workbook takes 13s and calls
openpyxl.worksheet._reader.WorkSheetParser.parse_cell()
over 7 million times.I have a ~large workbook with some ~large sheets. The .xlsx is 583kB, there are 9 worksheets:
The only change I made to the library was this change in
_reader.py
:The text was updated successfully, but these errors were encountered: