i have an application that uses appengine with python. Its a social network that maps places. I want to have each place in this kind or url: www.mysite.com/place/nameoftheplace
for that i did this regular expression as a parameter of mine WSGIApplication:
r'/place/(.*)'
and on the get requisition i have:
def get(self, placeName=""):
but for some reason, if i call www.mysite.com/place/theplace, it enters the get with placeName = "theplace" and after the get ends, it call itself over and over, with a diferent placename like "/css/something". Can anyone help me? Thank you very much.