Generally speaking you can get all the client information you want from CGI variables, which are available in the pse.plugins.request module. The pse.plugins.client module gives you an easier and programmatically clearer way to access that information. Additionally, the pse.plugins.client provides an interface to manage cookies maintained by the browser.
| name, value, path, expires) |
'/'. The
expires argument is the number of seconds the cookie should
live, and a value of None (default) indicated that the
cookie should live only for the current browsing session.
A CookieClass object has the attributes name,
value, path, expires and
modified. Only value, path, and
expires are writable. To discard a cookie, set
expires to 0. To rename a cookie, discard it and
create a new CookieClass.
New in version 3.0.
Only cookies that have been modified are sent back to the browser at the end of the request. Therefore, if you modify a cookie sent by the browser, you should also alter the expires value, unless the cookie is to be discarded at the end of the browsing session.
New in version 2.0.
Changed in version 3.0.