如何在Python中通过Tor发出urllib2请求?
我正在尝试使用用 Python 编写的爬虫来爬网网站。 我想将 Tor 与 Python 集成,这意味着我想使用 Tor 匿名抓取网站。
我尝试这样做。 这似乎不起作用。 我检查了我的IP,它仍然和我使用tor之前的一样。 我通过Python检查了它。
import urllib2
proxy_handler = urllib2.ProxyHandler({"tcp":"http://127.0.0.1:9050"})
opener = urllib2.build_opener(proxy_handler)
urllib2.install_opener(opener)
I'm trying to crawl websites using a crawler written in Python. I want to integrate Tor with Python meaning I want to crawl the site anonymously using Tor.
I tried doing this. It doesn't seem to work. I checked my IP it is still the same as the one before I used tor. I checked it via python.
import urllib2
proxy_handler = urllib2.ProxyHandler({"tcp":"http://127.0.0.1:9050"})
opener = urllib2.build_opener(proxy_handler)
urllib2.install_opener(opener)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
您正在尝试连接到 SOCKS 端口 - Tor 拒绝任何非 SOCKS 流量。 您可以通过中间人 - Privoxy - 使用端口 8118 进行连接。
示例:
另请注意传递给 ProxyHandler 的属性,没有 http 前缀 ip:port
You are trying to connect to a SOCKS port - Tor rejects any non-SOCKS traffic. You can connect through a middleman - Privoxy - using Port 8118.
Example:
Also please note properties passed to ProxyHandler, no http prefixing the ip:port
然后:
仅使用
urllib2.ProxyHandler
,如 https://stackoverflow.com/a/2015649/895245< /a> 失败并显示:提及于:如何我可以在 urllib2 中使用 SOCKS 4/5 代理吗?
在 Ubuntu 15.10、Tor 0.2.6.10、Python 2.7.10 上测试。
Then:
Using just
urllib2.ProxyHandler
as in https://stackoverflow.com/a/2015649/895245 fails with:Mentioned at: How can I use a SOCKS 4/5 proxy with urllib2?
Tested on Ubuntu 15.10, Tor 0.2.6.10, Python 2.7.10.
以下代码在 Python 3.4 上 100% 工作
(使用此代码时需要保持 TOR 浏览器打开)
此脚本通过ocks5 连接到 TOR,从 checkip.dyn.com 获取 IP,更改身份并重新发送请求以获取新 IP(循环 10 次)
您需要安装适当的库才能使其正常工作。 (享受,请勿滥用)
The following code is 100% working on Python 3.4
(you need to keep TOR Browser open wil using this code)
This script connects to TOR through socks5 get the IP from checkip.dyn.com, change identity and resend the request to get a the new IP (loops 10 times)
You need to install the appropriate libraries to get this working. (Enjoy and don't abuse)
在 tor 前面使用 privoxy 作为 http 代理对我来说很有效 - 这是一个爬虫模板:
Using privoxy as http-proxy in front of tor works for me - here's a crawler-template:
下面是在 python 中使用 tor 代理下载文件的代码:(更新 url)
Here is a code for downloading files using tor proxy in python: (update url)
以下解决方案适用于我的Python 3。 改编自 CiroSantilli 的 答案:
使用
urllib
(Python 3 中 urllib2 的名称):使用
请求
:使用
Selenium
+ PhantomJS:注意:如果您打算经常使用Tor,请考虑制作一个捐赠来支持他们出色的工作!
The following solution works for me in Python 3. Adapted from CiroSantilli's answer:
With
urllib
(name of urllib2 in Python 3):With
requests
:With
Selenium
+ PhantomJS:Note: If you are planning to use Tor often, consider making a donation to support their awesome work!
更新 -
最新(v2.10.0 以上)
请求
库支持袜子代理,但附加要求requests[socks ]
。安装 -
基本用法 -
旧答案 -
尽管这是一篇旧帖子,但回答是因为似乎没有人提到
requesocks
图书馆。它基本上是
requests
库的端口。 请注意,该库是一个旧的分支(最后更新于 2013-03-25),可能不具备与最新 requests 库相同的功能。安装 -
基本使用 -
Update -
The latest (upwards of v2.10.0)
requests
library supports socks proxies with an additional requirement ofrequests[socks]
.Installation -
Basic usage -
Old answer -
Even though this is an old post, answering because no one seems to have mentioned the
requesocks
library.It is basically a port of the
requests
library. Please note that the library is an old fork (last updated 2013-03-25) and may not have the same functionalities as the latest requests library.Installation -
Basic usage -
也许您遇到一些网络连接问题? 上面的脚本对我有用(我替换了一个不同的 URL - 我使用了
http://stackoverflow.com/
- 我得到了预期的页面:(等等)
Perhaps you're having some network connectivity issues? The above script worked for me (I substituted a different URL - I used
http://stackoverflow.com/
- and I get the page as expected:(etc.)
要扩展上面关于使用 torify 和 Tor 浏览器(并且不需要 Privoxy)的评论:(
安装 Tor 浏览器并启动它)
命令行用法:
或内置到脚本中:
注意,Tor 浏览器使用端口 9150,不是9050
To expand on the above comment about using torify and the Tor browser (and doesn't need Privoxy):
(install Tor browser and start it up)
Command line usage:
Or built into a script:
Note, the Tor browser uses port 9150, not 9050
Tor 是一个袜子代理。 使用 您引用的示例直接连接到它会失败,并显示“urlopen 错误”隧道连接失败:501 Tor 不是 HTTP 代理”。 正如其他人提到的,您可以使用 Privoxy 来解决这个问题。
或者,您也可以使用 PycURL 或 SocksiPy。 有关将两者与 tor 一起使用的示例,请参阅...
https://stem.torproject.org/tutorials/ to_Russia_with_love.html
Tor is a socks proxy. Connecting to it directly with the example you cite fails with "urlopen error Tunnel connection failed: 501 Tor is not an HTTP Proxy". As others have mentioned you can get around this with Privoxy.
Alternatively you can also use PycURL or SocksiPy. For examples of using both with tor see...
https://stem.torproject.org/tutorials/to_russia_with_love.html
您可以使用 torify
运行您的程序
you can use torify
run your program with
我想分享一个对我有用的解决方案(python3、windows10):
第 1 步:在
9151
启用 Tor ControlPort。Tor 服务在默认端口
9150
上运行,ControlPort 在9151
上运行。 运行netstat -an
时,您应该能够看到本地地址127.0.0.1:9150
和127.0.0.1:9151
。步骤2:Python脚本如下。
上面的脚本将为您想要抓取的每个 URL 更新 IP 地址。 只要确保睡眠时间足够长,以便 IP 发生变化即可。 昨天最后一次测试。 希望这可以帮助!
Thought I would just share a solution that worked for me (python3, windows10):
Step 1: Enable your Tor ControlPort at
9151
.Tor service runs at default port
9150
and ControlPort on9151
. You should be able to see local address127.0.0.1:9150
and127.0.0.1:9151
when you runnetstat -an
.Step 2: Python script as follow.
This script above will renew IP address for every URL that you want to scrape. Just make sure to sleep it long enough for IP to change. Last tested yesterday. Hope this helps!