How can I create a quick streamlit app to display AutoViz generated HTML reports?
Thanks
I tried:
import streamlit as st
import streamlit.components.v1 as components
st.header("test html import")
HtmlFile = open("test_report.html", 'r', encoding='utf-8')
source_code = HtmlFile.read()
#print(source_code)
components.html(source_code)
as per a previous discussion on displaying a html page but it doesn’t load all the associated charts and visualisations in the report