我是一个新开发者,所以请原谅我的无知。
我正在尝试使用代理访问 Python 中的一些网页。我已经尝试将 urllib2 和 requests 模块与我认为可以工作的各种代理一起使用。但是,当我去一个站点验证我的 ip 是否显示为代理时,它仍然显示我的实际 ip 地址而不是代理!
这使我得出结论,有四种可能的事情发生:
- 这些模块坏了。这似乎不太可能,但有可能。
- 我的代码不正确。很有可能,但是我无法具体确定任何错误。
- 有一些方法可以检测根 IP,即使它们是通过代理路由的。
- 我没有想到的东西。
任何帮助表示赞赏!
import requests
import urllib2
from bs4 import BeautifulSoup
# Using requests module
proxy_dict = {"http":"http://123.45.172.115:8080"}
url = 'https://check.torproject.org/'
response = requests.get(url, proxies=(proxy_dict))
html = response.content
soup = BeautifulSoup(html)
ip = str(soup.b.text)
# Using urllib2
prox = urllib2.ProxyHandler(proxy_dict)
opener = urllib2.build_opener(prox, urllib2.HTTPHandler(debuglevel=1))
urllib2.install_opener(opener)
response = opener.open(url)