Flask - Ecosystem and Patterns
Given a Flask app with this route:
What will be the response when accessing
@app.route('/hello')
def hello():
return 'Hello, Flask!'What will be the response when accessing
/hello URL?