• Home
  • Raw
  • Download

Lines Matching full:scheme

19 strings up in components (addressing scheme, network location, path etc.), to
40 .. function:: urlparse(urlstring, scheme='', allow_fragments=True)
44 ``scheme://netloc/path;parameters?query#fragment``.
55 >>> urlparse("scheme://netloc/path;parameters?query#fragment")
56 ParseResult(scheme='scheme', netloc='netloc', path='/path;parameters', params='',
61 ParseResult(scheme='http', netloc='docs.python.org:80',
64 >>> o.scheme
85 ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
88 ParseResult(scheme='', netloc='', path='www.cwi.nl/%7Eguido/Python.html',
91 ParseResult(scheme='', netloc='', path='help/Python.html', params='',
94 The *scheme* argument gives the default addressing scheme, to be
110 | :attr:`scheme` | 0 | URL scheme specifier | *scheme* parameter |
156 ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
158 >>> u._replace(scheme='http')
159 ParseResult(scheme='http', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
282 .. function:: urlsplit(urlstring, scheme='', allow_fragments=True)
291 (addressing scheme, network location, path, query, fragment identifier).
299 | :attr:`scheme` | 0 | URL scheme specifier | *scheme* parameter |
369 particular the addressing scheme, the network location and (part of) the
381 If *url* is an absolute URL (that is, it starts with ``//`` or ``scheme://``),
382 the *url*'s hostname and/or scheme will be present in the result. For example:
391 :func:`urlunsplit`, removing possible *scheme* and *netloc* parts.
426 ``<URL:scheme://host/path>``, ``<scheme://host/path>``, ``URL:scheme://host/path``
427 or ``scheme://host/path``). If *url* is not a wrapped URL, it is returned
447 code before trusting a returned component part. Does that ``scheme`` make
517 differ from the original URL in that the scheme may be normalized to lower
549 .. class:: ParseResult(scheme, netloc, path, params, query, fragment)
555 .. class:: SplitResult(scheme, netloc, path, query, fragment)
573 .. class:: ParseResultBytes(scheme, netloc, path, params, query, fragment)
581 .. class:: SplitResultBytes(scheme, netloc, path, query, fragment)
755 :rfc:`2368` - The mailto URL scheme.