Lines Matching refs:urlparse
40 .. function:: urlparse(urlstring, scheme='', allow_fragments=True)
54 >>> from urllib.parse import urlparse
55 >>> urlparse("scheme://netloc/path;parameters?query#fragment")
58 >>> o = urlparse("http://docs.python.org:80/3/library/urllib.parse.html?"
75 Following the syntax specifications in :rfc:`1808`, urlparse recognizes
83 >>> from urllib.parse import urlparse
84 >>> urlparse('//www.cwi.nl:80/%7Eguido/Python.html')
87 >>> urlparse('www.cwi.nl/%7Eguido/Python.html')
90 >>> urlparse('help/Python.html')
134 :ref:`urlparse-result-object` for more information on the result object.
152 >>> from urllib.parse import urlparse
153 >>> u = urlparse('//www.cwi.nl:80/%7Eguido/Python.html')
270 Construct a URL from a tuple as returned by ``urlparse()``. The *parts*
279 This is similar to :func:`urlparse`, but does not split the params from the URL.
280 This should generally be used instead of :func:`urlparse` if the more recent URL
316 :ref:`urlparse-result-object` for more information on the result object.
363 :func:`urlparse`.
403 See section :ref:`urlparse-result-object` for more information on the result
465 The result objects from the :func:`urlparse`, :func:`urlsplit` and
479 For :func:`urlsplit` and :func:`urlparse` results, all noted changes will be
508 Concrete class for :func:`urlparse` results containing :class:`str`
532 Concrete class for :func:`urlparse` results containing :class:`bytes`