日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

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

發布時間:2023/12/3 python 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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脚本?的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。