Lines Matching refs:ProxyHandler
81 :class:`ProxyHandler` is default installed and makes sure the requests are
88 :class:`ProxyHandler` objects.
137 instances of them or subclasses of them: :class:`ProxyHandler` (if proxy
179 ``ProxyHandler`` explicitly, or make sure the variable name is in
294 .. class:: ProxyHandler(proxies=None)
891 ProxyHandler Objects
895 .. method:: ProxyHandler.<protocol>_open(request)
898 The :class:`ProxyHandler` will have a method :meth:`<protocol>_open` for every
1259 :class:`ProxyHandler`. By default, :class:`ProxyHandler` uses the environment
1264 This example replaces the default :class:`ProxyHandler` with one that uses
1268 proxy_handler = urllib.request.ProxyHandler({'http': 'http://www.example.com:3128/'})