save method

save(self, file_name)

Save the workbook to the disk.


def save(self, file_name):
    ...
ParameterTypeDescription
file_namestr

save(self, file_name, save_format)

Saves the workbook to the disk.


def save(self, file_name, save_format):
    ...
ParameterTypeDescription
file_namestrThe file name.
save_formatSaveFormatThe save format type.

save(self, file_name, save_options)

Saves the workbook to the disk.


def save(self, file_name, save_options):
    ...
ParameterTypeDescription
file_namestrThe file name.
save_optionsSaveOptionsThe save options.

save(self, stream, save_format)

Saves the workbook to the stream.


def save(self, stream, save_format):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe file stream.
save_formatSaveFormatThe save file format type.

save(self, stream, save_options)

Saves the workbook to the stream.


def save(self, stream, save_options):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe file stream.
save_optionsSaveOptionsThe save options.

See Also