我的推特搜索仅返回1个结果

时间:2019-03-27 12:00:37

标签: python twitter tweepy

我目前正在尝试查找提及Twitter用户的推文,例如@Google。我正在尝试获取提及@Google的推文列表。我已经在twitter上搜索了查询,并且收到了结果,但是使用tweepy只会返回一行。我在这里以Google为例,不是我要搜索提及的实际帐户。

我尝试了其他搜索,但是它们似乎带来了扭曲的搜索结果,但是这很奇怪,因为肯定有很多推文提到了@Google。

for tweet in tweepy.Cursor(api.search,
                           q="@Google",
                           count=100,
                           result_type="recent",
                           include_entities=True,
                           lang="en").items():
    print("result found")

我希望返回一个以上的结果,从Twitter上搜索@Google可以得到大量提及,所以我希望至少有相当一部分提及。

0 个答案:

没有答案