Updated search example; major thanks to Sai for pointing out that this was broken.

This commit is contained in:
Ryan McGrath 2009-07-03 03:04:47 -04:00
parent 76ca83cb87
commit 69f747a658

View file

@ -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"]