Tagged Questions

1
vote
1answer
814 views

App Engine URL mapping

From http://code.google.com/appengine/docs/python/tools/webapp/running.html Tip: App Engine routes requests to Python scripts based on the URL and mappings specified in the application's ...
1
vote
3answers
590 views

How to write a RESTful URL path regex in GAE/Python for n parameters?

Currently I have three URL paths that map to ServiceHandler. How do I combine the three into one neat regex that can pass n number of arguments to ServiceHandler? (r'/s/([^/]*)', ServiceHandler), ...
0
votes
2answers
254 views

Google App engine Url Mapping using WSGIAppl and regx grouping Help Needed

take this example from google docs class BrowseHandler(webapp.RequestHandler): > def get(self, category, product_id): > # Display product with given ID in the given category. > ...