以编程方式获取 MediaWiki wiki 中的文章总数
如何使用 MediaWiki API 获取文章总数?
我在文档中找不到它:
- http://www.mediawiki.org/wiki/ API:搜索
- http://en.wikipedia.org/wiki/Help:Searching#Search_engine_features
即使是粗略的近似也可以。
How can I get the total number of articles using the MediaWiki API?
I couldn't find it in the docs:
- http://www.mediawiki.org/wiki/API:Search
- http://en.wikipedia.org/wiki/Help:Searching#Search_engine_features
Even a rough approximation is fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用链接 http://en.wikipedia.org/w/api .php?action=query&meta=siteinfo&siprop=statistics 并读取
statistics
标记的属性articles
。Use the link http://en.wikipedia.org/w/api.php?action=query&meta=siteinfo&siprop=statistics and read the property
articles
of thestatistics
tag.