Shwetanka
Shwetanka

Reputation: 5036

Need some help on Cookie Handling and session in python

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

Upvotes: 1

Views: 397

Answers (2)

Joe Bowman
Joe Bowman

Reputation: 863

As mentioned above gaeutilties provides sessions support. If that's what you're looking for overall you may want to check it out.

However, also to answer your question. Cookies set persist between requests, you don't need to keep resetting it unless you the expiration extremely low. If you do not set an expiration the cookie will persist until the browser is closed.

Upvotes: 1

moinudin
moinudin

Reputation: 138357

Look at gaeutilities. It contains session management stuff.

Upvotes: 1

Related Questions