Right now, I'm porting an app I wrote from PHP to Flask, and I've already hit a roadblock on day 2; the original app relied heavily on client-side variables, stored in the $_SESSION
array. I can't seem to find a way to do the same in Flask, which is really quite frustrating.
I've tried using JavaScript to do the same tasks, but it ends up being much slower and less reliable than PHP's client-side variable storing method.
Where should I start with this in Flask? Any particular extensions I should look in to? What's the best practice Is it even possible?
Thanks in advance!