单击链接,然后使用python mechanize更改ip

时间:2014-03-15 14:27:26

标签: python click ip mechanize

是否有可能在python中编写一个脚本,在网站上查找目标链接,然后点击它,最后在循环中更改ip-address等等?

一些例子?

我试图了解机械化,但互联网上没有文档,谢谢

1 个答案:

答案 0 :(得分:0)

如果您在一个集合中有大量代理,您可以通过我不知道为什么您无法做到这一点。

proxies = {"proxy_one", "proxy_two", "proxy_three"}
// Not a python guy, this syntax could be completely wrong and I'm sorry, please feel free to edit this

for proxy in proxies:
  req = mechanize.Request("http://www.google.com")
  req.set_proxy(element,"http")
  mechanize.urlopen(req)