Given the Twitter2 app uses an example data source of the Twitter sample API, how would I go about making this useful by configuring it more specifically to follow certain hashtags or download certain timelines?
reviewing the stream-twitter.py script I have found the following line that looks familiar, but it still only gets me to narrow my search for key words etc.
Original Line 172: streamer.statuses.sample()
streamer.statuses.filter(track="FIFA", language="en")
Any ideas?
I have also tried, but it doesnt seem to work.
streamer.search.tweets(q='#FIFA', count=1000)
↧