编程语言
首页 > 编程语言> > python-在Tweepy中关注用户

python-在Tweepy中关注用户

作者:互联网

我希望关注关注我的用户,但尚未在Tweepy中关注.我有逻辑,但是我的问题是语法.

    for follower in followers_list:
        if follower not in friends_list:
            to_follow.append(follower)  
            print to_follow
    for follower in to_follow:
       print follower
       api.follow(follower)

有谁知道我应该使用什么来跟随人们(代替api.follow,它不起作用)

解决方法:

您的followers_list中是否有Twitter user.screen_names?如果是这样,那么这个问题上有一个主题应该可以帮助您解决here.

followers_list应该位于逗号分隔的列表中,如下所示:

stream = tweepy.Stream(auth, StreamWatcherListener(), timeout=None)
follow_list = ['1234567890', '2345678901']
track_list = None
stream.filter(follow_list, track_list)

标签:twitter,tweepy,python
来源: https://codeday.me/bug/20191102/1992989.html