是否可以使用 python 3.12 和最新版本的 instaloader 库仅下载帖子的标题(描述)(给定帖子短代码)?我有兴趣使用 installoder 作为库模块,而不是 cli 实用程序。
如果没有,你能推荐另一个类似的Python库来让我这样做吗?
我认为 instagram API 不允许对非用户帖子这样做是正确的吗?
根据 Instaloader 的文档,您可以下载帖子的标题:https://instaloader.github.io/module/structurals.html#instaloader.Post.caption
您可以先加载库并创建一个 instaloader 实例,然后运行示例代码片段,如下所示:
# Loading a post using its shortcode
post = instaloader.Post.from_shortcode(L.context, 'ShortCode')
# Print the caption of the post
print(post.caption)