I somehow want extract type information from Wikipedia. For example, I want to find:
- list of all "Carolina Panthers players"
- list of all "colors"
- list of all "NFL teams"
- list of all "month"
Any ideas if there is a clean way of doing this?
Clearly one alternative is using the API, but as far as I'm aware, it's not trivial to use the existing API to extract such information from Wiki.
Information extracted via the MediaWiki api:
-- List of colors: https://en.wikipedia.org/w/api.php?action=query&list=categorymembers&cmtitle=Category:Color&cmlimit=100
-- List of month: https://en.wikipedia.org/w/api.php?action=query&list=categorymembers&cmtitle=Category:Months&cmlimit=100
-- list of all "Carolina Panthers players" https://en.wikipedia.org/w/api.php?action=query&list=categorymembers&cmtitle=Category:Carolina_Panthers_players&cmlimit=100
-- list of NFL teams: https://en.wikipedia.org/w/api.php?action=query&list=categorymembers&cmtitle=Category:National_Football_League_teams&cmlimit=100