I want to get all the articles names under a category and its sub-categories.

Options I'm aware of:

  1. Using the Wikipedia API. Does it have such an option??
  2. d/l the dump. Which format would be better for my usage?
  3. There is also an option to search in Wikipedia something like incategory:"music", but I didn't see an option to view that in XML.

Please share your thoughts

link|improve this question

53% accept rate
feedback

2 Answers

up vote 2 down vote accepted

The following resource will help you to download all pages from the category and all its subcategories:

http://en.wikipedia.org/wiki/Wikipedia:CatScan

link|improve this answer
feedback

Note that Wikipedia's categorization system is not a tree, or even an acyclic graph. It is quite possible that by continually following subcategory links you will eventually wind up back where you started.

If you are going to be making many such queries, you would be best served by downloading a database dump. If this will be an infrequent thing and will only be dealing with small categories, you could probably get away with making repeated queries to list=categorymembers.

incategory:"music" does not appear to do subcategory searching.

link|improve this answer
Would you recommend downloading the XML or SQL for my purpose? – Noam Apr 26 '11 at 8:09
1  
@Noam: Whichever is more convenient for you, really. Note that you may only need the categorylinks.sql dump, or that and the page.sql dump, depending on just what you are trying to do. – Anomie Apr 26 '11 at 15:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.