我正在尝试使用带有Python的非官方instagram-Api从Instagram用户列表中抓取用户名和媒体信息。 该库为there
我了解如何从已登录的用户处抓取信息,但我不知道如何引用其他用户名。
这是获取我的Instagram信息的代码
from InstagramAPI import InstagramAPI
import time
username = 'myUser'
pwd = 'mypass'
API = InstagramAPI(username,pwd)
API.login()
time.sleep(2)
API.getProfileData()
pk = API.LastJson['user']['pk']
maxid = ''
while True:
API.getUserFeed(pk, maxid)
feed = API.LastJson
if 'fail' in feed['status']:
break
for i in range(0, len(feed['items']) - 1):
mediadata = feed['items'][i]
print("\033[0;34m"
"\n------------------------\n"
"Media number: "
"Like count: "
"Comment count: "
.format(i,
mediadata['like_count'],
mediadata['comment_count']))
if feed['items'][i]['caption'] is None:
print("Caption: ["
"\033[0;31m"
"No Caption available"
"\033[0;34m"
"]\n")
else:
caption = mediadata['caption']['text']
if len(caption) > 30:
caption = caption[:30] + ' (...)'
print("Caption:
[\033[0;32m{}\033[0;34m]\n".format(caption))
答案 0 :(得分:0)
我用以下方法解决了它: 此代码之前的API.searchUsername('IG_USERNAME'):pk = API.LastJson ['user'] ['pk']。 它对我有用。
享受:D