Is it possible to find a way to track which keywords triggers which tweets?
For example (I'm using Python/tweepy):
track_items= "obama,bernie sanders,hilary"
stream = tweepy.Stream(auth, listener)
stream.filter(track=[track_items])
How do I know which tweets returned to me correspond Obama, Bernie Sanders, or Hilary?
I did a lot of research on this, and it seems non-trivial and not something Twitter API allows (I am hoping I'm wrong on this). If there's any suggestions/clever work-around to this, please let me know. Any advise will be greatly appreciated!