Skip to content

Instantly share code, notes, and snippets.

@swinton
Created January 5, 2010 11:24
Show Gist options
  • Save swinton/88fe25d7d446d7bbcfac to your computer and use it in GitHub Desktop.
Save swinton/88fe25d7d446d7bbcfac to your computer and use it in GitHub Desktop.
import urllib, simplejson as json
fp = urllib.urlopen('http://api.twitter.com/1/stevewinton/lists/nizmk/statuses.json')
tweets = json.load(fp)
for tweet in tweets:
print tweet['text']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment