thekindlyone
thekindlyone

Reputation: 509

Track users and keywords with twitter streaming api twython

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

Answers (1)

RPi user
RPi user

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

Related Questions