我正在尝试创建一个 python 脚本来自动运行我所有的 Django 命令,但是脚本执行os.system('python manage.py runserver')在下一行停止 并且不运行,因为os.system('python manage.py runserver')需要继续运行。如何在os.system('python manage.py runserver')仍在运行的同时运行下一行代码?
我尝试使用python sleep方法等待几秒钟,然后运行下一行,但没有奏效。
这是我的代码:
import os, webbrowser, time
os.system('pipenv shell')
os.system('python manage.py runserver')
time.sleep(5)
webbrowser.open('http://127.0.0.1:8000', new=1, autoraise=True)
执行停止,os.system('python manage.py runserver')但我希望它webbrowser.open('http://127.0.0.1:8000', new=1, autoraise=True)在os.system('python manage.py runserver')仍在运行时运行。
千巷猫影
相关分类