python中的Instagram API并不起作用

时间:2017-07-01 02:34:49

标签: python module instagram instagram-api

安装了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'

1 个答案:

答案 0 :(得分:2)

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

$ conda install instagram  -要么- $ pip install instagram

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