Bugs fixed as described on Twitter yesterday to Ryan McGrath #107

Merged
lucadex merged 2 commits from master into master 2012-07-24 11:52:15 -07:00
Showing only changes of commit ee94028854 - Show all commits

View file

@ -2,7 +2,7 @@ from twython import Twython
""" Instantiate Twython with no Authentication """
twitter = Twython()
search_results = twitter.searchTwitter(q="WebsDotCom", rpp="50")
search_results = twitter.search(q="WebsDotCom", rpp="50")
for tweet in search_results["results"]:
print "Tweet from @%s Date: %s" % (tweet['from_user'].encode('utf-8'),tweet['created_at'])