Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- Forms 6:51
- Forms 3 questions
- Cookies 7:27
- Cookies 4 questions
- Set a Cookie 3 objectives
- Starting the Builder 6:02
- Create a JSON String 2 objectives
- Parse a JSON string 1 objective
- Items 6:27
- Looping Through Items 1 objective
- Drawing the Bear 4:32
- Loop Nested Items 2 objectives
- Flash Messages 5:28
- Flash a Message 3 objectives
- Outro 0:26
- Review: Flask Basics 8 questions

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
If we want to give the user a message that's only visible for the current load of the page, we use the `flash()` function. Just another handy tidbit from the Flask.
New Terms
flash()
: This function stores a message in the session that will self-destruct after the response is returned.
get_flashed_messages()
: This function gets all of the flash messages stored in the session.
app.secret_key
: This configuration attribute stores the secret key that all messages are cryptographically signed with.
{% with %}
: The Flask template version of Python's with
block. Let's you temporarily define a variable. Must be closed with {% endwith %}
.
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Matt Holland
4,282 Points0 Answers
-
Kortney Field
14,091 Points3 Answers
-
Ian Baylis
5,744 Points0 Answers
-
Hubert M
9,633 Points2 Answers
-
Torger Angeltveit
11,228 Points0 Answers
-
Luis S
5,451 PointsRegarding app.secret, i didn't get why you need it, is it used by flash internally?
Posted by Luis SLuis S
5,451 Points0 Answers
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up