当需要HTTPS和代理身份验证时,Python机械化不起作用

时间:2012-11-22 03:05:45

标签: python https proxy mechanize

我使用Python 2.7.2和Mechanize 0.2.5 当我访问Internet时,我必须通过代理服务器。我写了下面的代码,但最后一行发生了URLError ..有没有人对此有任何解决方案?

import mechanize

br = mechanize.Browser()
br.set_debug_http(True)
br.set_handle_robots(False)

br.set_proxies({
    "http"  : "192.168.20.130:8080",
    "https" : "192.168.20.130:8080",})
br.add_proxy_password("username", "password")

br.open("http://www.google.co.jp/")  # OK
br.open("https://www.google.co.jp/") # Proxy Authentication Required

1 个答案:

答案 0 :(得分:3)

我不建议你使用Mechanize,它已经过时了。看看它会requests 让你的生活更轻松。将代理与请求一起使用就是这样:

import requests

proxies = {
  "http": "10.10.1.10:3128",
  "https": "10.10.1.10:1080",
}

requests.get("http://example.org", proxies=proxies)