Saved Bookmarks
| 1. |
Explain How You Can Access Sessions In Flask? |
|
Answer» A SESSION BASICALLY allows you to remember INFORMATION from one request to another. In a flask, it uses a SIGNED cookie so the user can look at the session CONTENTS and modify. The user can modify the session if only it has the secret key Flask.secret_key. A session basically allows you to remember information from one request to another. In a flask, it uses a signed cookie so the user can look at the session contents and modify. The user can modify the session if only it has the secret key Flask.secret_key. |
|