【发布时间】:2013-01-03 07:32:35
【问题描述】:
我对 python 和 Twython(我们可以使用它从 twitter 检索推文的库)的概念不熟悉。
现在我正在使用
检索推文from twython import Twython
twitter=Twython()
user_timeline=twitter.getUserTimeline(screen_name="bjkbh")
我收到了想要的推文,但现在我想知道有多少人在关注特定用户。
在推文中我们可以知道关注的人数
for tweets in user_timeline:
tweets['followers_count']
但是我如何获得所有关注的人的名字和他们施加的影响?
谢谢
【问题讨论】:
标签: python twitter social-networking twython