We are not starting streamlit from the terminal and hence is not using the streamlit CLI. We are starting it by directly referring to the main() fn in streamlit.cli. So we have a specific way of packaging python apps. It is all kept under a boilerplate.
import re
import sys
from streamlit.cli import main
def launch():
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())
Whole python code gets packaged and entry point will the above, which is accessible as self.script_path('streamlit')
And the below function can be used to invoke it. So basically streamlit gets started on calling the fn below:
Iām still not certain how to run any of the above scripts on my end. Could you share a minimal example we can reproduce on our end? i.e., reproducible examples of the 2 separate files and how to call them.
Note: PR #4408 renamed script_path to main_script_path.
Hi @snehankekre sorry for late reply, missed out from my radar.
I am not sure if you will be able to reproduce the way in which I am calling streamlit, since this is due to the kind of packaging of python apps on our side. But let me see.