3

我使用 Python 2.7.2 和 Mechanize 0.2.5。
当我访问互联网时,我必须通过代理服务器。我写了以下代码,但最后一行发生了 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
4

1 回答 1

3

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

import requests

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

requests.get("http://example.org", proxies=proxies)
于 2012-11-22T03:14:56.170 回答