vote up 0 vote down star

Recently started on python, wondered what the equivalent object was for storing session & application scope data?

I'm using Google App Engine too so if it has any extra features (can't seem to find any immediate references myself) that would be useful

flag

anything other than the GAE datastore obviously – rutherford Sep 24 at 15:03

1 Answer

vote up 0 vote down check

I assume you're talking about a web session, used to retain state between http requests. Python is a general programming language and by itself doesn't contain the concept of a session.

However most different python web frameworks have session implementations. Which one are you using? I've linked to the session documentation on some python web frameworks:

link|flag
Well, it helps if you know the terms "application scope" and "session scope" are from Java's JSP technology, which is web programming. – R. Bemrose Sep 24 at 15:13
yeah sorry for not being explicit - I thought maybe it had a built in way of working with sessions. Datastore it is – rutherford Sep 24 at 15:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.