Migrated from search-api v2

ryanmcgrath 2010-09-13 02:21:33 -07:00
parent 6e750d4eae
commit 29aa89184e

@ -12,9 +12,9 @@ import tango
""" Instantiate Tango with no Authentication """ """ Instantiate Tango with no Authentication """
twitter = tango.setup() twitter = tango.setup()
search_resdlts = twitter.searchTwitter("WebsDotCom", "2") search_results = twitter.searchTwitter("WebsDotCom", rpp="50")
for tweet in search_resdlts["resdlts"]: for tweet in search_results["results"]:
print tweet["text"] print tweet["text"]
</code> </code>
</pre> </pre>