使用 Tweepy 在 Python 中获取关注者列表的最佳方法

Posted

技术标签:

【中文标题】使用 Tweepy 在 Python 中获取关注者列表的最佳方法【英文标题】:The best way to get a list of followers in Python with Tweepy 【发布时间】:2013-07-01 13:30:54 【问题描述】:

有没有比这更好的方法来使用 Tweepy 获取关注者屏幕名称列表:

for follower in api.followers_ids('twitter'):
    print api.get_user(follower).screen_name

【问题讨论】:

【参考方案1】:

我认为这样更有效率:

for user in tweepy.Cursor(api.followers, screen_name="twitter").items():
    print user.screen_name

仅供参考,它使用followers/list twitter API 调用。

【讨论】:

我得到“AttributeError: 'API' object has no attribute 'followers'”当试图使用这个代码sn-p时。 您使用的是什么tweepy 版本?直接从 github 安装最新的tweepy 版本。 伙计们,这些不适用于 600K 或 1MM 之类的追随者人数......如何提取这么多追随者 ID?有人真的知道吗? @dave 不,对于超过 5000 个名称的每个请求,您必须等待 60 秒

以上是关于使用 Tweepy 在 Python 中获取关注者列表的最佳方法的主要内容,如果未能解决你的问题,请参考以下文章

通过 Tweepy 获取 Twitter 中的所有关注者 ID

如何使用 Tweepy 获取 Twitter 生物信息

推特的追随者(tweepy)

使用 python 脚本获取 Instagram 关注者列表

如何在 tweepy(python)中获取推文 ID(since_id,max_id)?

python 使用Python和YQL获取Twitter关注者,关注和推文计数