Lines Matching full:urls
1 :mod:`urllib.request` --- Extensible library for opening URLs
5 :synopsis: Extensible library for opening URLs.
16 opening URLs (mostly HTTP) in a complex world --- basic and digest
61 For HTTP and HTTPS URLs, this function returns a
69 For FTP, file, and data URLs and requests explicitly handled by legacy
273 The :class:`OpenerDirector` class opens URLs via :class:`BaseHandler`\ s chained
302 dictionary mapping protocol names to URLs of proxies. The default is to read
420 A class to handle opening of HTTP URLs.
425 A class to handle opening of HTTPS URLs. *context* and *check_hostname*
438 Open data URLs.
444 Open FTP URLs.
449 Open FTP URLs, keeping a cache of open FTP connections to minimize delays.
454 A catch-all class to handle unknown URLs.
622 URLs.
671 OpenerDirector objects open URLs in three stages:
736 define it if they want to catch all URLs.
753 define it if they want to handle URLs with the given protocol.
762 define it if they want to catch all URLs with no specific registered handler to
1099 ignores white spaces in base64 encoded data URLs so the URL may be wrapped
1270 programmatically-supplied proxy URLs, and adds proxy authorization support with
1411 Base class for opening and reading URLs. Unless you need to support opening
1422 proxy URLs, where an empty dictionary turns proxies off completely. Its default
1454 URLs) or ``None`` (for local URLs). The caller must then open and read the
1462 network. *reporthook* is ignored for local URLs.
1531 1.0), FTP, local files, and data URLs.
1533 .. versionchanged:: 3.4 Added support for data URLs.