Using Urllib with TOR , 2to3ed
import urllib.request
def req(url):
proxy_support = urllib.request.ProxyHandler({"socks4a" : "127.0.0.1:9050"})
opener = urllib.request.build_opener(proxy_support)
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
return opener.open(url).read()
print(req('http://google.com'))
python: urllib2 how to send cookie with urlopen request , 2to3ed
import urllib.request, urllib.error, urllib.parse
from http.cookiejar import CookieJar
cj = CookieJar()
opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
# input-type values from the html form
values = { "username" : username, "password": password, "login" : "Login" , "PK_AccessPoint" : "0" }
data = urllib.parse.urlencode(values)
response = opener.open("https://page.com/login.php", data)
content = response.read()
combine it the opener can have both cookie , proxy , http follow location together
thanks