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.
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.cellsAPI and instead internally buffer cell write ops up to the point at which a row write would be performed. At that point we couldsheet.appenda row.