diff --git a/tango_examples/search_results.py b/tango_examples/search_results.py new file mode 100644 index 0000000..97b03a5 --- /dev/null +++ b/tango_examples/search_results.py @@ -0,0 +1,8 @@ +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"]