基本上尝试使用twython库跟随其他用户关注者
我是twitter,python和pwython的新手,所以请记住这一点。
使用'get_friends_ids'并且能够检索id号列表。
问题是我不知道如何打破这一点并遵循所有这些。
我该怎么办??
到目前为止我的工作......
oauth working..
t = Twython(app_key, app_secret, oauth_token, oauth_token_secret)
tysfriends = t.get_friends_ids(screen_name="fucktyler")
print tysfriends
这不起作用:t.create_friendship(user_id = tysfriends)
我想添加朋友的朋友'
答案 0 :(得分:1)
以下代码应该可以使用
t = Twython(app_key, app_secret, oauth_token, oauth_token_secret)
tysfriends = t.get_friends_ids(screen_name="fucktyler")
for friend_id in tysfriends['ids']:
t.create_friendship(user_id=friend_id)
感谢您使用Twython!