使用flask在html页面中写入脚本的输出

时间:2016-03-07 09:40:15

标签: python html flask

我写了一个脚本,让我能够运行一个脚本,然后获得我想要的输出,我试图在html页面中编写输出,我该怎么做?这是我的剧本:

def execute(cmd):
    os.system(cmd)
    to_return =dict()
    for filename in files:
        with open(filename, 'r') as f:
            data = f.read()
            to_return[filename] = data
    return to_return

output = execute('./script')
print output

关于如何生成html页面的任何想法,我可以打印运行此脚本的结果?

1 个答案:

答案 0 :(得分:3)

在views.py中,在相应的路线下,执行

@app.route('/route_name')
def script_output():
    output = execute('./script')
    return render_template('template_name.html',output=output)

在你的模板中,

<p>{{ output }}</p>