I have a flask program which is storing the same information from multiple device inputs. Is there an easy way to find an ID string which is unique for each user that visits my website?
Asked
Active
Viewed 1,128 times
0
-
[Flask - How to get Session ID](http://stackoverflow.com/a/15187430/4562156) and [Python Flask: keeping track of user sessions?](http://stackoverflow.com/a/32643135/4562156) – Sean Pianka Jan 21 '17 at 20:08
-
I think I will re-formulate this question and post again. Why do I need to make a cookie? Why is a session variable so simple in PHP? – kilojoules Jan 21 '17 at 20:10
-
Flask's built-in sessions are wrappers around cookies. Any implementation which is supported in PHP likely has some similar implementation in Flask. – Sean Pianka Jan 21 '17 at 20:12