import os import streamlit as st import streamlit.components.v1 as components def main(): st.title("AnĂ¡lisis exploratorio") with open('html/0-1 Pysentimiento.html', 'r', encoding='utf-8') as file: markdown_text = file.read() components.html(markdown_text,height=1000,scrolling=True) main()