python中的Instagram API不起作用

问题描述 投票:1回答:1

安装了Anaconda,但似乎它没有Instagram模块。我安装了python,因为我的计算机上没有路径目录,手动添加了instagram模块。尝试使用以下代码在Anaconda的Spyder和Python的shell中运行我的程序:

来自instagram.client导入InstagramAPI

access_token = "
client_secret = "
api = InstagramAPI(access_token=access_token, client_secret=client_secret)
recent_media, next_ = api.user_recent_media(user_id="userid", count=10)
for media in recent_media:
   print (media.caption.text)

但总是得到错误(文件名为'main.py')

from instagram.client import InstagramAPI
 ModuleNotFoundError: No module named 'instagram'
python module instagram instagram-api
1个回答
2
投票

在尝试导入之前,您需要从PyPi安装Instagram库。

$ conda install instagram - 或 - $ pip install instagram

此外,您不应在互联网上发布客户机密和访问令牌。实际上,这些与用户名和密码是一样的。

© www.soinside.com 2019 - 2024. All rights reserved.