Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
giswqs
/
Streamlit
like
75
Runtime error
App
Files
Files
Community
7
f9fd4e7
Streamlit
/
streamlit_call.py
giswqs
Add timelapse app
9ad0e2d
over 1 year ago
raw
Copy download link
history
blame
Safe
299 Bytes
from
subprocess
import
Popen
def
load_jupyter_server_extension
(
nbapp
):
"""serve the streamlit app"""
Popen(
[
"streamlit"
,
"run"
,
"Home.py"
,
"--browser.serverAddress=0.0.0.0"
,
"--server.enableCORS=False"
,
]
)