Python:使用 urllib2 处理 Javascript?
我正在编写一个 HTML 抓取工具,它从网站上的表格中获取值。我还需要获取图像的 URL,但问题是该图像是通过 javascript 动态生成的 - 当我通过 urllib 获取网站内容时,Javascript 不会运行或显示在生成的 HTML 中。
有什么方法可以让Javascript在通过urllib访问的页面上运行吗?
I am coding a HTML scraper which gets values from a table on a website. I also need to grab the URL of an image, but the problem is this image is dynamically generated via javascript - and when i get contents of the website via urllib, the Javascript does not run or show in the resulting HTML.
Is there any way to enable Javascript to run on pages which are accessed via urllib?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你需要某种 JS 解释器。可能有 Python-浏览器集成来帮助解析此类页面。
No, you'd need some sort of JS interpreter for that. There might be Python-Browser integrations to help parsing this kind of page.