【发布时间】:2017-07-24 18:53:33
【问题描述】:
谁能解释一下如何在 Instabot 上获取关注者列表? 到目前为止,我写的测试是:
from instabot import Bot
bot = Bot()
bot.login()
followers = bot.get_user_followers("danbilzerian")
for follower in followers:
print(follower)
当我运行它时,我只能输入我的登录名和密码,然后什么也没有发生。 我已经阅读了文档和示例,但没有运气。
我错过了什么?
非常感谢您的帮助!
【问题讨论】:
标签: python python-2.7 list instagram instagram-api