Wikipedia API: how to get the number of revisions of a page?
Anyone know how to get the number of revisions of a wikipedia page using mediawiki API? I have read this API documentation, but can't find the related API: Revision API The only possibility is to retrieve all revisions and count them. You might need to continue the query for that. Bug 17993 is about including a count, but is still unsolved. Here is code to get number of revisions of a page (in this case, the JSON wiki page ): import requests BASE_URL = "http://en.wikipedia.org/w/api.php" TITLE = 'JSON' parameters = { 'action': 'query', 'format': 'json', 'continue': '', 'titles': TITLE, 'prop':