eagle0504 commited on
Commit
38d53f0
1 Parent(s): 8cb846c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -1,7 +1,10 @@
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)
 
 
 
 
1
  import streamlit as st
2
 
3
+ st.title("Google Colab Notebook")
4
 
5
+ st.markdown(
6
+ """
7
+ [Click here to open the Google Colab notebook](https://colab.research.google.com/drive/12uTvmPkhzDQS6ajg7JfVepJab5Aamr70)
8
+ """,
9
+ unsafe_allow_html=True
10
+ )