Spaces:
Sleeping
Sleeping
Create app.py
Browse files
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)
|