Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
giswqs
/
Streamlit
like
83
Running
App
Files
Files
Community
8
Fetching metadata from the HF Docker repository...
21979ef
Streamlit
/
streamlit_call.py
giswqs
Add timelapse app
9ad0e2d
almost 2 years 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"
,
]
)