Skip to content

Instantly share code, notes, and snippets.

@fitzgeraldsteele
Created November 30, 2009 20:47
Show Gist options
  • Save fitzgeraldsteele/245729 to your computer and use it in GitHub Desktop.
Save fitzgeraldsteele/245729 to your computer and use it in GitHub Desktop.
import simplejson
import urllib2
r = urllib2.urlopen('http://friendfeed.com/api/feed/room/science21')
json = simplejson.loads(r.read())
# I just want to look at the entries in the room
e = json['entries']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment