How are you meant to debug errors in Flask? Print to the console? Flash messages to the page? Or is there a more powerful option available to figure out what\'s happening
You can use app.run(debug=True) for the Werkzeug Debugger edit as mentioned below, and I should have known.
app.run(debug=True)