How do I get information from wikipedia into my application. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:57:40Z http://stackoverflow.com/feeds/question/847516 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/847516/how-do-i-get-information-from-wikipedia-into-my-application 1 How do I get information from wikipedia into my application. Ali 2009-05-11T10:24:58Z 2009-05-11T14:30:40Z <p>Hi guys I wish to get information for entries I have in my database from wikipedia like for example some stadiums and country information. I'm using Zend Framework and also how would I be able to handle queries that return multiple ambiguous entries or the like.. I would like all the help I can get here...</p> http://stackoverflow.com/questions/847516/how-do-i-get-information-from-wikipedia-into-my-application/847537#847537 2 Answer by altCognito for How do I get information from wikipedia into my application. altCognito 2009-05-11T10:33:22Z 2009-05-11T10:44:07Z <p>Do a simple <a href="http://en.wikipedia.org/wiki/Wikipedia%5Fdatabase" rel="nofollow">HTTP request</a> to the article you are looking to import. <a href="http://www.onderstekop.nl/articles/114/" rel="nofollow">Here's a good library</a> which might help with parsing the HTML, though there are dozens of solutions for that as well, <a href="http://us2.php.net/dom" rel="nofollow">including using the standard DOM model which is provided by php</a>.</p> <pre><code>&lt;?php require_once "HTTP/Request.php"; $req =&amp; new HTTP_Request("http://www.yahoo.com/"); if (!PEAR::isError($req-&gt;sendRequest())) { echo $req-&gt;getResponseBody(); } ?&gt; </code></pre> <p>Note, you will be locked out of the site if your traffic levels are deemed too high. (If you want a HUGE number of articles, <a href="http://en.wikipedia.org/wiki/Wikipedia%5Fdatabase" rel="nofollow">download the database</a>)</p> http://stackoverflow.com/questions/847516/how-do-i-get-information-from-wikipedia-into-my-application/847554#847554 7 Answer by MicTech for How do I get information from wikipedia into my application. MicTech 2009-05-11T10:37:59Z 2009-05-11T14:30:40Z <p>Wikipedia based on MediaWiki, that have API.</p> <p>You can try MediaWiki API on Wikipedia - <a href="http://en.wikipedia.org/w/api.php" rel="nofollow">http://en.wikipedia.org/w/api.php</a></p> <p>Documentation for MediaWiki API - <a href="http://www.mediawiki.org/wiki/API" rel="nofollow">http://www.mediawiki.org/wiki/API</a></p>