SuiteResult.save_as_html#
- SuiteResult.save_as_html(file: Optional[Union[str, TextIOWrapper]] = None, as_widget: bool = True, requirejs: bool = True, unique_id: Optional[str] = None, connected: bool = False, **kwargs)[source]#
 Save output as html file.
- Parameters
 - filefilename or file-like object
 The file to write the HTML output to. If None writes to output.html
- as_widgetbool, default True
 whether to use ipywidgets or not
- requirejs: bool , default: True
 whether to include requirejs library into output HTML or not
- unique_idOptional[str], default None
 unique identifier of the result output
- connected: bool , default False
 indicates whether internet connection is available or not, if ‘True’ then CDN urls will be used to load javascript otherwise javascript libraries will be injected directly into HTML output. Set to ‘False’ to make results viewing possible when the internet connection is not available.
- Returns
 - Optional[str]
 name of newly create file