0 votes
in Python by
Explain how you can access sessions in Flask?

1 Answer

0 votes
by

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.

Related questions

0 votes
asked Jan 2, 2021 in Python by SakshiSharma
0 votes
asked Jan 2, 2021 in Python by SakshiSharma
...