pxdn-line-extractor / pycharm_runner.py
kjerk's picture
Add streamlit app code v1
d8c02ee
raw
history blame contribute delete
273 Bytes
# https://discuss.streamlit.io/t/cannot-debug-streamlit-in-pycharm-2023-3-3/61581/2
try:
from streamlit.web import bootstrap
except ImportError:
from streamlit import bootstrap
real_script = 'app.py'
bootstrap.run(real_script, is_hello=False, args=[], flag_options={})