Tagged Questions
1
vote
3answers
591 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),
...