python(烧瓶)中无法识别该模块
the module is not recognized in python (flask)
在这里学习 Flask 和网络开发新手,
使目录如下。
in folder named website and in a subfoder named templates make a file init_.py and outside the website folder ,main.py is there
init.py
中的代码
from flask import Flask
def create_app():
app = Flask(__name__)
app.config['SECRET_KEY']='madkrish'
return app
main.py
中的代码
from website import create_app
app = create_app()
if __name__== '__main__':
app.run(debug=True)
当我运行主函数出现以下错误:
没有名为 'website'
的模块
given above
谁能纠正我错误的地方我需要在教程中进一步学习下一步。
根据您的文件夹结构,您需要从模板导入,因此:
from templates import create_app
应该可以。
VSCode 仍会将其标记为错误,您需要将其配置为将模板文件夹包含在 Python 路径
中
在这里学习 Flask 和网络开发新手, 使目录如下。 in folder named website and in a subfoder named templates make a file init_.py and outside the website folder ,main.py is there
init.py
中的代码from flask import Flask
def create_app():
app = Flask(__name__)
app.config['SECRET_KEY']='madkrish'
return app
main.py
中的代码
from website import create_app
app = create_app()
if __name__== '__main__':
app.run(debug=True)
当我运行主函数出现以下错误:
没有名为 'website'
的模块given above
谁能纠正我错误的地方我需要在教程中进一步学习下一步。
根据您的文件夹结构,您需要从模板导入,因此:
from templates import create_app
应该可以。
VSCode 仍会将其标记为错误,您需要将其配置为将模板文件夹包含在 Python 路径
中