2013-06-20 99 views
0

基本上試圖跟隨另一個用戶的追隨者,使用twython庫試圖跟隨另一個Twitter用戶的追隨者,TWYTHON

我是新來Twitter,Python和pwython所以記住這一點。

Atm使用'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)

我想補充的LIS TOF朋友tysfriends「

回答

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!

+0

啊,非常感謝邁克。您與Twython的合作令人驚歎。非常感激。 – applewood