views:

155

answers:

1

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

A: 

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:

Stef
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
yeah sorry for not being explicit - I thought maybe it had a built in way of working with sessions. Datastore it is
rutherford