Reputation: 509
Currently I have
stream.statuses.filter(track=['words','I',"want','to','track'])
How do I also follow some users at the same time?
Upvotes: 0
Views: 751
Reputation: 36
Add , follow=USERNAME
after your list of words to track in steam.statuses.filter
to give you :
stream.statuses.filter(track=['words','I',"want','to','track'], follow=USERNAME)
Upvotes: 2