Lines Matching refs:ProxyHandler
89 :class:`ProxyHandler` is default installed and makes sure the requests are
96 :class:`ProxyHandler` objects.
145 instances of them or subclasses of them: :class:`ProxyHandler` (if proxy
187 ``ProxyHandler`` explicitly, or make sure the variable name is in
302 .. class:: ProxyHandler(proxies=None)
899 ProxyHandler Objects
903 .. method:: ProxyHandler.<protocol>_open(request)
906 The :class:`ProxyHandler` will have a method :meth:`<protocol>_open` for every
1267 :class:`ProxyHandler`. By default, :class:`ProxyHandler` uses the environment
1272 This example replaces the default :class:`ProxyHandler` with one that uses
1276 proxy_handler = urllib.request.ProxyHandler({'http': 'http://www.example.com:3128/'})