所以,我一直在尝试使用Twitter库获取带有GetFollowers功能的好友列表。
try:
print "3"
pos=random.randint(0,len(idList)-1)
print i
followersList=self.api.GetFollowers(user_id=i,count=5)
print followersList
print "4"
for x in followersList:
print str(x.user.followers_count)
print "addedf " + str(x.user.screen_name)
if x.user.followers_count>self.minFavoriteReq:
self.api.CreateFriendship(user_id=x.user.id)
print "added " + str(x.user.screen_name)
except Exception as e:
print e
print "trying to add new follower"
我似乎陷入了函数调用。没有例外被抛出,我只是打印“我”,然后它就坐。我不确定为什么它不会返回,或者我能做些什么才能让它开始。也许有人对这个图书馆有更多的经验,然后我做。
找到该文档