我对 python 和 Twython(我们可以使用它从 twitter 检索推文的库)的概念不熟悉。
现在我正在使用检索推文
from twython import Twython
twitter=Twython()
user_timeline=twitter.getUserTimeline(screen_name="bjkbh")
我收到了想要的推文,但现在我想知道有多少人在关注特定用户。
在推文中,我们可以了解关注的人数
for tweets in user_timeline:
tweets['followers_count']
但是我如何获得所有关注的人的名字和他们施加的影响?
谢谢