flask执行python脚本_如何在flask后端运行python脚本?

我有一个小瓶子应用程序,它接受用户输入并返回一些文本。在这里,用户输入被输入到另一个python脚本,比如temp.py,这个temp.py将返回一个应该返回给用户的值。例如:

烧瓶.pyfrom flask import Flask, render_template, request

app = Flask(__name__)

@app.route('/')

def result():

return render_template("index.html")

@app.route('/getconfig', methods=['GET', 'POST'])

def config():

value = request.form['config']

print ("This is the user value : ", value);

// This value is written to a file say x.pol and my temp.py reads from x.pol file and writes the output to y.pol. I'm not sure how to trigger the script like "python temp.py" on the server.

// The reason I'm doing this because I don't want to tweak the third party tool where, the third party tool reads from input files and generates output files.

return content_generated_by_temp.py // by reading y.pol.

if __name__ == '__main__':

app.run(debug = True)

顺便说一下,temp.py本身就是一个噩梦。我明白这个工具的作用。有关该工具的详细信息:Google Caprica

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值