Import non-english WIkipedia XML dump in MySQL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T00:05:24Z http://stackoverflow.com/feeds/question/907492 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/907492/import-non-english-wikipedia-xml-dump-in-mysql 0 Import non-english WIkipedia XML dump in MySQL? PieroP 2009-05-25T17:32:34Z 2009-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#907502 0 Answer by Pierre for Import non-english WIkipedia XML dump in MySQL? Pierre 2009-05-25T17:36:48Z 2009-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#907622 1 Answer by Alex Martelli for Import non-english WIkipedia XML dump in MySQL? Alex Martelli 2009-05-25T18:18:51Z 2009-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>