scholar / streamlit_call.py
giswqs's picture
Initial commit
1da1c98
raw
history blame contribute delete
No virus
308 Bytes
from subprocess import Popen
def load_jupyter_server_extension(nbapp):
"""serve the streamlit app"""
Popen(
[
"streamlit",
"run",
"streamlit_app.py",
"--browser.serverAddress=0.0.0.0",
"--server.enableCORS=False",
]
)