Intro to message flashing: A handy way to send messages across page requests in Flask

from blog Prahlad Yeri, | ↗ original
Message flashing is a very handy technique you must be aware of if you are a Flask developer. A common recurring pattern in web development is to send messages across web requests, especially in case of redirects when the route or controller that redirected wants to display some basic text message (such as “Login Successful!”) on the target page...