save_to_html method

save_to_html

Saves the memory data to the file path,the save format is html.

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

save_to_html

Saves the memory data to the sream,the save format is html

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

See Also