Twitter API每15分鐘15個請求的速率限制。最大限度地提高Twitter的日誌追隨者的速率限制
我試圖使用Python通過運行和編譯我的追隨者清單,但由於某些原因,當時只有300的追隨者記錄速率限制馬克塞斯。我讀過最大值應該接近5000。我哪裏錯了?
如果我有成千上萬,甚至超過100萬周的追隨者,我試圖打印每個跟隨者名單,我怎樣才能最大限度地發揮追隨者的數量命中率限制之前的Python/Twitter的回報?
這裏是我到目前爲止的代碼:
followers = tweepy.Cursor(client.followers, id=screenName)
for follower in followers.items():
info=[]
name =follower.name
screen_name = follower.screen_name
userId = userId + 1
info.append(userId)
info.append(name)
info.append(screen_name)
csvFile = open('followers.csv','a')
newFile =csv.writer(csvFile) #imported csv
newFile.writerow(info)
#close file
csvFile.close()