From 3bc6ffa68fd6d939850e5db89370eeed18e15c48 Mon Sep 17 00:00:00 2001 From: Vladimir Date: Sun, 22 Dec 2013 01:12:49 +0500 Subject: [PATCH] Added count parameter to search API method --- tweepy/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 """ -- 2.25.1