By default, when running Flask application using the built-in server (Flask.run), it monitors its Python files and automatically reloads the app if its code cha
Flask.run
For me works just fine:
from flask import Flask, render_template, request, url_for, redirect app = Flask(__name__) app.config["TEMPLATES_AUTO_RELOAD"] = True
See more on http://flask.pocoo.org/docs/1.0/config/