Normally, getting url variables in Google App Engine Python is a line of code:

param=self.request.get(‘url_param’);

print param;

But i just discovered that it can also be, with a quick and easy method:

def get(self, url_param)

print url_param;

We can define url param that page work with it, in the get() function params. After that we can use it directly…