twython/core_examples/search_results.py
2011-12-07 14:23:22 -05:00

8 lines
230 B
Python

from twython import Twython
""" Instantiate Twython with no Authentication """
twitter = Twython()
search_results = twitter.searchTwitter(q="WebsDotCom", rpp="50")
for tweet in search_results["results"]:
print tweet["text"]