hack / app.py
TonmoyKroos's picture
Create app.py
978b744 verified
Raw
History Blame Contribute Delete
366 Bytes
import streamlit as st
import nbformat
from nbconvert import HTMLExporter
# Read the Jupyter notebook
with open("banglishtobangla.ipynb", "r") as f:
nb = nbformat.read(f, as_version=4)
# Convert notebook to HTML
html_exporter = HTMLExporter()
body, resources = html_exporter.from_notebook_node(nb)
# Display notebook
st.markdown(body, unsafe_allow_html=True)