(And a bunch of ways not to)
Aka. Don't be lazy, just use a database.
is a guessing game for matching a photo of a cute critter with their genus and species made by Lin Taylor and myself during the first half of W1.
Random secret key for sessions.
Global variables for storing application state.
Pickle for serializing / deserializing objects. Just use JSON.
Defining global functions in jinja2 template to reference python built-ins.
Cookies are limited to 4 KB in size, so are your flask client side sessions - be mindful about what objects you're storing in session.
But.. Free tier of Redis to Go is limited to 5 MB. So try to limit the amount of data that you store on the server side as well.