From: Harmon Date: Fri, 19 Feb 2021 04:20:25 +0000 (-0600) Subject: Stop allowing positional arguments besides q for API.search X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=445da4ec69cdaf1199ac025e63d7ffc80dd9f27f;p=tweepy.git Stop allowing positional arguments besides q for API.search Also improve endpoint parameters order to match Twitter API documentation --- diff --git a/tweepy/api.py b/tweepy/api.py index 34e0a0c..3c07cd2 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -1136,13 +1136,13 @@ class API: @pagination(mode='id') @payload('search_results') - def search(self, q, *args, **kwargs): + def search(self, q, **kwargs): """ :reference: https://developer.twitter.com/en/docs/tweets/search/api-reference/get-search-tweets """ return self.request( - 'GET', 'search/tweets', q, *args, endpoint_parameters=( - 'q', 'lang', 'locale', 'since_id', 'geocode', 'max_id', - 'until', 'result_type', 'count', 'include_entities' + 'GET', 'search/tweets', q, endpoint_parameters=( + 'q', 'geocode', 'lang', 'locale', 'result_type', 'count', + 'until', 'since_id', 'max_id', 'include_entities' ), **kwargs )