I read the document
http://code.google.com/appengine/docs/python/tools/webapp/requesthandlerclass.html
but I cant find any information of the args parameters
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Depends on the regular expressions in your URL matching. For example:
RechnungsdatencontainerHandler.get()sees one parameter,RechnungslisteHandler().get()sees three andCredentialsHandlerandHomepageget no parameters.Basically every pair of (braces) in the RegExp results in a get parameter.
I assume you could also use named parameters, something like
(?P<kundennr>[A-Za-z0-9_-]+)to getkwargsin your get function, but I haven’t tried that.