from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
if __name__ == '__main__':
app.run(debug=True)
This is the basic structure of a Flask application. Flask(__name__)
creates the application instance. The @app.route
decorator binds a URL route to a function.