I want to set some value to cookie when user visits the homepage so that when he hits some url I’ll get that value and compare it with what I’ve stored in db. Now do I have to set the same cookie value again to handle the next request(in order to maintain session).
I’m using python on GAE and I couldn’t find any session service available. So the way I’ve chosen is it the correct one? or Is there any other way to recognize the user?
Any tutorial on session maintaining and cookie handling on python will also be very helpful.
I’m using python 2.6 with django on GAE.
Thanks
Look at gaeutilities. It contains session management stuff.