从 akamai 可视化工具中抓取数据
我目前正在开发一个项目,需要监控来自 akamai 平台的一些数据,如下所示:http://www.akamai.com/html/technology/dataviz3.html。
我做了相当多的研究,但没有成功地从 swf 对象中抓取数据。如果有人知道如何做到这一点,我将很高兴听到。
I am currently working on a project for which I need to monitor some data from the akamai platform as visualised here: http://www.akamai.com/html/technology/dataviz3.html .
I did quite a bit of research, but did not manage to successfully scrape data from the swf objects. If anyone has any idea on how this could be done, I would be grateful to hear.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所需要做的就是使用 Firefox Firebug 插件 等工具来查看网页正在下载的内容。
因此,在此页面的情况下,看起来它使用的所有数据都来自:
http://wwwnui.akamai.com/datavis/pview_feed.xml
http://wwwnui.akamai.com/datavis/visitors_feed.xml
http://wwwnui.akamai.com/datavis/media_feed.xml
然后您可以使用
lxml
并用它做你想做的事情。All you need to so is use something like the Firefox Firebug addon to see what the webpage is downloading.
So in the case of this page, it looks like all the data it uses is from:
http://wwwnui.akamai.com/datavis/pview_feed.xml
http://wwwnui.akamai.com/datavis/visitors_feed.xml
http://wwwnui.akamai.com/datavis/media_feed.xml
Then you can parse the data with
lxml
and do with it what you want.