Thursday, March 4, 2021

Patrick Kennedy: Server-side Sessions in Flask with Redis

I wrote a blog post on TestDriven.io about how server-side sessions can be implemented in Flask with Flask-Session and Redis:

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

This blog post looks at how to implement server-side sessions work in Flask by covering the following topics:

  • What is a session?
  • Client-side vs. server-side sessions
  • Flask-Session overview
  • Example Flask application that implements server-side sessions using Flask-Session and Redis


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...