How do I get information from wikipedia into my application. - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T22:57:40Zhttp://stackoverflow.com/feeds/question/847516http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/847516/how-do-i-get-information-from-wikipedia-into-my-application1How do I get information from wikipedia into my application.Ali2009-05-11T10:24:58Z2009-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#8475372Answer by altCognito for How do I get information from wikipedia into my application.altCognito2009-05-11T10:33:22Z2009-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><?php
require_once "HTTP/Request.php";
$req =& new HTTP_Request("http://www.yahoo.com/");
if (!PEAR::isError($req->sendRequest())) {
echo $req->getResponseBody();
}
?>
</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#8475547Answer by MicTech for How do I get information from wikipedia into my application.MicTech2009-05-11T10:37:59Z2009-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>