0
我是一個牛逼的使用Python所以原諒我的無知,但我到目前爲止有:Twitter的用戶詳細信息和Python
import twitter
api = twitter.Api(consumer_key="",
consumer_secret="",
access_token_key = "",
access_token_secret = "")
handle = ('example')
user = api.GetUser(screen_name=handle)
print user.GetScreenName()
print user.GetName()
print user.GetProfileImageUrl()
print user.GetDescription()
print user.GetCreatedAt()
print user.GetFollowersCount()
print user.GetFriendsCount()
print user.GetStatusesCount()
print user.GetFavouritesCount()
print user.GetLocation()
print user.GetTimeZone()
print user.GetLang()
print user.GetVerified()
它收集關於特定用戶的具體細節,但是我需要收集多個用戶的詳細信息而且這個腳本每次只能處理一個腳本。如果有人能幫我找出腳本處理多個手柄讓我的生活變得更輕鬆的方法,我會非常感激!
在此先感謝
驚人,工作完美,感謝您的幫助! –