openpyxl.writer.excel module

Write a .xlsx file.

class openpyxl.writer.excel.ExcelWriter(workbook, archive)[源代码]

基类:object

Write a workbook object to an Excel file.

save()[源代码]

Write data into the archive.

write_data()[源代码]

Write the various xml files into the zip archive.

write_worksheet(ws)[源代码]
openpyxl.writer.excel.save_virtual_workbook(workbook)[源代码]

Return an in-memory workbook, suitable for a Django response.

备注

Deprecated: Use a NamedTemporaryFile

openpyxl.writer.excel.save_workbook(workbook, filename)[源代码]

Save the given workbook on the filesystem under the name filename.

参数
  • workbook (openpyxl.workbook.Workbook) – the workbook to save

  • filename (string) – the path to which save the workbook

返回类型

bool