From: Vladimir Date: Sat, 21 Dec 2013 20:12:49 +0000 (+0500) Subject: Added count parameter to search API method X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=3bc6ffa68fd6d939850e5db89370eeed18e15c48;p=tweepy.git Added count parameter to search API method --- diff --git a/tweepy/api.py b/tweepy/api.py index d24137c..5555bef 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -621,7 +621,7 @@ class API(object): search = bind_api( path = '/search/tweets.json', payload_type = 'search_results', - allowed_param = ['q', 'lang', 'locale', 'since_id', 'geocode', 'show_user', 'max_id', 'since', 'until', 'result_type'] + allowed_param = ['q', 'lang', 'locale', 'since_id', 'geocode', 'show_user', 'max_id', 'since', 'until', 'result_type', 'count'] ) """ trends/daily """