If the proxy is 200.217.241.76 and the port is 80 how can i connect to google.com and read the html code using that proxy?
My problem is to establish the connection i know how to read the html file when i get it, i want to automate a script that keep on reading different html files and save the data.
what i have now :
import urllib
html = urllib.openurl("http://google.com").read()
# do stuff with html
an example would be great !