При импортировании из blog db выдаёт ошибку что модуль blog не найден. Нигде немогу найти ответ, пожалуйста помогите!

from flask import Flask, render_template
from flask_sqlalchemy import SQLAlchemy


app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///blog.db'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
db = SQLAlchemy(app)

class Item(db.Model):
    id = db.Column(db.Integer, primary_key=True)
    title = db.Column(db.String(100), nullable=False)
    price = db.Column(db.Integer, nullable=False)
    isActive = db.Column(db.Boolean, default=True)

@app.route('/')
def index():
    return render_template('index.html')


@app.route('/about')
def index_about():
    return render_template('about.html')


@app.route('/donate')
def index_donate():
    return render_template('donate.html')


if __name__ == '__main__':
    app.run(debug=True)

Ответы (0 шт):