首页 > 解决方案 > 需要一些帮助来使用 instaloader 编写代码

问题描述

我是 instaloader 的新手。我想找到一种方法来编写代码,以获取特定帐户中的一些帖子,这些帖子在其标题中包含一个特殊单词,例如返回标题中包含“美国”的帖子。我只能得到一个帐户的所有帖子。这是我的代码:

import instaloader

acc=input("inter your account: ")
user=input("inter your username: ")
password=input("inter your password: ")
test=instaloader.Instaloader(download_videos=False)
l=test.login(user,password)
post=instaloader.Profile.from_username(test.context,acc).get_posts()
  
test.download_profile(profile_name=acc)

标签: pythoninstagraminstaloader

解决方案


推荐阅读