尝试收集推文时出现Tweepy错误

2022-05-30 00:00:00 python tweepy twitter

问题描述

我正在尝试使用Python中的Tweepy模块获取Tweet。但是,每当我尝试使用tweepy.Cursor函数收集Tweet时,它返回错误:

TweepyException                           Traceback (most recent call last)
<ipython-input-5-a26c992842dc> in <module>
----> 1 tweets_list = tweepy.Cursor(api.search_tweets(q="oranges", tweet_mode='extended', lang='en')).items()

~anaconda3libsite-packages	weepycursor.py in __init__(self, method, *args, **kwargs)
     38                 raise TweepyException('Invalid pagination mode.')
     39         else:
---> 40             raise TweepyException('This method does not perform pagination')
     41 
     42     def pages(self, limit=inf):

TweepyException: This method does not perform pagination

我不知道为什么会这样。我仍然可以使用api.update_status()函数发布推文。请帮帮忙。这是我的代码。如您所见,设置是正确的;只有此函数返回错误。

from config import *
import tweepy
import datetime

consumer_key= 'CONSUMER KEY HERE'
consumer_secret= 'CONSUMER KEY SECRET HERE'
access_token= 'ACCESS TOKEN HERE'
access_token_secret= 'ACCESS TOKEN SECRET HERE'
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
    
try:
    api.verify_credentials()
    print("Authentication Successful")
except:
    print("Authentication Error")

tweets_list = tweepy.Cursor(api.search_tweets(q="oranges", tweet_mode='extended', lang='en')).items()

如果函数或代码本身有错误,您能写一个正确的版本吗?我正在尝试为一个项目收集推文数据。


解决方案

API.search_tweets的调用/调用结果传递给Cursor,而不是方法本身。

有关如何使用Cursor的示例,请参阅Tweepy's Pagination documentation。

相关文章