Google News
logo
Flask - Interview Questions
What Is The Difference Between "g" Variable And "session" In The Flask?
g” is data shared between different parts of the code base within one request cycle. For example, a database connection or the user that is currently logged in. While "session" provides you a storage place to store data for a specific browser. Which means using a specific browser, returns for more request.
Advertisement