I’m working in Pycharm to build my app, and I found a solution on stack overflow that allows me to run a script which launches my dashboard, and then debug my actual code. This launch script is simply as follows:
from streamlit import bootstrap
real_script = 'file.py'
bootstrap.run(real_script, f'run.py {real_script}', [], {})
However, after upgrading to 1.12.1, the import of bootstrap fails. I would like to use 1.12.1 to benefit from the adjustable sidebar size. Is there any replacement technique compatible with the new version that I can use to accomplish the same debug ability?