Created
January 10, 2010 06:34
-
-
Save ajkovar/273353 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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