• Home
  • Raw
  • Download

Lines Matching refs:netloc

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',
66 >>> o.netloc
76 a netloc only if it is properly introduced by '//'. Otherwise the
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='',
112 | :attr:`netloc` | 1 | Network location part | empty string |
136 Unmatched square brackets in the :attr:`netloc` attribute will raise a
139 Characters in the :attr:`netloc` attribute that decompose under NFKC
155 ParseResult(scheme='', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
158 ParseResult(scheme='http', netloc='www.cwi.nl:80', path='/%7Eguido/Python.html',
175 Characters that affect netloc parsing under NFKC normalization will
296 | :attr:`netloc` | 1 | Network location part | empty string |
318 Unmatched square brackets in the :attr:`netloc` attribute will raise a
321 Characters in the :attr:`netloc` attribute that decompose under NFKC
334 Characters that affect netloc parsing under NFKC normalization will
377 :func:`urlunsplit`, removing possible *scheme* and *netloc* parts.
506 .. class:: ParseResult(scheme, netloc, path, params, query, fragment)
512 .. class:: SplitResult(scheme, netloc, path, query, fragment)
530 .. class:: ParseResultBytes(scheme, netloc, path, params, query, fragment)
538 .. class:: SplitResultBytes(scheme, netloc, path, query, fragment)