minimal-streamlit-example/.binder/streamlit_call.py

7 lines
287 B
Python
Raw Permalink Normal View History

2020-01-19 00:06:39 +01:00
from subprocess import Popen
def load_jupyter_server_extension(nbapp):
"""serve the bokeh-app directory with bokeh server"""
2020-01-19 11:53:24 +01:00
Popen(["streamlit", "run", "st_runner.py", "apps", "--browser.serverAddress=0.0.0.0", "--server.enableCORS=False", "--browser.gatherUsageStats=False"])