Skip to content

Instantly share code, notes, and snippets.

@ajkovar
Created January 10, 2010 06:34
Show Gist options
  • Save ajkovar/273353 to your computer and use it in GitHub Desktop.
Save ajkovar/273353 to your computer and use it in GitHub Desktop.
from pymongo import Connection
import urllib
import simplejson
response = simplejson.load(urllib.urlopen("http://search.twitter.com/search.json?q=test"));
tweets = response["results"];
db = Connection().map_reduce_example
for tweet in tweets:
db.tweets.insert(tweet)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment