Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
What problem do you have? Simply build the opener using multiple handlers. – stranac Sep 13 '12 at 4:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.