0 votes
in Python by
How can we access sessions in flask?

1 Answer

0 votes
by

A session will basically allow us to remember information from one request to another. In a flask, a signed cookie is used to make the user look at the session contents and modify them. Moreover, the user can change the session only when the secret key named Flask.secret_key is present.

Related questions

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