Spaces:
Sleeping
Sleeping
File size: 273 Bytes
d8c02ee |
1 2 3 4 5 6 7 8 9 10 |
# 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={})
|