Ouvrez un script Python sur Click Flask
@app.route('/run-script')
def run_script():
result = subprocess.check_output("python main.py", shell=True)
return render_template('results.html', **locals())
Lunatic Python