Configure WingIDE to debug Flask projects

Has anyone managed to set up a Flask project in WingIDE so you can run a breakpoint and use trial debugging on incoming requests?

+3
source share
1 answer

If you disable Flask debugging, it should allow WingIDE debugging. This works for Eclipse; Unfortunately, I have no experience with WingIDE. It is at least worth it.

if __name__ == '__main__':
    app.debug = False
    app.run()
+4
source

All Articles