Neel Shah
Neel Shah

Reputation: 17

Getting wikipedia database in mysql?

I am making a website where I want to get content of Wikipedia so I need the database of Wikipedia in my localhost so how can I get it?

I cannot find any SQL file. Also, what is the difference between a database dump and a .sql database file?

Upvotes: 1

Views: 107

Answers (1)

simon at rcl
simon at rcl

Reputation: 7344

Wikipedia do not expose their base databases to the public, so you can't do that.

They also rather object to people 'stealing' large portions of their content - but I don't think that they actually do much about it. (Some content is licenced from original copyright holders. There would be objections about you copying stuff like that; I think it's mostly images though.)

Your only option is to scrape their website by downloading the HTML they generate. This will probably not be very useful and won't make you many friends.

Probably the best thing to do is create an account at Wikipedia, go to something the Community Portal (link top left bar) and then the Village Pump (where you ask questions) and ask them.

@HoschNok - indeed!

Cheers -

Upvotes: 1

Related Questions