2017-07-17 212 views
0

我在twitter上使用tweepy來挖掘數據,而使用API​​的命令時,結果看起來很奇怪。當我使用這段代碼時,結果應該是這樣嗎?Tweepy Twitter API命令結果

這是我的代碼

import oauth, tweepy 
import csv 

list_user = [] 
list_user_follower = [] 
number = 0 

with open('tweets.csv', 'rb') as user: 
    reader = csv.reader(user, delimiter=",") 
    for i in reader: 
     list_user.insert(number, i[0]) 
     number += 1 

def init(): 
    global api 
    consumer_key = "...." 
    consumer_secret = "...." 
    access_key = "...." 
    access_secret = "...." 
    auth = tweepy.OAuthHandler(consumer_key, consumer_secret) 
    auth.set_access_token(access_key, access_secret) 
    api = tweepy.API(auth) 

    print api.followers(list_users[0]) 

init() 

這是結果。請注意,這不是完整的結果,因爲它放在這裏太長了。

[User(follow_request_sent=False, has_extended_profile=False, profile_use_background_image=True, profile_sidebar_fill_color=u'DDEEF6' 

任何幫助,將不勝感激謝謝。

回答

0

是的,看起來是正確的 - 您的API請求正在返回用戶列表中的第一個條目。 Tweepy documentation明確指出,此調用的返回值是用戶對象的列表。你直接打印到控制檯。包含在User object中的值記錄在Twitter的API文檔中。