Есть фунция
index в теле которой исполняется другая функция
loadfunc импортированная из отдельного проекта.
from project.myproject import loadfunc
@app.route('/')
def index():
loadfunc()
return render_template("result.html")
def loadfunc():
....
....
return count
Если просто исполнять
index то редиректит на result.html как положено, не могу понять как вывести в return_render_template параметр count. Типа
return render_template("result.html", count=count)