From ad50cdca6091c9781689634afb817f3ccd5c7e0d Mon Sep 17 00:00:00 2001 From: Harmon Date: Mon, 28 Dec 2020 06:42:32 -0600 Subject: [PATCH] Remove Stream.firehose --- tweepy/streaming.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tweepy/streaming.py b/tweepy/streaming.py index 455ed8b..133c57d 100644 --- a/tweepy/streaming.py +++ b/tweepy/streaming.py @@ -417,15 +417,6 @@ class Stream: self._start(is_async) - def firehose(self, count=None, is_async=False): - self.session.params = {'delimited': 'length'} - if self.running: - raise TweepError('Stream object already connected!') - self.url = '/%s/statuses/firehose.json' % STREAM_VERSION - if count: - self.url += '&count=%s' % count - self._start(is_async) - def retweet(self, is_async=False): self.session.params = {'delimited': 'length'} if self.running: -- 2.25.1