You should just be able to handle this with a regex in the url definitions.
urls = ('/(.*?)/(.*?)/(.*?)', 'handler') class handler: def GET(self, identifier, function, arg): I wouldn't be surprised if there is a better way to do this though... On Sun, Mar 25, 2012 at 9:51 PM, Beau <beautr...@gmail.com> wrote: > Hello, > > I've been playing around with web.py and mimerender to create a little > webservice that will query other devices and respond via html/json/ > xml. > > What I want to do is have the url in the format of. > > /identifier/function/arg1 > > or > > /function/identifier/arg1 > > i've noticed get can return the url(?) via name. So this works great > for single arguments, but how would I extend this to multiple ones?. > Splitting on / seems like it would be a bad idea, and there is > probably a better way I'm overlooking. > > -- > You received this message because you are subscribed to the Google Groups > "web.py" group. > To post to this group, send email to webpy@googlegroups.com. > To unsubscribe from this group, send email to > webpy+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/webpy?hl=en. > > -- You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to webpy@googlegroups.com. To unsubscribe from this group, send email to webpy+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/webpy?hl=en.