From 69f747a65881200afbdac4c6b6253dac66b347e4 Mon Sep 17 00:00:00 2001 From: Ryan McGrath Date: Fri, 3 Jul 2009 03:04:47 -0400 Subject: [PATCH] Updated search example; major thanks to Sai for pointing out that this was broken. --- tango_examples/search_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tango_examples/search_results.py b/tango_examples/search_results.py index 97b03a5..6cec48f 100644 --- a/tango_examples/search_results.py +++ b/tango_examples/search_results.py @@ -2,7 +2,7 @@ import tango """ Instantiate Tango with no Authentication """ twitter = tango.setup() -search_results = twitter.searchTwitter("WebsDotCom", "2") +search_results = twitter.searchTwitter("WebsDotCom", rpp="50") for tweet in search_results["results"]: print tweet["text"]