search example update: twitter API v1.1 has replaced "rpp" by "count" #220

Merged
rolinh merged 1 commit from fix/example/search into master 2013-06-17 09:28:42 -07:00

View file

@ -3,7 +3,7 @@ from twython import Twython, TwythonError
# Requires Authentication as of Twitter API v1.1
twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
try:
search_results = twitter.search(q='WebsDotCom', rpp='50')
search_results = twitter.search(q='WebsDotCom', count=50)
except TwythonError as e:
print e