File size: 314 Bytes
8931efc e544a6c 8931efc e544a6c 773ed41 8931efc e544a6c 8931efc |
1 2 3 4 5 6 7 8 9 10 11 12 |
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() |