我有一个python代码,它使用tensorflow在图像中检测人的心情(快乐,悲伤,惊讶,紧张等),并且我有一个flask脚本,要求用户选择图像并提交图像。我希望我的python代码在用户单击“提交”按钮时运行。 我为我的python代码创建了一个类,并使用
将其导入了flask脚本中from pythonfile import pythonclass
以及随后在烧瓶脚本中称为
的pythonclasspythonclass(filename) where filename = the user selecting the image file
但是,当我运行flask脚本时,此pythonfile会先运行,然后运行我的flask文件。
实际上,我希望我的flask文件首先运行,并且在用户选择并提交图像后-pythonfile应该运行
pythonfile在flaskscript之前先运行的原因可能是什么?