8 lines
227 B
Python
8 lines
227 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"]
|