streamR icon indicating copy to clipboard operation
streamR copied to clipboard

How to not miss any tweets?

Open SatoshiReport opened this issue 6 years ago • 0 comments

Great program, thanks for making it open source. I got everything working just fine.

I used birdy before in Python and it allows you to create a stream that runs forever like so:

response = client.stream.statuses.filter.post(track='twitter')

for data in response.stream():
    print data

Is this possible to do with streamR as well? I can run it a certain length of time and then parse the results but if I run again I could have missed something in the meantime. How do I avoid this? Is this a limitation of R? Thanks

SatoshiReport avatar Jun 25 '18 14:06 SatoshiReport