Twitter

From OpenHatch wiki
Revision as of 20:54, 4 July 2012 by imported>Jesstess (→‎Project steps)

Project

Use the Twitter API to write the basic parts of a Twitter client. See what your friends are tweeting, get trending topics, search tweets, and more!

Goals

  • Have fun playing with data from Twitter.
  • See how easy it is to programmatically gather data from social websites that have APIs.
  • Get experience with command line option parsing and passing data to a Python script.
  • Get experience reading other people's code.

Project setup

Download and install the python-twitter dependencies and library

Download and un-archive the Twitter project skeleton code

Un-archiving will produce a Twitter folder containing 3 python files: twitter_api.py, twitter_functions.py, and util.py.

Test your installation

From a command prompt, navigate to the Twitter directory and run

python twitter_api.py --search=python

You should see the text from 20 tweets containing the word "Python" printed to the screen. If you don't, let a staff member know so you can debug this together.

Project steps

1. Read through and understand search

  1. Run python twitter_api.py --search with various search terms, e.g.
    • python twitter_api.py --search=Python
    • python twitter_api.py --search="Red Sox"
  2. Read through the search function in twitter_functions.py.
  3. Trace through the logic in twitter_api.py that turns the --search command line option into a call to search.
  4. Find GetSearch in the Twitter library code at http://code.google.com/p/python-twitter/source/browse/twitter.py. What other options could we have passed to GetSearch?

Check your understanding: What does api.GetSearch return?


2. Read through and understand trendingTopics

  1. Run python twitter_api.py --trending-topics
  2. Read through the trendingTopics function in twitter_functions.py.
  3. Trace through the logic in twitter_api.py that turns the --trending-topics command line option into a call to search.

Check your understanding: What are the differences between the optparse logic for --search and --trending-topics?


3. Implement userTweets

  1. Using the search and trendingTopics functions as a reference, implement userTweets in twitter_functions.py. This function should print recent tweets by the username provided on the command line. You may find the twitter.Api() function GetUserTimeline() helpful.
  2. We've already written some optparse logic for userTweets in twitter_api.py. Read through that logic. In what ways is it the same/different from the logic for search?
  3. Test your function. You can do this with:
    python twitter_api.py -u <username>

    For example,

    python twitter_api.py -u bostonpython
  4. You should see 20 tweets by the provided username. If you have a Twitter account, try running it on yourself, tweeting something new, and running it again!

Check your understanding: What are the two ways to pass command line arguments for userTweets?


4. Implement trendingTweets

  1. Using the search and trendingTopics functions as a reference, implement trendingTweets in twitter_functions.py.


Bonus material

  • Customize how tweets are displayed. Look at the Status and User classes in the Twitter code for inspiration; options include the URL for the tweet, how many followers the sender has, the location of the sender, and if it was a retweet.
  • [Long] A lot of the Twitter API requires that you be authenticated. Examples of actions that require authentication include: posting new tweets, getting a user's followers, getting private tweets from your friends, and following new people. Set up oAuth so you can make authenticated requests. http://dev.twitter.com/pages/auth describe how Twitter uses oAuth. http://code.google.com/p/python-twitter/ has examples of using oAuth authentication to make authenticated Twitter API requests.