随机使用不同代理和用户代理的智能屏幕抓取?
我想从 http://abc.com/view_page.aspx?ID="rel="nofollow noreferrer">http://abc.com/view_page.aspx? 下载一些 HTML 页面ID= ID 来自不同数字的数组。
我有兴趣访问此 URL 的多个实例并使用不同的代理 IP/端口将文件保存为 [ID].HTML。
我想使用不同的用户代理,并且我想随机化每次下载之前的等待时间。
这样做的最佳方法是什么? urllib2? pycURL?卷曲?对于手头的任务,你更喜欢什么?
请指教。谢谢你们!
I want to download few HTML pages from http://abc.com/view_page.aspx?ID= The ID is from an array of different numbers.
I would be interested in visiting multiple instances of this URL and saving the file as [ID].HTML using different proxy IP/ports.
I want to use different user-agents and I want to randomize the wait times before each download.
What is the best way of doing this? urllib2? pycURL? cURL? What do you prefer for the task at hand?
Please advise. Thanks guys!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用类似的东西:
Use something like:
使用unix工具
wget
。它可以选择指定自定义用户代理和每次页面检索之间的延迟。您可以查看 wget(1) 手册页以获取更多信息。
Use unix tool
wget
. It has option to specify custom user-agent and delay between each retrieval of the page.You can see wget(1) man page for more information.
如果您不想使用开放代理,请查看 ProxyMesh,它可以为您进行 IP 轮换/随机化。
If you don't want to use open proxies, checkout ProxyMesh, which does IP rotation/randomization for you.