I’m using the tweepy module to access Twitter’s streaming API. What I’ve done previuosly is to define a set of keywords and insert them into a list terms[]:
streamer.filter(track = terms)
Would it be possible to update the list with new keywords WHILST the streamer.filter(track = terms) is running and so track is searching for keywords dynamically as opposed to an static list.
Thanks