eagle0504 commited on
Commit
8cb846c
1 Parent(s): 5ac4fe2

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ st.title("Embedded Google Colab")
4
+
5
+ # Embed the Colab URL using an iframe
6
+ colab_url = "https://colab.research.google.com/drive/12uTvmPkhzDQS6ajg7JfVepJab5Aamr70"
7
+ st.components.v1.iframe(colab_url, width=900, height=800)