class Submount(RuleFactory):
Like Subdomain
but prefixes the URL rule with a given string:
url_map = Map([ Rule('/', endpoint='index'), Submount('/blog', [ Rule('/', endpoint='blog/index'), Rule('/entry/<entry_slug>', endpoint='blog/show') ]) ])
Now the rule 'blog/show' matches /blog/entry/<entry_slug>.
Method | __init__ |
Undocumented |
Method | get​_rules |
Subclasses of RuleFactory have to override this method and return an iterable of rules. |
Instance Variable | path |
Undocumented |
Instance Variable | rules |
Undocumented |
Undocumented
Parameters | |
path:str | Undocumented |
rules:t.Iterable[ | Undocumented |
werkzeug.routing.RuleFactory.get_rules
RuleFactory
have to override this method and return
an iterable of rules.Parameters | |
map:Map | Undocumented |
Returns | |
t.Iterator[ | Undocumented |