如何使用维基百科 API 构建图表?

发布于 2024-12-17 13:41:31 字数 91 浏览 1 评论 0原文

我想创建整个 Java 生态系统的图表。

我想从 Java 维基百科文章开始,并从那里开始跟踪与 Java 编程语言、其框架、副产品等相关的每一个联系。

I would like to create a graph of the whole Java ecosystem.

I would like to start from the Java Wikipedia article and, from there, follow every connection that deals with the Java programming language, its frameworks, spin-offs, etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泛泛之交 2024-12-24 13:41:31

如果您想跟踪文章Java(软件平台)中的每个链接,您可以使用 API 来实现。但它也链接到一些一般性文章(例如垃圾收集(计算机科学))和一些与 Java 无关的文章(例如C(编程语言))。这些示例仅来自本文的主要部分。

您可以做的是使用 API 来浏览类别:Java 平台 及其所有子类别。这应该会为您提供有关 Java 和直接相关主题的所有文章。

例如,要直接获取该类别中的所有页面,您可以使用如下查询:

http://en.wikipedia.org/w/api.php?format=xml&action=query&list=categorymembers&cmtitle=Category:Java_platform&cmlimit=max

If you want to follow every link from the article Java (software platform), you can do that using the API. But it also links to some general articles (like Garbage collection (computer science)) and some articles that are not about Java (like C (programming language)). And those examples are just from the lead section of the article.

What you could do instead is to use the API to walk through Category:Java platform and all its subcategories. This should get you all articles about Java and directly related topics.

For example, to get all the pages directly in that category, you can use query like this:

http://en.wikipedia.org/w/api.php?format=xml&action=query&list=categorymembers&cmtitle=Category:Java_platform&cmlimit=max

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文