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?
request.args.get('variable')
should work for what I think you mean by "GET data".