[docs]@staticmethoddefbuild(state:FeasibilitySummaryState)->Path:""" Function that builds the HTML files based on the ExploratoryAnalysis state. Arguments: state: ExploratoryAnalysisState object with details and results of the instruction Returns: path to the main HTML file (which is located under state.result_path) """base_path=PathBuilder.build(state.result_path/"../HTML_output/")html_map=FeasibilitySummaryHTMLBuilder.make_html_map(state,base_path)result_file=base_path/f"FeasibilitySummary_{state.name}.html"TemplateParser.parse(template_path=EnvironmentSettings.html_templates_path/"FeasibilitySummary.html",template_map=html_map,result_path=result_file)returnresult_file