8 lines
216 B
Python
8 lines
216 B
Python
import twython
|
|
|
|
""" Instantiate Tango with no Authentication """
|
|
twitter = twython.setup()
|
|
search_results = twitter.searchTwitter("WebsDotCom", rpp="50")
|
|
|
|
for tweet in search_results["results"]:
|
|
print tweet["text"]
|