n this line of code: APP = Flask(__name__) What does __name__ do? code example
Example: if __name__ == '__main__': app.run(debug=True) not running
if __name__=='__main__':
app.run(debug=DEBUG, host=HOST, port=PORT)
if __name__=='__main__':
app.run(debug=DEBUG, host=HOST, port=PORT)