使用tweepy时出现此错误

Bar*_*ry 3 python csv twitter tweepy

用于收集推文并将其发送到csv文件的Python代码

不断返回错误

tweepy.error.RateLimitError:[{'code':88,'message':'超出限价'}]

试图获取最新的时间轴并将所有这些推文发送到csv文件

谢谢你的帮助

def get_all_tweets(screen_name):

    #authorize twitter, initialize tweepy
    auth = tweepy.OAuthHandler(consumer_token, consumer_secret)
    auth.set_access_token(access_token, access_secret)
    api = tweepy.API(auth)

    #initialize a list to hold all the tweepy Tweets
    alltweets = []    


    new_tweets = api.home_timeline (screen_name = screen_name,count=20)

    #save most recent tweets
    alltweets.extend(new_tweets)

    #save the id of the oldest tweet less one
    oldest = alltweets[-1].id - 1

    while len(new_tweets) > 0:
        print ("getting tweets before %s" % (oldest))

        #all subsiquent requests use the max_id param to prevent duplicates
            new_tweets = api.home_timeline(screen_name =      screen_name,count=20,max_id=oldest)

        #save most recent tweets
        alltweets.extend(new_tweets)

        #update the id of the oldest tweet less one
        oldest = alltweets[-1].id - 1

        print ("...%s tweets downloaded so far" % (len(alltweets)))

    #transform the tweepy tweets into a 2D array that will populate the csv    
    outtweets = [[tweet.id_str, tweet.created_at, tweet.text.encode("utf-8")] for tweet in alltweets]

    #write the csv    
    with open('%s_tweetsBQ.csv' % screen_name, 'w') as f:
        writer = csv.writer(f)
        writer.writerow(["id","created_at","text"])
        writer.writerows(outtweets)

    pass


    if __name__ == '__main__':
    #pass in the username of the account you want to download
    get_all_tweets("BQ")
Run Code Online (Sandbox Code Playgroud)

小智 8

您的代码没问题,您刚刚达到Twitter Streaming API限制.让你再次提取推文大约需要一个小时.

您应该wait_on_rate_limit=True在初始化tweetpy时添加该选项:

api = tweepy.API(auth, wait_on_rate_limit=True)
Run Code Online (Sandbox Code Playgroud)

我强烈建议您查看:https://dev.twitter.com/rest/public/rate-limiting了解更多详情.