Import non-english WIkipedia XML dump in MySQL? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T00:05:24Zhttp://stackoverflow.com/feeds/question/907492http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/907492/import-non-english-wikipedia-xml-dump-in-mysql0Import non-english WIkipedia XML dump in MySQL?PieroP2009-05-25T17:32:34Z2009-05-25T18:18:51Z
<p>Hi, I'm looking for a script that can convert the XML wikipedia DUMP in MySQL compliant SQL. I've found a ready SQL dump for the english version but no easy way to import the other languages.</p>
<p>Thanks,</p>
<p>Piero</p>
http://stackoverflow.com/questions/907492/import-non-english-wikipedia-xml-dump-in-mysql/907502#9075020Answer by Pierre for Import non-english WIkipedia XML dump in MySQL?Pierre2009-05-25T17:36:48Z2009-05-25T17:36:48Z<p>Wikipedia has an API </p>
<ul>
<li><a href="http://fr.wikipedia.org/w/api.php" rel="nofollow">http://fr.wikipedia.org/w/api.php</a></li>
<li><a href="http://de.wikipedia.org/w/api.php" rel="nofollow">http://de.wikipedia.org/w/api.php</a></li>
<li><a href="http://es.wikipedia.org/w/api.php" rel="nofollow">http://es.wikipedia.org/w/api.php</a></li>
<li>(...)</li>
</ul>
<p>You can use this API to iterate over the articles and to download each page.</p>
http://stackoverflow.com/questions/907492/import-non-english-wikipedia-xml-dump-in-mysql/907622#9076221Answer by Alex Martelli for Import non-english WIkipedia XML dump in MySQL?Alex Martelli2009-05-25T18:18:51Z2009-05-25T18:18:51Z<p>Per <a href="http://en.wikipedia.org/wiki/Wikipedia%5Fdatabase" rel="nofollow">wikipedia's own page on the subject</a> (well worth studying), help for importing wikipedia xml dumps to mysql is found on <a href="http://www.mediawiki.org/wiki/Manual:Importing%5FXML%5Fdumps" rel="nofollow">this mediawiki page</a> .</p>