save method

save

Save the workbook to the disk.

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

save

Saves the workbook to the disk.

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

save

Saves the workbook to the disk.

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

save

Saves the workbook to the stream.

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

save

Saves the workbook to the stream.

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

See Also