vote up 2 vote down star
1

I've seen a few references that say there is WSGI middleware to do it, but I don't know a lot about the choices for WSGI middelware that handles cookies.

flag

60% accept rate

1 Answer

vote up 3 vote down check

You dont need anything special with pylons (0.9.7), it all works out of the box:

from pylons import request, response

#set a cookie
response.set_cookie( cookiename , some_string, max_age=180*24*3600 )

#read a cookie
request.cookies.get( cookiename )

#remove a cookie
request.cookies.pop( cookiename, None )

Pylons uses Webob (request, response) are (webob.Request, webob.Response) objects.

link|flag

Your Answer

Get an OpenID
or

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