Wikipedia (CDSW)

From CommunityData
Wikipedia.png

Building a Dataset using the Wikipedia API

In this project, we will explore a few ways to gather data using the Wikipedia API. Once we've done that, we will extend this to code to create our own datasets of Wikipedia edits or other data that we might be able to use to ask and answer questions in future sessions.

Goals

  • Get set up to build datasets with the Wikipedia API
  • Have fun collecting different types of data from Wikipedia
  • Practice reading and extending other people's code
  • Create a few collections of different types of data from Wikipedia that you can do research with in the final section

Download and test the Wikipedia project

  1. Right click the following file, click "Save Target as..." or "Save link as...", and save it to your Desktop directory: http://FIXME
  2. The ".zip" extension on the above file indicates that it is a compressed Zip archive. We need to "extract" its contents.
  3. Start up your terminal, navigate to the new directory you have unpacked called wikipedia-cdsw.zip, and then test the code by running:
python FIXME.py

Important Background



Questions to answer

  1. Warm Up
    1. When was the article about the Panama Papers created?
    2. When was the most recent edit to the Panama Papers article?
    3. Think of one or two articles that interest you. Which ones were created first?
    4. Which have been edited most recently?
  2. How many views did Panama_Papers have…
    1. the day it was created?
    2. the first week?
    3. How does this compare to the articles that interest you?
  3. How many edits did it get in…
    1. the first 24 hours?
    2. the first week?
    3. How many edits did the articles that interest you get?

More difficult questions

  1. Who made the total most edits to the article?
  2. What’s the number of edits per day in the first two weeks of the article?
  3. What’s the peak number of edits per hour of the article? When did it occur?
  4. Who were the top editors during that hour?
  5. What day did it have the most views, and how many views did it have?
  6. Who’s the most person named in the Panama papers with the most views to their Wikipedia page?

Resources