From dee150a0b31070f1e20528b66c7c3c60cca4bed6 Mon Sep 17 00:00:00 2001 From: Harmon Date: Fri, 20 May 2022 05:38:11 -0500 Subject: [PATCH] Add note about new Twitter Developer Apps in Stream documentation --- tweepy/streaming.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tweepy/streaming.py b/tweepy/streaming.py index c6968ed..46479ac 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -200,6 +200,13 @@ class BaseStream: class Stream(BaseStream): """Filter and sample realtime Tweets with Twitter API v1.1 + .. note:: + + New Twitter Developer Apps created on or after April 29, 2022 `will not + be able to gain access to v1.1 statuses/sample and v1.1 + statuses/filter`_, the Twitter API v1.1 endpoints that :class:`Stream` + uses. Twitter API v2 can be used instead with :class:`StreamingClient`. + Parameters ---------- consumer_key : str @@ -238,6 +245,10 @@ class Stream(BaseStream): Thread used to run the stream user_agent : str User agent used when connecting to the stream + + + .. _will not be able to gain access to v1.1 statuses/sample and v1.1 + statuses/filter: https://twittercommunity.com/t/deprecation-announcement-removing-compliance-messages-from-statuses-filter-and-retiring-statuses-sample-from-the-twitter-api-v1-1/170500 """ def __init__(self, consumer_key, consumer_secret, access_token, -- 2.25.1