Flask - Ecosystem and Patterns
Given this Flask code snippet using a pattern, what will be the output when accessing
/hello route?from flask import Flask, Blueprint
hello_bp = Blueprint('hello', __name__)
@hello_bp.route('/hello')
def hello():
return 'Hello, World!'
app = Flask(__name__)
app.register_blueprint(hello_bp)
if __name__ == '__main__':
app.run()