python 2.7 - Track users and keywords with twitter streaming api twython -
currently have
stream.statuses.filter(track=['words','i',"want','to','track'])
how follow users @ same time?
add , follow=username
after list of words track in steam.statuses.filter
give :
stream.statuses.filter(track=['words','i',"want','to','track'], follow=username)
Comments
Post a Comment