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'
ご協力いただきありがとうございます。