How do I grab just the parsed Infobox of a wikipedia article? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T01:48:56Z http://stackoverflow.com/feeds/question/990079 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/990079/how-do-i-grab-just-the-parsed-infobox-of-a-wikipedia-article 1 How do I grab just the parsed Infobox of a wikipedia article? Ali 2009-06-13T05:57:25Z 2009-06-15T06:19:47Z <p>Hi guys, I'm still stuck on my problem of trying to parse articles from wikipedia. Actually I wish to parse the infobox section of articles from wikipedia i.e. my application has references to countries and on each country page I would like to be able to show the infobox which is on corresponding wikipedia article of that country. I'm using php here - I would greatly appreciate it if anyone has any code snippets or advice on what should I be doing here.</p> <p>Thanks again.</p> <p><hr /></p> <p>EDIT</p> <p>Well I have a db table with names of countries. And I have a script that takes a country and shows its details. I would like to grab the infobox - the blue box with all country details images etc as it is from wikipedia and show it on my page. I would like to know a really simple and easy way to do that - or have a script that just downloads the information of the infobox to a local remote system which I could access myself later on. I mean I'm open to ideas here - except that the end result I want is to see the infobox on my page - of course with a little Content by Wikipedia link at the bottom :)</p> <p><hr /></p> <p>EDIT</p> <p>I think I found what I was looking for on <a href="http://infochimps.org" rel="nofollow">http://infochimps.org</a> - they got loads of datasets in I think the YAML language. I can use this information straight up as it is but I would need a way to constantly update this information from wikipedia now and then although I believe infoboxes rarely change especially o countries unless some nation decides to change their capital city or so.</p> http://stackoverflow.com/questions/990079/how-do-i-grab-just-the-parsed-infobox-of-a-wikipedia-article/990089#990089 0 Answer by Andrew Siemer for How do I grab just the parsed Infobox of a wikipedia article? Andrew Siemer 2009-06-13T06:05:55Z 2009-06-13T06:05:55Z <p>I suggest performing a WebRequest against wikipedia. From there you will have the page and you can simply parse or query out the data that you need using a regex, character crawl, or some other form that you are familiar with. Essentially a screen scrape!</p> http://stackoverflow.com/questions/990079/how-do-i-grab-just-the-parsed-infobox-of-a-wikipedia-article/990099#990099 2 Answer by dajobe for How do I grab just the parsed Infobox of a wikipedia article? dajobe 2009-06-13T06:12:59Z 2009-06-13T06:12:59Z <p>I suggest you use <a href="http://dbpedia.org/" rel="nofollow">DBPedia</a> instead which has already done the work of turning the data in wikipedia into usable, linkable, open forms.</p> http://stackoverflow.com/questions/990079/how-do-i-grab-just-the-parsed-infobox-of-a-wikipedia-article/990101#990101 1 Answer by Matthew Flaschen for How do I grab just the parsed Infobox of a wikipedia article? Matthew Flaschen 2009-06-13T06:14:03Z 2009-06-13T06:14:03Z <p>It depends what route you want to go. Here are some possibilities:</p> <ol> <li>Install MediaWiki with appropriate modifications. It is a after all a PHP app designed precisely to parse wikitext...</li> <li>Download the <a href="http://static.wikipedia.org/" rel="nofollow">static HTML version</a>, and parse out the parts you want.</li> <li>Use the <a href="http://www.mediawiki.org/wiki/API" rel="nofollow">Wikipedia API</a> with appropriate caching.</li> </ol> <p><strong>DO NOT</strong> just hit the latest version of the live page and redo the parsing every time your app wants the box. This is a huge waste of resources for both you and Wikimedia.</p> http://stackoverflow.com/questions/990079/how-do-i-grab-just-the-parsed-infobox-of-a-wikipedia-article/990105#990105 2 Answer by unknown (yahoo) for How do I grab just the parsed Infobox of a wikipedia article? unknown (yahoo) 2009-06-13T06:15:09Z 2009-06-13T06:15:09Z <p>if you want to parse one time all the articles, wikipedia has all the articles in xml format available,</p> <p><a href="http://en.wikipedia.org/wiki/Wikipedia_database" rel="nofollow">http://en.wikipedia.org/wiki/Wikipedia_database</a></p> <p>otherwise you can screen scrape individual articles e.g.</p>