使用维基百科消除歧义
我正在尝试使用维基百科的消歧页面进行一些消歧。我使用查询从消歧页面获取链接列表
http://en.wikipedia.org/w/api.php?action=query&prop=links&format=json&titles=stack%20overflow_(disambiguation)
我得到了链接,但是获取每个链接旁边显示的文本的最快方法是什么? API 并没有使其易于使用。我的代码的其他部分正在做不可避免的耗时工作,想知道是否有人可以建议一些快速破解......
I'm trying to do some disambiguation using wikipedi's disambiguation pages. I get the list of links from the disambiguation page using the query
http://en.wikipedia.org/w/api.php?action=query&prop=links&format=json&titles=stack%20overflow_(disambiguation)
I get the links alright, but what's the speediest way to get the text that appears next to each link? The api doesn't make it readily available. Other parts of my code are doing unavoidably time consuming work, was wondering if anybody could suggest some quick hack ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法通过 API 从“链接列表”转到“链接旁边的文本”。最快速(也可能是唯一)的方法是下载页面 wikitext 或 HTML 并解析它。
There is no way to go from "list of links" to "text next to the link" via the API. The speediest (and probably only) way is to download the page wikitext or HTML and parse that.