DEV Community

Discussion on: Developing a Website With Flask

Collapse
 
cmuralisree profile image
Chittoji Murali Sree Krishna • Edited

sometimes we need this in flask

if __name__ == "__main__":
    app.run(debug=True) 
# for debugging we have to include debug is true
# The condition __name__ == "__main__" ensures that the run() method is called only when main.py is run as the main program.
Enter fullscreen mode Exit fullscreen mode