From 1b77007aee7b491a7878996b060a102984e84edd Mon Sep 17 00:00:00 2001 From: Harmon Date: Thu, 19 May 2022 11:25:32 -0500 Subject: [PATCH] Note deprecation of compliance messages for AsyncStream.filter --- tweepy/asynchronous/streaming.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tweepy/asynchronous/streaming.py b/tweepy/asynchronous/streaming.py index af68117..32c7aeb 100644 --- a/tweepy/asynchronous/streaming.py +++ b/tweepy/asynchronous/streaming.py @@ -240,6 +240,14 @@ class AsyncStream(AsyncBaseStream): filter_level=None, languages=None, stall_warnings=False): """Filter realtime Tweets + .. deprecated:: 4.10 + `The delivery of compliance messages through the Twitter API v1.1 + endpoint this method uses has been deprecated, and they will stop + being delivered beginning October 29, 2022.`_ Twitter API v2 can be + used instead with :meth:`AsyncStreamingClient.filter` and/or + :class:`AsyncClient` :ref:`batch compliance ` + methods. + Parameters ---------- follow: list[int | str] | None @@ -292,6 +300,9 @@ class AsyncStream(AsyncBaseStream): .. _BCP 47: https://tools.ietf.org/html/bcp47 .. _advanced search: https://twitter.com/search-advanced + .. _The delivery of compliance messages through the Twitter API v1.1 + endpoint this method uses has been deprecated, and they will stop + being delivered beginning October 29, 2022.: https://twittercommunity.com/t/deprecation-announcement-removing-compliance-messages-from-statuses-filter-and-retiring-statuses-sample-from-the-twitter-api-v1-1/170500 """ if self.task is not None and not self.task.done(): raise TweepyException("Stream is already connected") -- 2.25.1