I want to use a proxy in my code.
What I'm trying to do is open a list of proxies from a .txt and load them as the proxy. If I just can get the code to use proxy, I'm sure I can figure out the rest. Here is my main code:
filehandle = urllib.urlopen(address)
for lines in filehandle.readlines(1):
print (lines)
filehandle.close()