pyre.primitives.URI¶
Module Contents¶
-
class
pyre.primitives.URI.URI(scheme=None, authority=None, address=None, query=None, fragment=None)¶ -
_regex¶
-
__slots__= ['scheme', 'authority', 'address', 'query', 'fragment']¶
-
clone(self, scheme=None, authority=None, address=None, query=None, fragment=None)¶ Make a copy of me with the indicated replacements
-
__add__(self, other)¶ Enable concatenations
N.B.: this is not {join}; it just takes my string representation, adds {other} to the end, and attempts to parse the result as a {uri}
-
__str__(self)¶
-