有没有办法streamlit run APP_NAME.py
从 python 脚本中运行命令,可能看起来像:
import streamlit
streamlit.run("APP_NAME.py")
由于我正在处理的项目需要跨平台(和打包),我不能安全地依赖对os.system(...)
or的调用subprocess
。
希望这对其他人有用:我查看了我的 python/conda bin 中的实际流光文件,它有以下几行:
import re
import sys
from streamlit.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())
从这里,您可以看到streamlit run APP_NAME.py
在命令行上运行与(在 python 中)相同:
import sys
from streamlit import cli as stcli
if __name__ == '__main__':
sys.argv = ["streamlit", "run", "APP_NAME.py"]
sys.exit(stcli.main())
所以我把它放在另一个脚本中,然后运行该脚本从 python 运行原始应用程序,它似乎工作。我不确定这个答案有多跨平台,因为它仍然在某种程度上依赖于命令行参数。
您可以从 python 运行脚本python my_script.py
:
import sys
from streamlit import cli as stcli
import streamlit
def main():
# Your streamlit code
if __name__ == '__main__':
if streamlit._is_running_with_streamlit:
main()
else:
sys.argv = ["streamlit", "run", sys.argv[0]]
sys.exit(stcli.main())
我更喜欢使用子进程,它使通过另一个 python 脚本执行许多脚本变得非常容易。
The subprocess module allows you to spawn new processes, connect to their input/output/error pipes, and obtain their return codes. This module intends to replace several older modules and functions:
import subprocess
import os
process = subprocess.Popen(["streamlit", "run", os.path.join(
'application', 'main', 'services', 'streamlit_app.py')])