diff --git a/twython/streaming/api.py b/twython/streaming/api.py index 244a550..8135715 100644 --- a/twython/streaming/api.py +++ b/twython/streaming/api.py @@ -102,7 +102,8 @@ class TwythonStreamer(object): while self.connected: response = _send(retry_counter) - for line in response.iter_lines(): + # So that first tweets get picked-up. + for line in response.iter_lines(chunk_size=1): if not self.connected: break if line: