Describe how to use Sessions for Web python.
Answer / chaitanya
Sessions are the server side version of cookies. While a cookie preserves state at the client side, sessions preserves state at server side.
The session state is kept in a file or in a database at the server side. Each session is identified by a unique session id (SID). To make it possible to the client to identify himself to the server the SID must be created by the server and sent to the client whenever the client makes a request.
Session handling is done through the web.session module in the following manner:
import web.session session = web.session.start( option1, Option2,... )
session['myVariable'] = 'It can be requested'
| Is This Answer Correct ? | 0 Yes | 0 No |
What happens when you execute python == python?
What is the usage of dir() and dir() function in python?
What are non static methods?
How can I merge two python dictionaries in a single expression?
Why python is better?
Is java or python more useful?
How do you sort a list in ascending order in python?
Please explain when is the python decorator used?
Should a function always return a value python?
How to pass indefinite number of arguments to any function?
Does Python support strongly for regular expressions?
Why python is faster than java?