twython/tango_examples/search_results.py
2009-06-13 21:00:58 -04:00

8 lines
207 B
Python

import tango
""" Instantiate Tango with no Authentication """
twitter = tango.setup()
search_results = twitter.searchTwitter("WebsDotCom", "2")
for tweet in search_results["results"]:
print tweet["text"]