如何在Instab上获取关注者列表

2024-10-03 21:26:44 发布

您现在位置:Python中文网/ 问答频道 /正文

有人能给我解释一下如何在Instabot上获取关注者列表吗? 到目前为止,我写的测试是:

from instabot import Bot

bot = Bot()
bot.login()
followers = bot.get_user_followers("danbilzerian")
for follower in followers:
    print(follower)

当我运行它时,我只能插入我的登录名和密码,然后什么都不会发生。 我已经阅读了文档和示例,但没有运气。在

我遗漏了什么?在

非常感谢你的帮助!在


Tags: infromimport列表forgetbotlogin