save_to_excel_file method

save_to_excel_file

Saves the memory data to the sream, baseed on the origin file format.

def save_to_excel_file(self, stream):
    ...
ParameterTypeDescription
streamio.RawIOBaseThe stream to save.

save_to_excel_file

Saves the memory data to the file path,if the file has extension ,save format is baseed on the file extension .

def save_to_excel_file(self, path):
    ...
ParameterTypeDescription
pathstrThe file path to save.

See Also