How do I remove this warning?

0

Error:

  

C: \ Python3 \ lib \ site-packages \ flask_sqlalchemy__init __. py: 839: FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future. Set it to True or False to suppress this warning.     'SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and'

my code:

from flask import Flask
from flask_sqlalchemy import SQLAlchemy

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


####################################################################
class User(db.Model):
    id = db.Column(db.Integer, primary_key=True)
    username = db.Column(db.String(80), unique=True)
    email = db.Column(db.String(120), unique=True)

    def __init__(self, username, email):
        self.username = username
        self.email = email

    def __repr__(self):
        return '<User %r>' % self.username
#####################################################################

if __name__ == '__main__':
    db.create_all() 
    
asked by anonymous 05.03.2017 / 17:05

1 answer

0

Add the SQLALCHEMY_TRACK_MODIFICATIONS configuration key to the flask app.

app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False

With this at the time of instantiating the application in the instance of FlaskSQLAlchemy will not be shown.

References:

Stackoverflow-en response

FlaskSQLAlchemy Settings

    
11.03.2017 / 13:52