from flask import Flaskfrom flask_sqlalchemy import SQLAlchemy# create the extensiondb =SQLAlchemy()# create the appapp =Flask(__name__)# configure the SQLite database, relative to the app instance folderapp.config["SQLALCHEMY_DATABASE_URI"]="sqlite:///project.db"# initialize the app with the extensiondb.init_app(app)