All Samples(4015) | Call(3245) | Derive(0) | Import(770)
Parse a URL into 6 components: <scheme>://<netloc>/<path>;<params>?<query>#<fragment> Return a 6-tuple: (scheme, netloc, path, params, query, fragment). Note that we don't break the components up in smaller bits (e.g. netloc is a single string) and we don't expand % escapes.
All Samples(2117) | Call(1710) | Derive(0) | Import(407)
Join a base URL and a possibly relative URL to form an absolute interpretation of the latter.
All Samples(1957) | Call(1402) | Derive(0) | Import(555)
Parse a URL into 5 components: <scheme>://<netloc>/<path>?<query>#<fragment> Return a 5-tuple: (scheme, netloc, path, query, fragment). Note that we don't break the components up in smaller bits (e.g. netloc is a single string) and we don't expand % escapes.
All Samples(813) | Call(687) | Derive(0) | Import(126)
Put a parsed URL back together again. This may result in a slightly different, but equivalent URL, if the URL that was parsed originally had redundant delimiters, e.g. a ? with an empty query (the draft states that these are equivalent).
All Samples(445) | Call(353) | Derive(0) | Import(92)
Combine the elements of a tuple as returned by urlsplit() into a complete URL as a string. The data argument can be any five-item iterable. This may result in a slightly different, but equivalent URL, if the URL that was parsed originally had unnecessary delimiters (for example, a ? with an empty query; the RFC states that these are equivalent).
All Samples(163) | Call(77) | Derive(0) | Import(86)
Parse a query given as a string argument.
Arguments:
qs: URL-encoded query string to be parsed
keep_blank_values: flag indicating whether blank values in
URL encoded queries should be treated as blank strings.
A true value indicates that blanks should be retained as
blank strings. The default false value indicates that(more...)
All Samples(145) | Call(98) | Derive(0) | Import(47)
Parse a query given as a string argument.
Arguments:
qs: URL-encoded query string to be parsed
keep_blank_values: flag indicating whether blank values in
URL encoded queries should be treated as blank strings. A
true value indicates that blanks should be retained as blank
strings. The default false value indicates that blank values(more...)
All Samples(72) | Call(49) | Derive(0) | Import(23)
Removes any existing fragment from URL. Returns a tuple of the defragmented URL and the fragment. If the URL contained no fragments, the second element is the empty string.
All Samples(4) | Call(0) | Derive(0) | Import(4)
list() -> new empty list list(iterable) -> new list initialized from iterable's items
All Samples(0) | Call(0) | Derive(0) | Import(0)
list() -> new empty list list(iterable) -> new list initialized from iterable's items
All Samples(0) | Call(0) | Derive(0) | Import(0)
list() -> new empty list list(iterable) -> new list initialized from iterable's items
All Samples(0) | Call(0) | Derive(0) | Import(0)
list() -> new empty list list(iterable) -> new list initialized from iterable's items
All Samples(1) | Call(0) | Derive(0) | Import(1)
list() -> new empty list list(iterable) -> new list initialized from iterable's items