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
Use of openpyxl's write-only workbook mode would potentially speed up the write performance of workbooks.
To make use of this we would need to internally refrain from using the sheet.cells API and instead internally buffer cell write ops up to the point at which a row write would be performed. At that point we could sheet.append a row.
The text was updated successfully, but these errors were encountered:
Use of openpyxl's write-only workbook mode would potentially speed up the write performance of workbooks.
To make use of this we would need to internally refrain from using the
sheet.cells
API and instead internally buffer cell write ops up to the point at which a row write would be performed. At that point we couldsheet.append
a row.The text was updated successfully, but these errors were encountered: