srittau / rouver

Python 3 microframework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wildcard paths

srittau opened this issue · comments

A path like /foo/bar/* will match any of:

  • /foo/bar
  • /foo/bar/
  • /foo/bar/abc
  • /foo/bar/abc/def

The remaining path ('', '/', '/abc', and '/abc/def' in the examples above) will be the last path_args element provided to the handler.