twython/examples/search_results.py

8 lines
232 B
Python

import twython.core as 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"]