From 75806845299a45b6f67dedbcfc37bee094258ad5 Mon Sep 17 00:00:00 2001 From: Harmon Date: Tue, 23 Feb 2021 21:56:23 -0600 Subject: [PATCH] Add docstring for Client.search_all_tweets --- tweepy/client.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tweepy/client.py b/tweepy/client.py index 31ac466..be6567d 100644 --- a/tweepy/client.py +++ b/tweepy/client.py @@ -282,6 +282,10 @@ class Client: )[0]["hidden"] def search_all_tweets(self, query, **params): + """ + Search Tweets: Full-archive search + https://developer.twitter.com/en/docs/twitter-api/tweets/search/api-reference/get-tweets-search-all + """ return self._make_request( "GET", "/2/tweets/search/all", params=params, endpoint_parameters=( -- 2.25.1