Spaces:
Sleeping
Sleeping
File size: 1,268 Bytes
87dd824 ab92c28 344da00 7c9955e 87dd824 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
import streamlit as st
import nbformat
from nbconvert import PythonExporter
import os
import matplotlib
import seaborn
import sklearn
# Load and execute the notebook file
def execute_notebook(notebook_path):
"""Loads and executes the notebook, showing its content in the app."""
if not os.path.exists(notebook_path):
st.error("Notebook file not found!")
return
st.markdown("### Executing Notebook")
with open(notebook_path, "r") as f:
notebook_content = f.read()
# Convert notebook to Python script
exporter = PythonExporter()
python_code, _ = exporter.from_notebook_node(nbformat.reads(notebook_content, as_version=4))
# Execute the Python code dynamically
try:
exec(python_code, globals())
st.success("Notebook executed successfully!")
except Exception as e:
st.error(f"Error executing notebook: {e}")
# Streamlit UI
def main():
st.set_page_config(page_title="Notebook Runner", page_icon="π", layout="wide")
st.title("Notebook Runner App")
notebook_file = "MLFlow Mentos Zindagi.ipynb"
st.write(f"Loaded Notebook: **{notebook_file}**")
if st.button("Run Notebook"):
execute_notebook(notebook_file)
if __name__ == "__main__":
main()
|