Monday, February 15, 2021

Patrick Kennedy: Sessions in Flask

I wrote a blog post on TestDriven.io about how Sessions work in Flask:

https://testdriven.io/blog/flask-sessions/

This blog post looks at how sessions work in Flask by covering the following topics:

  • What is a Session?
  • How sessions are implemented in Flask using cryptographically-signed cookies
  • Client-side vs. server-side sessions
  • Example of using the session object in a Flask application


from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...