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
總結
以上是生活随笔為你收集整理的flask执行python脚本_如何在flask后端运行python脚本?的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 网站怎么进行网络推广(网站怎么进行网络推
- 下一篇: 车联网 python_利用百度车联网提供