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.
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking βAccept allβ, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.