模拟 python ie 兼容浏览器的最佳方法
使用 python 模拟 IE 浏览器进行抓取的最佳方法是什么?我找到了这个脚本 http://www.mayukhbose.com/python/IEC/index .php 并想知道是否有更多更新! (可以填写表格)
谢谢!
What would be the best way to emulate a IE browser with python for scraping? I've found this script http://www.mayukhbose.com/python/IEC/index.php and was wondering if there was anything more updated out there! (that's able to fill forms)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你想抓取,你可以使用像
mechanize
这样的抓取模块 http://wwwsearch .sourceforge.net/mechanize/If you want to scrape, you can use a scraper module like
mechanize
http://wwwsearch.sourceforge.net/mechanize/Python Mechanize 正是这样做的:
http://wwwsearch.sourceforge.net/mechanize/
它充当浏览器(即您可以前进和后退、搜索并在检索到的页面上填写表格、发布等)
Python Mechanize does exactly that:
http://wwwsearch.sourceforge.net/mechanize/
It acts as a browser (i.e. you can go foward and backward, search and fill out a form on a retrieved page, post etc.)