r"""Stream statuses/firehose :param \*\*params: Parameters to send with your stream request Accepted params found at: https://dev.twitter.com/docs/api/1.1/get/statuses/firehose
(self, **params)
| 59 | self.streamer._request(url, params=params) |
| 60 | |
| 61 | def firehose(self, **params): |
| 62 | r"""Stream statuses/firehose |
| 63 | |
| 64 | :param \*\*params: Parameters to send with your stream request |
| 65 | |
| 66 | Accepted params found at: |
| 67 | https://dev.twitter.com/docs/api/1.1/get/statuses/firehose |
| 68 | """ |
| 69 | url = 'https://stream.twitter.com/%s/statuses/firehose.json' \ |
| 70 | % self.streamer.api_version |
| 71 | self.streamer._request(url, params=params) |
| 72 | |
| 73 | def set_dynamic_filter(self, **params): |
| 74 | r"""Set/update statuses/filter |