0

Currently I have

stream.statuses.filter(track=['words','I',"want','to','track'])

How do I also follow some users at the same time?

thekindlyone
  • 509
  • 1
  • 6
  • 21

1 Answers1

2

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)
RPi user
  • 36
  • 2