I'm currently playing around with tipfy on Google's Appengine and just recently ran into a problem: I can't for the life of me find any documentation on how to use GET variables in my application, I've tried sifting through both tipfy and Werkzeug's documentations with no success. I know that I can use request.form.get('variable') to get POST variables and **kwargs in my handlers for URL variables, but that's as much as the documentation will tell me. Any ideas?
| ||||
feedback
|
|
| |||||||||
feedback
|
|
Source: http://www.tipfy.org/wiki/guide/request/ The Request object contains all the information transmitted by the client of the application. You will retrieve from it GET and POST values, uploaded files, cookies and header information and more. All these things are so common that you will be very used to it. To access the Request object, simply import the request variable from tipfy:
| |||
|
feedback
|
|
this works for me (tipfy 0.6):
| ||||
|
feedback
|