Community Data Science Course (Spring 2015)/Wikipedia API projects: Difference between revisions

From CommunityData
 
Line 14: Line 14:
=== Download and test the Wikipedia project ===
=== Download and test the Wikipedia project ===


# Right click the following file, click "Save Target as..." or "Save link as...", and save it to your Desktop directory: http://mako.cc/teaching/2015/community_data_science/WikipediaAPI.zip
# Right click the following file, click "Save Target as..." or "Save link as...", and save it to your Desktop directory: http://mako.cc/teaching/2015/community_data_science/wikipedia-data-examples.zip
# The ".zip" extension on the above file indicates that it is a compressed Zip archive. We need to "extract" its contents.  
# The ".zip" extension on the above file indicates that it is a compressed Zip archive. We need to "extract" its contents.  
# Start up your terminal, navigate to the new directory you have unpacked, and then test the code by running:
# Start up your terminal, navigate to the new directory you have unpacked called <code>wikipedia-data-examples.zip</code>, and then test the code by running:


  python wikipedia1-1.py
  python wikipedia1-1.py

Latest revision as of 02:30, 21 April 2015

Wikipedia.png

Building a Dataset using the Wikipedia API[edit]

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[edit]

  • 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[edit]

  1. Right click the following file, click "Save Target as..." or "Save link as...", and save it to your Desktop directory: http://mako.cc/teaching/2015/community_data_science/wikipedia-data-examples.zip
  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-data-examples.zip, and then test the code by running:
python wikipedia1-1.py

Important Background[edit]

Resources[edit]