📜  在单击烧瓶时打开一个 Python 脚本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:54.006000             🧑  作者: Mango

代码示例1
@app.route('/run-script')
def run_script():
   result = subprocess.check_output("python main.py", shell=True)
   return render_template('results.html', **locals())