Lines Matching refs:URL
11 single: URL
12 pair: URL; parsing
13 pair: relative; URL
24 This module defines a standard interface to break Uniform Resource Locator (URL)
26 combine the components back into a URL string, and to convert a "relative URL"
27 to an absolute URL given a "base URL."
30 Resource Locators. It supports the following URL schemes: ``file``, ``ftp``,
44 Parse a URL into six components, returning a 6-tuple. This corresponds to the
45 general structure of a URL: ``scheme://netloc/path;parameters?query#fragment``.
67 input is presumed to be a relative URL and thus to start with
82 scheme, to be used only if the URL does not specify one. The default value for
86 recognized and parsed as part of the preceding component, even if the URL's
96 | :attr:`scheme` | 0 | URL scheme specifier | *scheme* parameter |
126 Added IPv6 URL parsing capabilities.
178 Construct a URL from a tuple as returned by ``urlparse()``. The *parts* argument
180 equivalent URL, if the URL that was parsed originally had unnecessary delimiters
187 This is similar to :func:`urlparse`, but does not split the params from the URL.
188 This should generally be used instead of :func:`urlparse` if the more recent URL
190 of the URL (see :rfc:`2396`) is wanted. A separate function is needed to
200 | :attr:`scheme` | 0 | URL scheme specifier | *scheme* parameter |
232 URL as a string. The *parts* argument can be any five-item iterable. This may
233 result in a slightly different, but equivalent URL, if the URL that was parsed
242 Construct a full ("absolute") URL by combining a "base URL" (*base*) with
243 another URL (*url*). Informally, this uses components of the base URL, in
245 to provide missing components in the relative URL. For example:
256 If *url* is an absolute URL (that is, starting with ``//`` or ``scheme://``),
285 :rfc:`2732` - Format for Literal IPv6 Addresses in URL's.
292 :rfc:`2368` - The mailto URL scheme.
293 Parsing requirements for mailto URL schemes.
297 relative URL, including a fair number of "Abnormal Examples" which govern the
300 :rfc:`1738` - Uniform Resource Locators (URL)
316 Return the re-combined version of the original URL as a string. This may differ
317 from the original URL in that the scheme will always be normalized to lower case