使用Tweepy API搜索列表中的

我想用Tweepy的搜索API来返回功能条款的任何列表中的鸣叫搜索任何元素,不仅鸣叫包含所有条款。使用Tweepy API搜索列表中的

twts = api.search(q=["Hello World!", "I love Python!"]) 

这将返回包含“Hello World!”的tweets。和“我爱Python!”,但我想要包含其中的推文。

回答:

其中standard Twitter search operators的是OR,您可以使用:

api.search(q='"Hello World!" OR "I love Python!"') 

注意的是双引号将执行“确切的短语”搜索。

以上是 使用Tweepy API搜索列表中的 的全部内容, 来源链接: utcz.com/qa/259478.html

回到顶部