save_to_html method

save_to_html(self, path)

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


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

save_to_html(self, stream)

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