How to use HTTP proxies in Python2?

1. Create a file called testproxy.py, containing:
-----------------------------------------------------
import urllib2
 
proxy_handler = urllib2.ProxyHandler({"http":"1.2.3.4:8800", "https":"1.2.3.4:8800"})
opener = urllib2.build_opener(proxy_handler)
urllib2.install_opener(opener)
 
html = urllib2.urlopen("http://www.google.com").read()
print html
-----------------------------------------------------
 
2. Run the script using:
----------------------------------------------------
python testproxy.py
----------------------------------------------------
 
 
  • 121 Users Found This Useful
Was this answer helpful?

Related Articles

Proxy Manager Guide

1.    Go to http://squidproxies.com/proxymanager/ProxyManager-v1.zip     2.    Save the File...

How to use a proxy in Chrome?

Click the Chrome menu on the  browser toolbar. Select Settings. Scroll down. Click "Show...

How to use a proxy in Firefox?

Go to Tools > Options.Click on Advanced> Network > Settings.In Connection Settings,...

How to use a proxy in Internet Explorer?

Go to Tools> Internet Options Click Connections > LAN Settings On Local Area Networn...

How to use HTTP proxies in PHP code?

  We support PHP code as long as the CURL library is enabled. 1. Create a file called...

Powered by WHMCompleteSolution