Python urllib.request.ProxyHandler() Examples
The following are 30
code examples of urllib.request.ProxyHandler().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
urllib.request
, or try the search function
.
Example #1
Source File: CME1.py From web-scraping with Apache License 2.0 | 7 votes |
def scrape(category_name,commodity_name): #i use proxy handler cuz my uni network runs on its proxy #and i cannot authenticate python through the proxy #so i use empty proxy to bypass the authentication proxy_handler = u.ProxyHandler({}) opener = u.build_opener(proxy_handler) #cme officially forbids scraping #so a header must be used for disguise as an internet browser #the developers say no to scraping, it appears to be so #but actually they turn a blind eye to us, thx #i need different types of commodity #so i need to format the website for each commodity req=u.Request('http://www.cmegroup.com/trading/metals/%s/%s.html'%( category_name,commodity_name),headers={'User-Agent': 'Mozilla/5.0'}) response=opener.open(req) result=response.read() soup=bs(result,'html.parser') return soup #
Example #2
Source File: py3.py From php-load-test with Do What The F*ck You Want To Public License | 6 votes |
def check_php_multipartform_dos(url, post_body, headers, ip): try: proxy_handler = urllib2.ProxyHandler({"http": ip}) null_proxy_handler = urllib2.ProxyHandler({}) opener = urllib2.build_opener(proxy_handler) urllib2.install_opener(opener) req = urllib2.Request(url) for key in headers.keys(): req.add_header(key, headers[key]) starttime = datetime.datetime.now() fd = urllib2.urlopen(req, post_body) html = fd.read() endtime = datetime.datetime.now() usetime = (endtime - starttime).seconds if(usetime > 5): result = url+" is vulnerable" else: if(usetime > 3): result = "need to check normal respond time" return [result, usetime] except KeyboardInterrupt: exit() # end
Example #3
Source File: ghost.py From GhostPotato with MIT License | 6 votes |
def do_socks(self, line): headers = ["Protocol", "Target", "Username", "AdminStatus", "Port"] url = "http://localhost:9090/ntlmrelayx/api/v1.0/relays" try: proxy_handler = ProxyHandler({}) opener = build_opener(proxy_handler) response = Request(url) r = opener.open(response) result = r.read() items = json.loads(result) except Exception as e: logging.error("ERROR: %s" % str(e)) else: if len(items) > 0: self.printTable(items, header=headers) else: logging.info('No Relays Available!')
Example #4
Source File: tokenresolver.py From plugin.video.vrt.nu with GNU General Public License v3.0 | 5 votes |
def __init__(self): """Initialize Token Resolver class""" self._proxies = get_proxies() install_opener(build_opener(ProxyHandler(self._proxies)))
Example #5
Source File: setup.py From OasisLMF with BSD 3-Clause "New" or "Revised" License | 5 votes |
def fetch_ktools_tar(self, location, url, attempts=3, timeout=15, cooldown=1): last_error = None proxy_config = urlrequest.getproxies() self.announce('Retrieving ktools from: {}'.format(url), INFO) self.announce('Proxy configuration: {}'.format(proxy_config), INFO) if proxy_config: # Handle Proxy config proxy_handler = urlrequest.ProxyHandler(proxy_config) opener = urlrequest.build_opener(proxy_handler) urlrequest.install_opener(opener) for i in range(attempts): try: if proxy_config: # Proxied connection req = urlrequest.urlopen(urlrequest.Request(url), timeout=timeout) break else: # Non proxied connection req = urlrequest.urlopen(url, timeout=timeout) break except URLError as e: self.announce('Fetch ktools tar failed: {} (attempt {})'.format(e, (i+1)), WARN) last_error = e sleep(cooldown) else: self.announce('Failed to get ktools tar after {} attempts'.format(attempts), ERROR) if last_error: raise last_error with open(location, 'wb') as f: f.write(req.read())
Example #6
Source File: ntlmrelayx.py From Slackor with GNU General Public License v3.0 | 5 votes |
def do_socks(self, line): headers = ["Protocol", "Target", "Username", "AdminStatus", "Port"] url = "http://localhost:9090/ntlmrelayx/api/v1.0/relays" try: proxy_handler = ProxyHandler({}) opener = build_opener(proxy_handler) response = Request(url) r = opener.open(response) result = r.read() items = json.loads(result) except Exception as e: logging.error("ERROR: %s" % str(e)) else: if len(items) > 0: self.printTable(items, header=headers) else: logging.info('No Relays Available!')
Example #7
Source File: teslajson.py From tesla-apiscraper with GNU Lesser General Public License v3.0 | 5 votes |
def __open(self, url, headers={}, data=None, baseurl=""): """Raw urlopen command""" if not baseurl: baseurl = self.baseurl req = Request("%s%s" % (baseurl, url), headers=headers) try: req.data = urlencode(data).encode('utf-8') # Python 3 except: try: req.add_data(urlencode(data)) # Python 2 except: pass # Proxy support if self.proxy_url: if self.proxy_user: proxy = ProxyHandler({'https': 'https://%s:%s@%s' % (self.proxy_user, self.proxy_password, self.proxy_url)}) auth = HTTPBasicAuthHandler() opener = build_opener(proxy, auth, HTTPHandler) else: handler = ProxyHandler({'https': self.proxy_url}) opener = build_opener(handler) else: opener = build_opener() resp = opener.open(req) charset = resp.info().get('charset', 'utf-8') return json.loads(resp.read().decode(charset))
Example #8
Source File: PriceTradeAnalyzer.py From Stock-Price-Trade-Analyzer with GNU General Public License v3.0 | 5 votes |
def GetProxiedOpener(): testURL = 'https://stooq.com' userName, password = 'mUser', 'SecureAccess' context = ssl._create_unverified_context() handler = webRequest.HTTPSHandler(context=context) i = -1 functioning = False global currentProxyServer while not functioning and i < len(proxyList): if i >=0 or currentProxyServer==None: currentProxyServer = proxyList[i] proxy = webRequest.ProxyHandler({'https': r'http://' + userName + ':' + password + '@' + currentProxyServer}) auth = webRequest.HTTPBasicAuthHandler() opener = webRequest.build_opener(proxy, auth, handler) opener.addheaders = [('User-agent', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.1 Safari/603.1.30')] #opener.addheaders = [('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Safari/605.1.15')] #opener.addheaders = [('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763')] try: conn = opener.open(testURL) print('Proxy ' + currentProxyServer + ' is functioning') functioning = True except: print('Proxy ' + currentProxyServer + ' is not responding') i+=1 return opener #-------------------------------------------- Classes -----------------------------------------------
Example #9
Source File: _proxy.py From tumblr-source-list with MIT License | 5 votes |
def setProxy(self): proxy_handler = request.ProxyHandler({'http': 'http://{hostname}:{port}/'.format(hostname = self.hostname, port = self.port)}) opener = request.build_opener(proxy_handler) try: connect = opener.open(self.url) r = connect.read().decode() res = json.loads(r) except BaseException as e: print(e) else: self.res = res
Example #10
Source File: instabrute.py From BruteSploit with GNU General Public License v3.0 | 5 votes |
def check_proxy(q): """ check proxy for and append to working proxies :param q: """ if not q.empty(): proxy = q.get(False) proxy = proxy.replace("\r", "").replace("\n", "") try: opener = rq.build_opener( rq.ProxyHandler({'https': 'https://' + proxy}), rq.HTTPHandler(), rq.HTTPSHandler() ) opener.addheaders = [('User-agent', 'Mozilla/5.0')] rq.install_opener(opener) req = rq.Request('https://api.ipify.org/') if rq.urlopen(req).read().decode() == proxy.partition(':')[0]: proxys_working_list.update({proxy: proxy}) if _verbose: print(bcolors.OKGREEN + " --[+] ", proxy, " | PASS" + bcolors.ENDC) else: if _verbose: print(" --[!] ", proxy, " | FAILED") except Exception as err: if _verbose: print(" --[!] ", proxy, " | FAILED") if _debug: logger.error(err) pass
Example #11
Source File: resumepoints.py From plugin.video.vrt.nu with GNU General Public License v3.0 | 5 votes |
def __init__(self): """Initialize resumepoints, relies on XBMC vfs and a special VRT token""" self._data = dict() # Our internal representation install_opener(build_opener(ProxyHandler(get_proxies())))
Example #12
Source File: convertor.py From pyp2rpm with MIT License | 5 votes |
def client(self): """XMLRPC client for PyPI. Always returns the same instance. If the package is provided as a path to compressed source file, PyPI will not be used and the client will not be instantiated. Returns: XMLRPC client for PyPI or None. """ if self.proxy: proxyhandler = urllib.ProxyHandler({"http": self.proxy}) opener = urllib.build_opener(proxyhandler) urllib.install_opener(opener) transport = ProxyTransport() if not hasattr(self, '_client'): transport = None if self.pypi: if self.proxy: logger.info('Using provided proxy: {0}.'.format( self.proxy)) self._client = xmlrpclib.ServerProxy(settings.PYPI_URL, transport=transport) self._client_set = True else: self._client = None return self._client
Example #13
Source File: tokenresolver.py From plugin.video.vrt.nu with GNU General Public License v3.0 | 5 votes |
def _get_usertoken(self, name=None, login_json=None): """Get a user X-VRT-Token, vrtlogin-at, vrtlogin-expiry, vrtlogin-rt, SESSION, OIDCXSRF or state token""" if not login_json: login_json = self._get_login_json() cookiejar = cookielib.CookieJar() opener = build_opener(HTTPCookieProcessor(cookiejar), ProxyHandler(self._proxies)) log(2, 'URL get: {url}', url=unquote(self._USER_TOKEN_GATEWAY_URL)) opener.open(self._USER_TOKEN_GATEWAY_URL) xsrf = next((cookie for cookie in cookiejar if cookie.name == 'OIDCXSRF'), None) if xsrf is None: return None payload = dict( UID=login_json.get('UID'), UIDSignature=login_json.get('UIDSignature'), signatureTimestamp=login_json.get('signatureTimestamp'), client_id='vrtnu-site', _csrf=xsrf.value ) data = urlencode(payload).encode() log(2, 'URL post: {url}', url=unquote(self._VRT_LOGIN_URL)) opener.open(self._VRT_LOGIN_URL, data=data) # Cache additional tokens for later use refreshtoken = TokenResolver._create_token_dictionary(cookiejar, cookie_name='vrtlogin-rt') accesstoken = TokenResolver._create_token_dictionary(cookiejar, cookie_name='vrtlogin-at') if refreshtoken is not None: from json import dumps cache_file = self._get_token_filename('vrtlogin-rt') update_cache(cache_file, dumps(refreshtoken), self._TOKEN_CACHE_DIR) if accesstoken is not None: from json import dumps cache_file = self._get_token_filename('vrtlogin-at') update_cache(cache_file, dumps(accesstoken), self._TOKEN_CACHE_DIR) return TokenResolver._create_token_dictionary(cookiejar, name)
Example #14
Source File: tokenresolver.py From plugin.video.vrt.nu with GNU General Public License v3.0 | 5 votes |
def _get_roaming_xvrttoken(self): """Get a X-VRT-Token for roaming""" vrtlogin_at = self.get_token('vrtlogin-at') if vrtlogin_at is None: return None cookie_value = 'vrtlogin-at=' + vrtlogin_at headers = {'Cookie': cookie_value} opener = build_opener(NoRedirection, ProxyHandler(self._proxies)) log(2, 'URL get: {url}', url=unquote(self._ROAMING_TOKEN_GATEWAY_URL)) req = Request(self._ROAMING_TOKEN_GATEWAY_URL, headers=headers) req_info = opener.open(req).info() cookie_value += '; state=' + req_info.get('Set-Cookie').split('state=')[1].split('; ')[0] url = req_info.get('Location') log(2, 'URL get: {url}', url=unquote(url)) url = opener.open(url).info().get('Location') headers = {'Cookie': cookie_value} if url is None: return None req = Request(url, headers=headers) log(2, 'URL get: {url}', url=unquote(url)) setcookie_header = opener.open(req).info().get('Set-Cookie') return TokenResolver._create_token_dictionary(setcookie_header)
Example #15
Source File: tokenresolver.py From plugin.video.vrt.nu with GNU General Public License v3.0 | 5 votes |
def _get_fresh_token(self, refresh_token, name): """Refresh an expired X-VRT-Token, vrtlogin-at or vrtlogin-rt token""" refresh_url = self._TOKEN_GATEWAY_URL + '/refreshtoken?legacy=true' cookie_value = 'vrtlogin-rt=' + refresh_token headers = {'Cookie': cookie_value} cookiejar = cookielib.CookieJar() opener = build_opener(HTTPCookieProcessor(cookiejar), ProxyHandler(self._proxies)) req = Request(refresh_url, headers=headers) log(2, 'URL get: {url}', url=refresh_url) opener.open(req) return TokenResolver._create_token_dictionary(cookiejar, name)
Example #16
Source File: streamservice.py From plugin.video.vrt.nu with GNU General Public License v3.0 | 5 votes |
def __init__(self, _tokenresolver): """Initialize Stream Service class""" install_opener(build_opener(ProxyHandler(get_proxies()))) self._tokenresolver = _tokenresolver self._create_settings_dir() self._can_play_drm = can_play_drm() self._vualto_license_url = None
Example #17
Source File: tvguide.py From plugin.video.vrt.nu with GNU General Public License v3.0 | 5 votes |
def __init__(self): """Initializes TV-guide object""" self._favorites = Favorites() self._resumepoints = ResumePoints() self._metadata = Metadata(self._favorites, self._resumepoints) install_opener(build_opener(ProxyHandler(get_proxies())))
Example #18
Source File: favorites.py From plugin.video.vrt.nu with GNU General Public License v3.0 | 5 votes |
def __init__(self): """Initialize favorites, relies on XBMC vfs and a special VRT token""" self._data = dict() # Our internal representation install_opener(build_opener(ProxyHandler(get_proxies())))
Example #19
Source File: instabrute.py From instabrute with GNU General Public License v3.0 | 5 votes |
def check_proxy(q): """ check proxy for and append to working proxies :param q: """ if not q.empty(): proxy = q.get(False) proxy = proxy.replace("\r", "").replace("\n", "") try: opener = rq.build_opener( rq.ProxyHandler({'https': 'https://' + proxy}), rq.HTTPHandler(), rq.HTTPSHandler() ) opener.addheaders = [('User-agent', 'Mozilla/5.0')] rq.install_opener(opener) req = rq.Request('https://api.ipify.org/') if rq.urlopen(req).read().decode() == proxy.partition(':')[0]: proxys_working_list.update({proxy: proxy}) if _verbose: print(bcolors.OKGREEN + " --[+] ", proxy, " | PASS" + bcolors.ENDC) else: if _verbose: print(" --[!] ", proxy, " | FAILED") except Exception as err: if _verbose: print(" --[!] ", proxy, " | FAILED") if _debug: logger.error(err) pass
Example #20
Source File: __init__.py From script.module.inputstreamhelper with MIT License | 5 votes |
def __init__(self, protocol, drm=None): """Initialize InputStream Helper class""" self.protocol = protocol self.drm = drm from platform import uname log(0, 'Platform information: {uname}', uname=uname()) if self.protocol not in config.INPUTSTREAM_PROTOCOLS: raise InputStreamException('UnsupportedProtocol') self.inputstream_addon = config.INPUTSTREAM_PROTOCOLS[self.protocol] if self.drm: if self.drm not in config.DRM_SCHEMES: raise InputStreamException('UnsupportedDRMScheme') self.drm = config.DRM_SCHEMES[drm] # Add proxy support to HTTP requests proxies = get_proxies() if proxies: try: # Python 3 from urllib.request import build_opener, install_opener, ProxyHandler except ImportError: # Python 2 from urllib2 import build_opener, install_opener, ProxyHandler install_opener(build_opener(ProxyHandler(proxies)))
Example #21
Source File: html_downloader.py From SmallReptileTraining with MIT License | 5 votes |
def download(self, url, retry_count=3, headers=None, proxy=None, data=None): if url is None: return None try: req = request.Request(url, headers=headers, data=data) cookie = cookiejar.CookieJar() cookie_process = request.HTTPCookieProcessor(cookie) opener = request.build_opener() if proxy: proxies = {urlparse(url).scheme: proxy} opener.add_handler(request.ProxyHandler(proxies)) content = opener.open(req).read() except error.URLError as e: print('HtmlDownLoader download error:', e.reason) content = None if retry_count > 0: if hasattr(e, 'code') and 500 <= e.code < 600: #说明是 HTTPError 错误且 HTTP CODE 为 5XX 范围说明是服务器错误,可以尝试再次下载 return self.download(url, retry_count-1, headers, proxy, data) return content
Example #22
Source File: teslajson.py From teslajson with MIT License | 5 votes |
def __open(self, url, headers={}, data=None, baseurl=""): """Raw urlopen command""" if not baseurl: baseurl = self.baseurl req = Request("%s%s" % (baseurl, url), headers=headers) try: req.data = urlencode(data).encode('utf-8') # Python 3 except: try: req.add_data(urlencode(data)) # Python 2 except: pass # Proxy support if self.proxy_url: if self.proxy_user: proxy = ProxyHandler({'https': 'https://%s:%s@%s' % (self.proxy_user, self.proxy_password, self.proxy_url)}) auth = HTTPBasicAuthHandler() opener = build_opener(proxy, auth, HTTPHandler) else: handler = ProxyHandler({'https': self.proxy_url}) opener = build_opener(handler) else: opener = build_opener() resp = opener.open(req) charset = resp.info().get('charset', 'utf-8') return json.loads(resp.read().decode(charset))
Example #23
Source File: http.py From suds-py3 with GNU Lesser General Public License v3.0 | 5 votes |
def u2handlers(self): """ Get a collection of urllib handlers. @return: A list of handlers to be installed in the opener. @rtype: [Handler,...] """ handlers = [] handlers.append(u2.ProxyHandler(self.proxy)) return handlers
Example #24
Source File: common.py From googleads-python-lib with Apache License 2.0 | 5 votes |
def GetHandlers(self): """Retrieve the appropriate urllib handlers for the given configuration. Returns: A list of urllib.request.BaseHandler subclasses to be used when making calls with proxy. """ handlers = [] if self.ssl_context: handlers.append(HTTPSHandler(context=self.ssl_context)) if self.proxies: handlers.append(ProxyHandler(self.proxies)) return handlers
Example #25
Source File: 刷网页.py From Python-Code with MIT License | 5 votes |
def brash(proxy_dict): #print(proxy_dict) global count global count1 if count1 < 100: try: #正常运行 count = count + 1 print(count, 'times') #监视程序是否在正常运行,输出运行了多少次 proxy_handler = request.ProxyHandler({'http': proxy_dict}) opener = request.build_opener(proxy_handler) request.install_opener(opener) countUrl = len(url) for i in range(countUrl): #遍历所有url req = request.Request(url[i], headers=head, method='POST') try: #lock.acquire() response = request.urlopen(req) #访问网页 html = response.read().decode('utf-8') print(html) #lock.release() except urllib.error.URLError as e: print(e.reason) print("EEEEEE") #time.sleep(1) #间隔执行 except Exception: #出现异常 print('Retry') count1 = count1 + 1 time.sleep(1) #间隔执行 else: print('much error')
Example #26
Source File: common.py From acmpv with Do What The F*ck You Want To Public License | 5 votes |
def unset_proxy(): proxy_handler = request.ProxyHandler({}) opener = request.build_opener(proxy_handler) request.install_opener(opener) # DEPRECATED in favor of set_proxy() and unset_proxy()
Example #27
Source File: common.py From acmpv with Do What The F*ck You Want To Public License | 5 votes |
def set_proxy(proxy): proxy_handler = request.ProxyHandler({ 'http': '%s:%s' % proxy, 'https': '%s:%s' % proxy, }) opener = request.build_opener(proxy_handler) request.install_opener(opener)
Example #28
Source File: common.py From acmpv with Do What The F*ck You Want To Public License | 5 votes |
def set_http_proxy(proxy): if proxy == None: # Use system default setting proxy_support = request.ProxyHandler() elif proxy == '': # Don't use any proxy proxy_support = request.ProxyHandler({}) else: # Use proxy proxy_support = request.ProxyHandler({'http': '%s' % proxy, 'https': '%s' % proxy}) opener = request.build_opener(proxy_support) request.install_opener(opener)
Example #29
Source File: common.py From acmpv with Do What The F*ck You Want To Public License | 5 votes |
def unset_proxy(): proxy_handler = request.ProxyHandler({}) opener = request.build_opener(proxy_handler) request.install_opener(opener) # DEPRECATED in favor of set_proxy() and unset_proxy()
Example #30
Source File: common.py From acmpv with Do What The F*ck You Want To Public License | 5 votes |
def set_proxy(proxy): proxy_handler = request.ProxyHandler({ 'http': '%s:%s' % proxy, 'https': '%s:%s' % proxy, }) opener = request.build_opener(proxy_handler) request.install_opener(opener)