In Cherrypy it's possible to do this:
@cherrypy.expose
def default(self, url, *suburl, **kwarg):
pass
Is there a flask equivalent?
|
|
|
There is a snippet on Flask's website about a 'catch-all' route for flask. You can find it here. Basically the decorator works by chaining two URL filters. The example on the page is:
Which would give you:
|
|||
|
|