class documentation

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
def __init__(self, path: str, rules: t.Iterable[RuleFactory]): (source)

Undocumented

def get_rules(self, map: Map) -> t.Iterator[Rule]: (source)

Subclasses of `RuleFactory` have to override this method and return an iterable of rules.

Undocumented

Undocumented