MCPcopy Index your code
hub / github.com/ryanmcgrath/twython / firehose

Method firehose

twython/streaming/types.py:61–71  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

_requestMethod · 0.45

Tested by

no test coverage detected