Examples of various Tango scripts

This commit is contained in:
Ryan McGrath 2009-06-13 21:00:58 -04:00
parent 90d7e5ffb0
commit 55b28c9184

View file

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